comparison themes/garland/fix-ie-rtl.css @ 1:c1f4ac30525a 6.0

Drupal 6.0
author Franck Deroche <webmaster@defr.org>
date Tue, 23 Dec 2008 14:28:28 +0100
parents
children
comparison
equal deleted inserted replaced
0:5a113a1c4740 1:c1f4ac30525a
1 /* $Id: fix-ie-rtl.css,v 1.2 2007/11/09 22:14:41 goba Exp $ */
2
3 body {
4 /* Center layout */
5 text-align: center;
6 /* Allow text resizing */
7 font-size: 80%;
8 }
9
10 #squeeze {
11 zoom: 1;
12 direction: ltr;
13 }
14
15 #squeeze .left-corner{
16 direction: rtl
17 }
18
19 #header-region, #wrapper #container {
20 /* Reset text alignment */
21 text-align: right;
22 }
23
24 #wrapper #container #center {
25 /* Reduce amount of damage done by extremely wide content */
26 overflow: hidden;
27 }
28
29 #wrapper #container #center .right-corner .left-corner {
30 /* Because of the lack of min-height, we use height as an alternative */
31 height: 400px;
32 }
33
34 fieldset {
35 /* Don't draw backgrounds on fieldsets in IE, as they look really bad. */
36 background: none;
37 }
38
39 /* Prevent fieldsets from shifting when changing collapsed state. */
40 html.js fieldset.collapsible {
41 position: relative;
42 top: -1em;
43 }
44
45 html.js fieldset.collapsed {
46 top: 0;
47 margin-bottom: 1em;
48 }
49
50 tr.menu-disabled {
51 /* Use filter to emulate CSS3 opacity */
52 filter: alpha(opacity=50);
53 }
54
55 #header-region {
56 /* Because of the lack of min-height, we use height as an alternative */
57 height: 1em;
58 }
59
60 #attach-hide label, #uploadprogress div.message {
61 /* Fading elements in IE causes the text to bleed unless they have a background. */
62 background-color: #ffffff;
63 }