From 7fbc98e341e043d04ac2af488b9fe829119baf03 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 16 Dec 2008 20:45:03 +0000 Subject: [PATCH] (bug 16648) 'FlaggedRevs #mw-data-after-content overflows quickbar w/ standard classic skin' --- skins/Standard.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skins/Standard.php b/skins/Standard.php index e847514e90..9d72d3ed46 100644 --- a/skins/Standard.php +++ b/skins/Standard.php @@ -52,14 +52,14 @@ class SkinStandard extends Skin { if ( 2 == $qb ) { # Right $s .= "#quickbar { position: absolute; top: 4px; right: 4px; " . "border-left: 2px solid #000000; }\n" . - "#article { margin-left: 4px; margin-right: 152px; }\n"; + "#article, #mw-data-after-content { margin-left: 4px; margin-right: 152px; }\n"; } else if ( 1 == $qb || 3 == $qb ) { $s .= "#quickbar { position: absolute; top: 4px; left: 4px; " . "border-right: 1px solid gray; }\n" . - "#article { margin-left: 152px; margin-right: 4px; }\n"; + "#article, #mw-data-after-content { margin-left: 152px; margin-right: 4px; }\n"; } else if ( 4 == $qb) { $s .= "#quickbar { border-right: 1px solid gray; }\n" . - "#article { margin-right: 152px; margin-left: 4px; }\n"; + "#article, #mw-data-after-content { margin-right: 152px; margin-left: 4px; }\n"; } return $s; } -- 2.20.1