source: trunk/template/yoga/fix-ie5-ie6.css @ 1515

Last change on this file since 1515 was 1515, checked in by chrisaga, 18 years ago

fix bug 484 : (again) fix rateButtons display broken by svn:1491
fix radio and checkbox display with Opera and IE (related to bug 490)

  • Property svn:keywords set to Author Date Id Revision
File size: 672 bytes
Line 
1/* $Id: fix-ie5-ie6.css 1515 2006-07-29 09:57:24Z chrisaga $ */
2/* Issues in IE from 5 to 6 only not to be used with IE7                      */
3
4@import "thumbnails-fix-ie5-ie6.css";
5
6/* to avoid vanishing objects in IE6 */
7H1, #theHeader {
8  width: 100%;  /* <- useless but seems to make IE6 happy */
9}
10#content {
11  height: 1em;  /* for IE6 it's like min-height */
12}
13
14/* fix category thumbnails on main page */
15#content UL.thumbnailCategories {
16  width: 99%;   /* buggy IE box model */
17}
18
19/* fix tag clouds : IE doesn't like anything but inline */
20#menubar #menuTagCloud LI
21{
22  display: inline;
23}
24
25/* fix quickconnect layout */
26FORM#quickconnect FIELDSET {
27  width: 99%;   /* correct an ugly 1 or 2 px misalignement with IE */
28}
Note: See TracBrowser for help on using the repository browser.