source: trunk/admin/template/goto/fix-ie5-ie6.css @ 2541

Last change on this file since 2541 was 2526, checked in by vdigital, 16 years ago

Admin template wigo/roma

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 888 bytes
Line 
1/* $Id: fix-ie5-ie6.css 2526 2008-09-14 00:33:53Z vdigital $ */
2/* Issues in IE from 5 to 6 only not to be used with IE7                      */
3
4@import "thumbnails-fix-ie5-ie6.css";
5
6/* to avoid vanishing objects in IE6 */
7H1, #theHeader {
8  width: 100%;  /* <- useless but seems to make IE6 happy */
9}
10.content {
11  height: 1em;  /* for IE6 it's like min-height */
12}
13
14/* fix quickconnect layout */
15FORM#quickconnect FIELDSET {
16  width: 99%;   /* correct an ugly 1 or 2 px misalignement with IE */
17}
18
19/* fix IE with another layout for thumbnails */
20.content UL.thumbnails SPAN.wrap2 {
21  display: block;
22  position: relative;
23  text-align: left;
24}
25
26.content UL.thumbnails IMG.thumbnail {
27  position: relative;
28  top: -50%;  /* Is this following hacking technic required ? */
29  /*\*//*/
30    margin-top: -40%;
31  /**/
32}
33.content UL.thumbnails INPUT {
34  position: absolute;
35  left: 2px;
36  top: 2px;  /* same as other browsers but not so pretty */
37}
Note: See TracBrowser for help on using the repository browser.