source: branches/2.0/admin/template/goto/fix-ie5-ie6.css @ 3009

Last change on this file since 3009 was 2607, checked in by rvelices, 16 years ago
  • admin remove references to unexisting css (print.css and fix-thumbnailsie56...)
  • fix .errors and .infos rules background-image url pointing to non existent image
  • remove unused plugin_xxxx.gif from public theme
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 850 bytes
Line 
1/* $Id: fix-ie5-ie6.css 2607 2008-09-27 01:32:31Z rvelices $ */
2/* Issues in IE from 5 to 6 only not to be used with IE7                      */
3
4
5/* to avoid vanishing objects in IE6 */
6H1, #theHeader {
7  width: 100%;  /* <- useless but seems to make IE6 happy */
8}
9.content {
10  height: 1em;  /* for IE6 it's like min-height */
11}
12
13/* fix quickconnect layout */
14FORM#quickconnect FIELDSET {
15  width: 99%;   /* correct an ugly 1 or 2 px misalignement with IE */
16}
17
18/* fix IE with another layout for thumbnails */
19.content UL.thumbnails SPAN.wrap2 {
20  display: block;
21  position: relative;
22  text-align: left;
23}
24
25.content UL.thumbnails IMG.thumbnail {
26  position: relative;
27  top: -50%;  /* Is this following hacking technic required ? */
28  /*\*//*/
29    margin-top: -40%;
30  /**/
31}
32.content UL.thumbnails INPUT {
33  position: absolute;
34  left: 2px;
35  top: 2px;  /* same as other browsers but not so pretty */
36}
Note: See TracBrowser for help on using the repository browser.