source: extensions/floOs/fix-khtml.css @ 3608

Last change on this file since 3608 was 3334, checked in by flop25, 15 years ago

first commit

File size: 628 bytes
Line 
1/* $Id: fix-khtml.css 2356 2008-05-23 10:15:48Z 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 LI
15{
16  display: inline-block;/* required for Safari 3.1 - otherwise overflows on the right */
17}
18
19/* end Safari/Konqueror */
20
Note: See TracBrowser for help on using the repository browser.