piwigo/themes/default/fix-ie5-ie6.css
rvelices 4a6f62bb8d got rid of the last three very inefficient css rules
git-svn-id: http://piwigo.org/svn/trunk@8772 68402e56-0260-453c-a942-63ccdbb3a9ee
2011-01-19 20:45:44 +00:00

72 lines
1.3 KiB
CSS

/* Issues in IE from 5 to 6 only not to be used with IE7 */
#menubar LI.selected A {
font-weight: bold;
}
#menubar LI.selected LI A {
font-weight: normal;
}
/* fix IE with another layout for thumbnails */
.thumbnails .wrap2 {
display: block;
position: relative;
text-align: left;
}
.thumbnails .wrap2 A,
.thumbnails .wrap2 SPAN {
overflow: visible;
position: absolute;
top: 50%;
text-align: center;
}
.thumbnails IMG.thumbnail {
position: relative;
top: -50%;
/*\*//*/
margin-top: -40%;
/**/
}
/* to avoid vanishing objects in IE6 */
H1, #theHeader {
width: 100%; /* <- useless but seems to make IE6 happy */
}
.content {
height: 1em; /* for IE6 it's like min-height */
}
/* fix category thumbnails on main page */
.content .thumbnailCategories {
width: 99%; /* buggy IE box model */
}
/* fix quickconnect layout */
#quickconnect FIELDSET {
width: 99%; /* correct an ugly 1 or 2 px misalignement with IE */
}
.filter LABEL INPUT,
.filter LABEL SELECT,
.filter LABEL SPAN,
.filter LABEL TEXTAREA {
display: block;
margin: 0.5em 0;
}
.filter FIELDSET * LABEL INPUT,
.filter FIELDSET * LABEL SELECT,
.filter FIELDSET * LABEL TEXTAREA,
.filter LABEL SPAN INPUT,
.filter LABEL SPAN SELECT,
.filter LABEL SPAN TEXTAREA {
display: inline;
vertical-align: top;
margin: 0 0.5em 0 0;
}
.pwg-icon {
display: block;
}