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

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

improvement : make :hover work in IE6 with ccshover.htc

  • Property svn:keywords set to Author Date Id Revision
File size: 569 bytes
Line 
1/* $Id: fix-ie5-ie6.css 1329 2006-05-30 19:29:23Z chrisaga $ */
2/* Issues in IE from 5 to 6 only to to be used with IE7                       */
3
4/* fix lack of :hover behaviour for non link objects */
5BODY {
6  behavior:url("template-common/csshover.htc");
7}
8
9/* to avoid vanishing objects in IE6 */
10H1, #theHeader {
11  width: 100%;  /* <- useless but seems to make IE6 happy */
12}
13#content {
14  height: 1em; /* for IE6 it's like min-height */
15}
16
17/* to get less hugly checkboxes at least in tagSelection */
18UL.tagSelection LI INPUT,
19#content UL.thumbnails SPAN.wrap2 input {
20  border: none;
21  background-color: transparent;
22}
Note: See TracBrowser for help on using the repository browser.