source: branches/2.0/template/yoga/fix-khtml.css @ 2703

Last change on this file since 2703 was 2648, checked in by rvelices, 16 years ago
  • fix tag cloud display with IE6/IE7 (without additionnal css hacks)
  • collapsed several identical selectors into one
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 531 bytes
Line 
1/* $Id: fix-khtml.css 2648 2008-10-03 23:48:03Z rvelices $ */
2/* Issue in Safari/Konqueror only                                                 */
3/* If H2 has a 0 margin-top categoryActions doesn't float right but overwrites H2 */
4.content>DIV.titrePage>H2 {
5    margin: 1px 0 0 0;  /* add an arbitrary margin-top */
6}
7
8.content>div.titrePage {
9    position: relative;
10    top: -1px;          /* move the container up by the same amount */
11    margin-bottom: 5px; 
12}
13
14#menubar #menuTagCloud SPAN
15{
16  display: inline-block;/* required for Safari 3.1 - otherwise overflows on the right */
17}
18
Note: See TracBrowser for help on using the repository browser.