From 78cc0375c61af0acc495dff01bdc1734c0e7fc85 Mon Sep 17 00:00:00 2001 From: Gabriel Wicke Date: Tue, 4 May 2004 23:42:09 +0000 Subject: [PATCH] floating left option in cologneblue, patch by thetorpedodog (bug #941620) --- includes/SkinCologneBlue.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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; } -- 2.20.1