source: branches/branch-1_6/template/yoga/fix-ie5-ie6.css @ 1480

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

merge from trunk r1478:1479 into branch 1.6 (fix bug 472: tags are displayed outside the menu in Safari and Opera)

  • Property svn:keywords set to Author Date Id Revision
File size: 781 bytes
Line 
1/* $Id: fix-ie5-ie6.css 1480 2006-07-17 23:12:07Z 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/* to get less hugly checkboxes at least in tagSelection */
15/* as well as several forms */
16FORM#update FIELDSET INPUT,
17UL.tagSelection LI INPUT,
18#content UL.thumbnails SPAN.wrap2 INPUT {
19  border: none;
20  background-color: transparent;
21}
22
23/* fix category thumbnails on main page */
24#content UL.thumbnailCategories {
25  width: 99%; /* buggy IE box model */
26}
27
28/* fix tag clouds : IE doesn't like anything but inline */
29#menubar #menuTagCloud LI
30{
31  display: inline;
32}
Note: See TracBrowser for help on using the repository browser.