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