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

Last change on this file since 24837 was 24837, checked in by rvelices, 10 years ago

improved who can see this photo display

  • Property svn:eol-style set to LF
File size: 1.5 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 .wrap2 IMG {
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  display: block;
55  margin: 0.5em 0;
56}
57.filter FIELDSET * LABEL INPUT,
58.filter FIELDSET * LABEL SELECT {
59        display: inline;
60        vertical-align: top;
61        margin: 0 0.5em 0 0;
62}
63
64.pwg-icon {
65        display: block;
66}
67
68.imageInfoTable {display:block; margin: 0 200px;}
69.imageInfo {display:block; line-height:16px;}
70.imageInfo dt  {display:block; text-align:left; font-weight:bold; padding-right:0.5em;}
71.imageInfo dd {display:block; text-align:left; font-weight:normal;}
72#imageInfos dd { margin: 0 0 5px 20px;}
Note: See TracBrowser for help on using the repository browser.