source: extensions/gally/gally-default/css/fix-ie5-ie6.css @ 7400

Last change on this file since 7400 was 6109, checked in by grum, 14 years ago

Gally's themes compatibles with piwigo 2.1

  • Property svn:executable set to *
File size: 1.1 KB
Line 
1/* $Id: fix-ie5-ie6.css 2456 2008-07-24 01:30:12Z rvelices $ */
2/* Issues in IE from 5 to 6 only not to be used with IE7                      */
3
4/* fix IE with another layout for thumbnails */
5.content UL.thumbnails SPAN.wrap2 {
6  display: block;
7  position: relative;
8  text-align: left;
9}
10.content UL.thumbnails SPAN.wrap2 A,
11.content UL.thumbnails SPAN.wrap2 SPAN {
12  overflow: visible;
13  position: absolute;
14  top: 50%;
15  text-align: center;
16}
17
18.content UL.thumbnails IMG.thumbnail {
19  position: relative;
20  top: -50%;
21  /*\*//*/
22    margin-top: -40%;
23  /**/
24}
25.content UL.thumbnails INPUT {
26  position: absolute;
27  left: 2px;
28  top: 2px;  /* same as other browsers but not so pretty */
29}
30
31
32/* to avoid vanishing objects in IE6 */
33H1, #theHeader {
34  width: 100%;  /* <- useless but seems to make IE6 happy */
35}
36.content {
37  height: 1em;  /* for IE6 it's like min-height */
38}
39
40/* fix category thumbnails on main page */
41.content UL.thumbnailCategories {
42  width: 99%;   /* buggy IE box model */
43}
44
45
46/* fix quickconnect layout */
47FORM#quickconnect FIELDSET {
48  width: 99%;   /* correct an ugly 1 or 2 px misalignement with IE */
49}
Note: See TracBrowser for help on using the repository browser.