From a232f4ee33a9ed6dee6b5e9790c2158ea945c1dd Mon Sep 17 00:00:00 2001 From: Felipe Schenone Date: Mon, 13 May 2013 15:00:04 +0200 Subject: [PATCH] (Bug 5798) Prevent overflow in the footer when there are no links Simple pure CSS solution to a minor overflow bug. Change-Id: I337bab53600efb4cb27b65b01d62f59968a4fba9 --- skins/monobook/main.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skins/monobook/main.css b/skins/monobook/main.css index e8c851fd42..1f44689c13 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -521,7 +521,8 @@ div#footer { border-top: 1px solid #fabd23; border-bottom: 1px solid #fabd23; margin: .6em 0 1em 0; - padding: .4em 0 1.2em 0; + overflow: hidden; + padding: .4em 0 .3em 0; text-align: center; font-size: 90%; } -- 2.20.1