source: extensions/floOS/fix-ie5-ie6.css @ 3648

Last change on this file since 3648 was 3618, checked in by flop25, 15 years ago

update global with pwg 2.0.3

File size: 1.0 KB
Line 
1/* $Id: fix-ie5-ie6.css 2356 2008-05-23 10:15:48Z rvelices $ */
2/* Issues in IE from 5 to 6 only not to be used with IE7                      */
3
4/* fix IE with another layout for thumbnails */
5.content UL.thumbnails SPAN.wrap2 {
6  display: block;
7  position: relative;
8  text-align: left;
9}
10.content UL.thumbnails SPAN.wrap2 A,
11.content UL.thumbnails SPAN.wrap2 SPAN {
12  overflow: visible;
13  position: absolute;
14  top: 50%;
15  text-align: center;
16}
17
18.content UL.thumbnails IMG.thumbnail {
19  position: relative;
20  top: -50%;
21  /*\*//*/
22    margin-top: -40%;
23  /**/
24}
25
26/* to avoid vanishing objects in IE6 */
27H1, #theHeader {
28  width: 100%;  /* <- useless but seems to make IE6 happy */
29}
30.content {
31  height: 1em;  /* for IE6 it's like min-height */
32}
33
34/* fix category thumbnails on main page */
35.content UL.thumbnailCategories {
36  width: 99%;   /* buggy IE box model */
37}
38
39
40/* fix quickconnect layout */
41FORM#quickconnect FIELDSET {
42  width: 99%;   /* correct an ugly 1 or 2 px misalignement with IE */
43}
Note: See TracBrowser for help on using the repository browser.