root / drupal7 / themes / garland / fix-ie.css @ b75b6b8b
1 | 85ad3d82 | Assos Assos | |
---|---|---|---|
2 | body {
|
||
3 | /* Center layout */
|
||
4 | text-align: center; |
||
5 | } |
||
6 | |||
7 | #header-region,
|
||
8 | #wrapper #container { |
||
9 | /* Reset text alignment */
|
||
10 | text-align: left; /* LTR */ |
||
11 | } |
||
12 | |||
13 | #wrapper #container #center { |
||
14 | /* Reduce amount of damage done by extremely wide content */
|
||
15 | overflow: hidden; |
||
16 | } |
||
17 | |||
18 | #wrapper #container #center .right-corner .left-corner { |
||
19 | /* Because of the lack of min-height, we use height as an alternative */
|
||
20 | height: 400px; |
||
21 | } |
||
22 | |||
23 | fieldset {
|
||
24 | /* Don't draw backgrounds on fieldsets in IE, as they look really bad. */
|
||
25 | background: none; |
||
26 | } |
||
27 | |||
28 | div.vertical-tabs ul.vertical-tabs-list li.first { |
||
29 | background-image: none; |
||
30 | } |
||
31 | |||
32 | ul.primary { |
||
33 | /* Fix missing top margin */
|
||
34 | position: relative; /* LTR */ |
||
35 | /* top: 0.5em; */
|
||
36 | } |
||
37 | |||
38 | /* Prevent fieldsets from shifting when changing collapsed state. */
|
||
39 | html.js fieldset.collapsible { |
||
40 | top: -1em; |
||
41 | } |
||
42 | html.js fieldset.collapsed { |
||
43 | top: 0; |
||
44 | margin-bottom: 1em; |
||
45 | } |
||
46 | |||
47 | tr.menu-disabled { |
||
48 | /* Use filter to emulate CSS3 opacity */
|
||
49 | filter: alpha(opacity=50); |
||
50 | } |
||
51 | |||
52 | #header-region {
|
||
53 | /* Because of the lack of min-height, we use height as an alternative */
|
||
54 | height: 1em; |
||
55 | } |
||
56 | |||
57 | tr.taxonomy-term-preview { |
||
58 | filter: alpha(opacity=50); |
||
59 | } |
||
60 | |||
61 | #attach-hide label, |
||
62 | #uploadprogress div.message { |
||
63 | /* Fading elements in IE causes the text to bleed unless they have a background. */
|
||
64 | background-color: #ffffff; |
||
65 | } |