From: Gabriel Wicke Date: Tue, 4 May 2004 23:42:09 +0000 (+0000) Subject: floating left option in cologneblue, patch by thetorpedodog (bug #941620) X-Git-Tag: 1.3.0beta1~149 X-Git-Url: http://git.cyclocoop.org/data/Fool?a=commitdiff_plain;h=78cc0375c61af0acc495dff01bdc1734c0e7fc85;p=lhc%2Fweb%2Fwiklou.git floating left option in cologneblue, patch by thetorpedodog (bug #941620) --- diff --git a/includes/SkinCologneBlue.php b/includes/SkinCologneBlue.php index 51915d4a5c..09336459db 100644 --- a/includes/SkinCologneBlue.php +++ b/includes/SkinCologneBlue.php @@ -86,9 +86,14 @@ class SkinCologneBlue extends Skin { if ( 2 == $qb ) { # Right $s .= "#quickbar { position: absolute; right: 4px; }\n" . "#article { margin-left: 4px; margin-right: 148px; }\n"; - } else if ( 1 == $qb || 3 == $qb ) { + } else if ( 1 == $qb ) { $s .= "#quickbar { position: absolute; left: 4px; }\n" . "#article { margin-left: 148px; margin-right: 4px; }\n"; + } else if ( 3 == $qb ) { # Floating + $s .= "#quickbar { position:absolute; left:4px } \n" . + "#topbar { margin-left: 148px }\n" . + "#article { margin-left:148px; margin-right: 4px; } \n" . + "body>#quickbar { position:fixed; left:4px; top:4px; overflow:auto ;bottom:4px;} \n"; # Hides from IE } return $s; }