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

Last change on this file since 5095 was 3283, checked in by plg, 15 years ago

complement to r3282, remove all $Id$ in source code.

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