root / drupal7 / themes / garland / fix-ie-rtl.css @ 76597ebf
1 | 85ad3d82 | Assos Assos | |
---|---|---|---|
2 | body {
|
||
3 | /* Center layout */
|
||
4 | text-align: center; |
||
5 | } |
||
6 | |||
7 | #squeeze {
|
||
8 | zoom: 1; |
||
9 | direction: ltr; |
||
10 | } |
||
11 | |||
12 | #squeeze .left-corner { |
||
13 | direction: rtl |
||
14 | } |
||
15 | |||
16 | #header-region,
|
||
17 | #wrapper #container { |
||
18 | /* Reset text alignment */
|
||
19 | text-align: right; |
||
20 | } |
||
21 | |||
22 | #wrapper #container #center { |
||
23 | /* Reduce amount of damage done by extremely wide content */
|
||
24 | overflow: hidden; |
||
25 | } |
||
26 | |||
27 | #wrapper #container #center .right-corner .left-corner { |
||
28 | /* Because of the lack of min-height, we use height as an alternative */
|
||
29 | height: 400px; |
||
30 | } |
||
31 | |||
32 | fieldset {
|
||
33 | /* Don't draw backgrounds on fieldsets in IE, as they look really bad. */
|
||
34 | background: none; |
||
35 | } |
||
36 | |||
37 | /* Prevent fieldsets from shifting when changing collapsed state. */
|
||
38 | html.js fieldset.collapsible { |
||
39 | top: -1em; |
||
40 | } |
||
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 | #attach-hide label, |
||
58 | #uploadprogress div.message { |
||
59 | /* Fading elements in IE causes the text to bleed unless they have a background. */
|
||
60 | background-color: #ffffff; |
||
61 | } |