(Bug 5798) Prevent overflow in the footer when there are no links
authorFelipe Schenone <schenonef@gmail.com>
Mon, 13 May 2013 13:00:04 +0000 (15:00 +0200)
committerFelipe Schenone <schenonef@gmail.com>
Mon, 13 May 2013 13:00:04 +0000 (15:00 +0200)
Simple pure CSS solution to a minor overflow bug.

Change-Id: I337bab53600efb4cb27b65b01d62f59968a4fba9

skins/monobook/main.css

index e8c851f..1f44689 100644 (file)
@@ -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%;
 }