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

Last change on this file since 1376 was 1328, checked in by chrisaga, 18 years ago
  • Property svn:keywords set to Author Date Id Revision
File size: 570 bytes
Line 
1/* $Id:$ */
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.