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

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

fix bug 490 (better fix) no absolute sizes for input fields, but they are shorter in IE

  • Property svn:keywords set to Author Date Id Revision
File size: 791 bytes
Line 
1/* $Id: fix-ie5-ie6.css 1513 2006-07-29 08:18:23Z 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/* some theme set a border on INPUT  which is not pretty for those */
15INPUT.radio, INPUT.checkbox {
16  border: none;
17}
18
19/* fix category thumbnails on main page */
20#content UL.thumbnailCategories {
21  width: 99%;   /* buggy IE box model */
22}
23
24/* fix tag clouds : IE doesn't like anything but inline */
25#menubar #menuTagCloud LI
26{
27  display: inline;
28}
29
30/* fix quickconnect layout */
31FORM#quickconnect FIELDSET {
32  width: 99%;   /* correct an ugly 1 or 2 px misalignement with IE */
33}
Note: See TracBrowser for help on using the repository browser.