annotate media/django/css/ie.css @ 1:0dcfcdf50c62

Initial import of Madeira project from the private repository.
author Brian Neal <bgneal@gmail.com>
date Mon, 06 Apr 2009 03:10:59 +0000
parents
children
rev   line source
bgneal@1 1 /* IE 6 & 7 */
bgneal@1 2
bgneal@1 3 /* Proper fixed width for dashboard in IE6 */
bgneal@1 4
bgneal@1 5 .dashboard #content {
bgneal@1 6 *width: 768px;
bgneal@1 7 }
bgneal@1 8
bgneal@1 9 .dashboard #content-main {
bgneal@1 10 *width: 535px;
bgneal@1 11 }
bgneal@1 12
bgneal@1 13 /* IE 6 ONLY */
bgneal@1 14
bgneal@1 15 /* Keep header from flowing off the page */
bgneal@1 16
bgneal@1 17 #container {
bgneal@1 18 _position: static;
bgneal@1 19 }
bgneal@1 20
bgneal@1 21 /* Put the right sidebars back on the page */
bgneal@1 22
bgneal@1 23 .colMS #content-related {
bgneal@1 24 _margin-right: 0;
bgneal@1 25 _margin-left: 10px;
bgneal@1 26 _position: static;
bgneal@1 27 }
bgneal@1 28
bgneal@1 29 /* Put the left sidebars back on the page */
bgneal@1 30
bgneal@1 31 .colSM #content-related {
bgneal@1 32 _margin-right: 10px;
bgneal@1 33 _margin-left: -115px;
bgneal@1 34 _position: static;
bgneal@1 35 }
bgneal@1 36
bgneal@1 37 .form-row {
bgneal@1 38 _height: 1%;
bgneal@1 39 }
bgneal@1 40
bgneal@1 41 /* Fix right margin for changelist filters in IE6 */
bgneal@1 42
bgneal@1 43 #changelist-filter ul {
bgneal@1 44 _margin-right: -10px;
bgneal@1 45 }
bgneal@1 46
bgneal@1 47 /* IE ignores min-height, but treats height as if it were min-height */
bgneal@1 48
bgneal@1 49 .change-list .filtered {
bgneal@1 50 _height: 400px;
bgneal@1 51 }