(bug 28561 - follow-up r4185) remove rule .small * {font-size: 94%} causes anything...
authorBrian Wolff <bawolff@users.mediawiki.org>
Fri, 15 Apr 2011 20:57:24 +0000 (20:57 +0000)
committerBrian Wolff <bawolff@users.mediawiki.org>
Fri, 15 Apr 2011 20:57:24 +0000 (20:57 +0000)
I'm not sure what the intent was, but this rule will make something like:
<span class="small">fo<b>o</b></span>
have the second o in foo be smaller then the first. Even without this rule, nested instances
of class="small" will still be smaller than a single instance, so it only causes weirdness.

RELEASE-NOTES
skins/chick/main.css
skins/common/oldshared.css
skins/monobook/main.css
skins/vector/screen.css

index 9af339d..8b3956f 100644 (file)
@@ -238,6 +238,7 @@ PHP if you have not done so prior to upgrading MediaWiki.
 * (bug 28444) Fix regression: edit-on-doubleclick retains revision id again
 * &apos; character entity is now allowed in wikitext
 * UtfNormal::cleanUp on an invalid utf-8 sequence no longer returns false if intl installed.
+* (bug 28561) The css class small will no longer make nested elements even smaller.
 
 === API changes in 1.18 ===
 * (bug 26339) Throw warning when truncating an overlarge API result
index 5065425..4d84d1a 100644 (file)
@@ -237,7 +237,7 @@ in the bottom-right corner of the content area */
        margin-right: auto;
 }
 /* small for tables and similar */
-.small, .small * { font-size: 94%; }
+.small { font-size: 94%; }
 table.small { font-size: 100% }
 
 /*
index 034a468..071e521 100644 (file)
@@ -214,7 +214,7 @@ fieldset.operaprefsection {
 }
 
 /* small for tables and similar */
-.small, .small * {
+.small {
        font-size: 94%;
 }
 table.small {
index c2db5a1..1f9fd72 100644 (file)
@@ -317,7 +317,7 @@ in the bottom-right corner of the content area */
        margin-right: auto;
 }
 /* small for tables and similar */
-.small, .small * {
+.small {
        font-size: 94%;
 }
 table.small {
index b983c00..5556bf6 100644 (file)
@@ -1018,7 +1018,7 @@ span.subpages {
        margin-right: auto;
 }
 /* Small for tables and similar */
-.small, .small * {
+.small {
        font-size: 94%;
 }
 table.small {