This override is no longer needed.
authorKrinkle <krinkle@users.mediawiki.org>
Tue, 18 Jan 2011 15:33:33 +0000 (15:33 +0000)
committerKrinkle <krinkle@users.mediawiki.org>
Tue, 18 Jan 2011 15:33:33 +0000 (15:33 +0000)
Tables in <div class="toccolours"> or in other places no longer force a white background which was only added to avoid underlines from <h2> 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
skins/monobook/main.css
skins/vector/screen.css

index a520c83..423d051 100644 (file)
@@ -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 <noinclude>
   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
index c8c036a..c9aa072 100644 (file)
@@ -63,12 +63,9 @@ div#globalWrapper {
 table {
        font-size: 100%;
        color: black;
-       /* we don't want the bottom borders of <h2>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 {
index 544642e..c4facfa 100644 (file)
@@ -811,12 +811,9 @@ dd {
 table {
        font-size: 100%;
        color: black;
-       /* we don't want the bottom borders of <h2>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 */