source: branches/2.1/admin/themes/default/fix-ie5-ie6.css @ 6323

Last change on this file since 6323 was 6323, checked in by plg, 14 years ago

merge r6320 from trunk to branch 2.1

bug 1667 fixed: r6027 was fixing a minor error on tabs for Google Chrome/Safari
BUT was introducing a major visual issue for IE8. Backmerged + adds the -webkit
radius anyway.

This is a quickfix for release 2.1.1, the improved display introduced by nikrou
was nice and it would be better to have it, but working in IE8

File size: 839 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 */
5H1, #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 */
13FORM#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.content UL.thumbnails SPAN.wrap2 {
19  display: block;
20  position: relative;
21  text-align: left;
22}
23
24.content UL.thumbnails IMG.thumbnail {
25  position: relative;
26  top: -50%;  /* Is this following hacking technic required ? */
27  /*\*//*/
28    margin-top: -40%;
29  /**/
30}
31.content 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.