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

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

change: according to topic:15067, svn:keywords property was removed

  • Property svn:eol-style set to LF
File size: 945 bytes
Line 
1/* $Id: /piwigo/trunk/admin/template/goto/fix-ie5-ie6.css 6447 2008-09-27T01:32:31.781042Z 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.