From: Krinkle Date: Tue, 18 Jan 2011 15:33:33 +0000 (+0000) Subject: This override is no longer needed. X-Git-Tag: 1.31.0-rc.0~32488 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=ad01ec29218477d9563faa8c0988829f0ed2ecca;p=lhc%2Fweb%2Fwiklou.git 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 --- 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 */