Last change
on this file since 16147 was
7869,
checked in by rvelices, 14 years ago
|
css rules simplification
- merged rules
- remove overly qualified inefficient selectors
etc...
|
-
Property svn:eol-style set to
LF
|
File size:
812 bytes
|
Line | |
---|
1 | /* Issues in IE from 5 to 6 only not to be used with IE7 */ |
---|
2 | |
---|
3 | |
---|
4 | /* to avoid vanishing objects in IE6 */ |
---|
5 | H1, #theHeader { |
---|
6 | width: 100%; /* <- useless but seems to make IE6 happy */ |
---|
7 | } |
---|
8 | .content { |
---|
9 | height: 1em; /* for IE6 it's like min-height */ |
---|
10 | } |
---|
11 | |
---|
12 | /* fix quickconnect layout */ |
---|
13 | FORM#quickconnect FIELDSET { |
---|
14 | width: 99%; /* correct an ugly 1 or 2 px misalignement with IE */ |
---|
15 | } |
---|
16 | |
---|
17 | /* fix IE with another layout for thumbnails */ |
---|
18 | UL.thumbnails SPAN.wrap2 { |
---|
19 | display: block; |
---|
20 | position: relative; |
---|
21 | text-align: left; |
---|
22 | } |
---|
23 | |
---|
24 | UL.thumbnails IMG.thumbnail { |
---|
25 | position: relative; |
---|
26 | top: -50%; /* Is this following hacking technic required ? */ |
---|
27 | /*\*//*/ |
---|
28 | margin-top: -40%; |
---|
29 | /**/ |
---|
30 | } |
---|
31 | UL.thumbnails INPUT { |
---|
32 | position: absolute; |
---|
33 | left: 2px; |
---|
34 | top: 2px; /* same as other browsers but not so pretty */ |
---|
35 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.