source: trunk/template/yoga/fix-ie5-ie6.css @ 2387

Last change on this file since 2387 was 2356, checked in by rvelices, 16 years ago
  • merge r2355 from 1.7 to trunk: fix display of menubar related tags in IE7
  • optimized sql query in permalinks
  • remove some unused global variable declarations
  • fix bug in admin/themeconf.inc.php
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 564 bytes
Line 
1/* $Id: fix-ie5-ie6.css 2356 2008-05-23 10:15:48Z rvelices $ */
2/* Issues in IE from 5 to 6 only not to be used with IE7                      */
3
4@import "thumbnails-fix-ie5-ie6.css";
5
6/* to avoid vanishing objects in IE6 */
7H1, #theHeader {
8  width: 100%;  /* <- useless but seems to make IE6 happy */
9}
10.content {
11  height: 1em;  /* for IE6 it's like min-height */
12}
13
14/* fix category thumbnails on main page */
15.content UL.thumbnailCategories {
16  width: 99%;   /* buggy IE box model */
17}
18
19
20/* fix quickconnect layout */
21FORM#quickconnect FIELDSET {
22  width: 99%;   /* correct an ugly 1 or 2 px misalignement with IE */
23}
Note: See TracBrowser for help on using the repository browser.