Mercurial > defr > drupal > core
comparison themes/garland/fix-ie.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.css,v 1.8.2.1 2008/02/05 09:27:26 goba Exp $ */ | |
2 | |
3 /** | |
4 * Garland, for Drupal 6.x | |
5 * Stefan Nagtegaal, iStyledThis [dot] nl | |
6 * Steven Wittens, acko [dot] net | |
7 */ | |
8 | |
9 body { | |
10 /* Center layout */ | |
11 text-align: center; | |
12 /* Allow text resizing */ | |
13 font-size: 80%; | |
14 } | |
15 | |
16 #header-region, #wrapper #container { | |
17 /* Reset text alignment */ | |
18 text-align: left; /* LTR */ | |
19 } | |
20 | |
21 #wrapper #container #center { | |
22 /* Reduce amount of damage done by extremely wide content */ | |
23 overflow: hidden; | |
24 } | |
25 | |
26 #wrapper #container #center .right-corner .left-corner { | |
27 /* Because of the lack of min-height, we use height as an alternative */ | |
28 height: 400px; | |
29 } | |
30 | |
31 fieldset { | |
32 /* Don't draw backgrounds on fieldsets in IE, as they look really bad. */ | |
33 background: none; | |
34 } | |
35 | |
36 ul.primary { | |
37 /* Fix missing top margin */ | |
38 position: relative; /* LTR */ | |
39 /* top: 0.5em; */ | |
40 } | |
41 | |
42 /* Prevent fieldsets from shifting when changing collapsed state. */ | |
43 html.js fieldset.collapsible { | |
44 position: relative; | |
45 top: -1em; | |
46 } | |
47 html.js fieldset.collapsed { | |
48 top: 0; | |
49 margin-bottom: 1em; | |
50 } | |
51 | |
52 tr.menu-disabled { | |
53 /* Use filter to emulate CSS3 opacity */ | |
54 filter: alpha(opacity=50); | |
55 } | |
56 | |
57 #header-region { | |
58 /* Because of the lack of min-height, we use height as an alternative */ | |
59 height: 1em; | |
60 } | |
61 | |
62 tr.taxonomy-term-preview { | |
63 filter: alpha(opacity=50); | |
64 } | |
65 | |
66 #attach-hide label, #uploadprogress div.message { | |
67 /* Fading elements in IE causes the text to bleed unless they have a background. */ | |
68 background-color: #ffffff; | |
69 } |