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

Last change on this file since 7877 was 7869, checked in by rvelices, 14 years ago

css rules simplification

  • merged rules
  • remove overly qualified inefficient selectors

etc...

  • Property svn:eol-style set to LF
File size: 979 bytes
RevLine 
[2648]1/* Issues in IE from 5 to 6 only not to be used with IE7 */
[1205]2
[7843]3#menubar LI.selected A {
4        font-weight: bold;
5}
6
7#menubar LI.selected LI A {
8        font-weight: normal;
9}
10
[2456]11/* fix IE with another layout for thumbnails */
[7869]12UL.thumbnails SPAN.wrap2 {
[2456]13  display: block;
14  position: relative;
15  text-align: left;
16}
[7869]17UL.thumbnails SPAN.wrap2 A,
18UL.thumbnails SPAN.wrap2 SPAN {
[2456]19  overflow: visible;
20  position: absolute;
21  top: 50%;
22  text-align: center;
23}
[1384]24
[7869]25UL.thumbnails IMG.thumbnail {
[2456]26  position: relative;
27  top: -50%;
28  /*\*//*/
29    margin-top: -40%;
30  /**/
31}
32
[1205]33/* to avoid vanishing objects in IE6 */
34H1, #theHeader {
35  width: 100%;  /* <- useless but seems to make IE6 happy */
36}
[2352]37.content {
[1513]38  height: 1em;  /* for IE6 it's like min-height */
[1205]39}
40
[1382]41/* fix category thumbnails on main page */
[2352]42.content UL.thumbnailCategories {
[1513]43  width: 99%;   /* buggy IE box model */
[1382]44}
45
[1506]46
47/* fix quickconnect layout */
[1513]48FORM#quickconnect FIELDSET {
49  width: 99%;   /* correct an ugly 1 or 2 px misalignement with IE */
[1506]50}
Note: See TracBrowser for help on using the repository browser.