source: trunk/themes/default/fix-ie5-ie6.css @ 8264

Last change on this file since 8264 was 8264, checked in by rvelices, 13 years ago

css sprites attempt to fix ie6 display

  • Property svn:eol-style set to LF
File size: 1012 bytes
Line 
1/* Issues in IE from 5 to 6 only not to be used with IE7 */
2
3#menubar LI.selected A {
4        font-weight: bold;
5}
6
7#menubar LI.selected LI A {
8        font-weight: normal;
9}
10
11/* fix IE with another layout for thumbnails */
12UL.thumbnails SPAN.wrap2 {
13  display: block;
14  position: relative;
15  text-align: left;
16}
17UL.thumbnails SPAN.wrap2 A,
18UL.thumbnails SPAN.wrap2 SPAN {
19  overflow: visible;
20  position: absolute;
21  top: 50%;
22  text-align: center;
23}
24
25UL.thumbnails IMG.thumbnail {
26  position: relative;
27  top: -50%;
28  /*\*//*/
29    margin-top: -40%;
30  /**/
31}
32
33/* to avoid vanishing objects in IE6 */
34H1, #theHeader {
35  width: 100%;  /* <- useless but seems to make IE6 happy */
36}
37.content {
38  height: 1em;  /* for IE6 it's like min-height */
39}
40
41/* fix category thumbnails on main page */
42.content UL.thumbnailCategories {
43  width: 99%;   /* buggy IE box model */
44}
45
46
47/* fix quickconnect layout */
48FORM#quickconnect FIELDSET {
49  width: 99%;   /* correct an ugly 1 or 2 px misalignement with IE */
50}
51
52.pwg-icon {
53        display: inline;
54}
Note: See TracBrowser for help on using the repository browser.