source: trunk/themes/default/fix-ie5-ie6.css @ 13774

Last change on this file since 13774 was 13774, checked in by Zaphod, 12 years ago

feature 2588: uniformization of picture.tpl

picture.tpl is merge between default theme & elegant theme.
css adaptation to have the image info displayed as a table with default.

  • Property svn:eol-style set to LF
File size: 1.6 KB
Line 
1/* Issues in IE from 5 to 6 only not to be used with IE7 */
2
3#menubar LI.selected A {
4        font-weight: bold;
5}
6
7#menubar LI.selected LI A {
8        font-weight: normal;
9}
10
11/* fix IE with another layout for thumbnails */
12.thumbnails .wrap2 {
13  display: block;
14  position: relative;
15  text-align: left;
16}
17.thumbnails .wrap2 A,
18.thumbnails .wrap2 SPAN {
19  overflow: visible;
20  position: absolute;
21  top: 50%;
22  text-align: center;
23}
24
25.thumbnails IMG.thumbnail {
26  position: relative;
27  top: -50%;
28  /*\*//*/
29    margin-top: -40%;
30  /**/
31}
32
33/* to avoid vanishing objects in IE6 */
34H1, #theHeader {
35  width: 100%;  /* <- useless but seems to make IE6 happy */
36}
37.content {
38  height: 1em;  /* for IE6 it's like min-height */
39}
40
41/* fix category thumbnails on main page */
42.content .thumbnailCategories {
43  width: 99%;   /* buggy IE box model */
44}
45
46
47/* fix quickconnect layout */
48#quickconnect FIELDSET {
49  width: 99%;   /* correct an ugly 1 or 2 px misalignement with IE */
50}
51
52.filter LABEL INPUT,
53.filter LABEL SELECT,
54.filter LABEL SPAN,
55.filter LABEL TEXTAREA {
56  display: block;
57  margin: 0.5em 0;
58}
59.filter FIELDSET * LABEL INPUT,
60.filter FIELDSET * LABEL SELECT,
61.filter FIELDSET * LABEL TEXTAREA,
62.filter LABEL SPAN INPUT,
63.filter LABEL SPAN SELECT,
64.filter LABEL SPAN TEXTAREA {
65        display: inline;
66        vertical-align: top;
67        margin: 0 0.5em 0 0;
68}
69
70.pwg-icon {
71        display: block;
72}
73
74.imageInfoTable {display:block; margin: 0 200px;}
75.imageInfo {display:block; line-height:16px;}
76.imageInfo dt  {display:block; text-align:left; font-weight:bold; padding-right:0.5em;}
77.imageInfo dd {display:block; text-align:left; font-weight:normal;}
78.relSwitchBox {position:static;}
79#imageInfos dd { margin: 0 0 5px 20px;}
Note: See TracBrowser for help on using the repository browser.