From ad01ec29218477d9563faa8c0988829f0ed2ecca Mon Sep 17 00:00:00 2001 From: Krinkle Date: Tue, 18 Jan 2011 15:33:33 +0000 Subject: [PATCH] This override is no longer needed. Tables in
or in other places no longer force a white background which was only added to avoid underlines from

headings from shining through (which is no longer the case since bug 26449 was solved in r79087 and r79091) * This commit fixes bug 26708 --- RELEASE-NOTES | 3 +++ skins/monobook/main.css | 5 +---- skins/vector/screen.css | 5 +---- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index a520c8368b..423d0515a0 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -95,6 +95,9 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN cell is now treated as a linestart. * Custom editintro's using the editintro url parameter will no longer show sections on pages they are included on. +* (bug 26449) Keep underlines from headings outside of tables and thumbs by + adding overflow:hidden to h1,h2,h3,h4,h5,h6 (also fixes editsection bunching). +* (bug 26708) Remove background-color:white from tables in Monobook and Vector. === API changes in 1.18 === * (bug 26339) Throw warning when truncating an overlarge API result diff --git a/skins/monobook/main.css b/skins/monobook/main.css index c8c036acdf..c9aa0726c1 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -63,12 +63,9 @@ div#globalWrapper { table { font-size: 100%; color: black; - /* we don't want the bottom borders of

s to be visible through - floated tables */ - background-color: white; } fieldset table { - /* but keep table layouts in forms clean... */ + /* keep table layouts in forms clean from background colors... */ background: none; } a { diff --git a/skins/vector/screen.css b/skins/vector/screen.css index 544642eb5c..c4facfa71f 100644 --- a/skins/vector/screen.css +++ b/skins/vector/screen.css @@ -811,12 +811,9 @@ dd { table { font-size: 100%; color: black; - /* we don't want the bottom borders of

s to be visible through - * floated tables */ - background-color: white; } fieldset table { - /* but keep table layouts in forms clean... */ + /* keep table layouts in forms clean from background colors... */ background: none; } /* Forms */ -- 2.20.1