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

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

merge r6265 from trunk to branch 2.1

Correct text alignement in .infos, .errors
30px => 53px

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.