From 3d8659162d5fb203ffe3beddb7119a6496701256 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Wed, 20 Dec 2006 21:54:04 +0000 Subject: [PATCH] * Fix typos in new class names (thanks to BrokenArrow) * Use , not * Add correct coloring for null edits to non-Monobook-based skins --- includes/RecentChange.php | 4 ++-- skins/chick/main.css | 5 +---- skins/common/common.css | 2 ++ skins/monobook/main.css | 5 +---- skins/simple/main.css | 5 +---- 5 files changed, 7 insertions(+), 14 deletions(-) diff --git a/includes/RecentChange.php b/includes/RecentChange.php index 2721d9c882..63fdcce71f 100644 --- a/includes/RecentChange.php +++ b/includes/RecentChange.php @@ -557,14 +557,14 @@ class RecentChange if( $szdiff < $wgRCChangedSizeThreshold ) { // workaround to make it show a minus char instead of a dash. formatNum() doesn't do that. - return '(−' . $wgLang->formatNum( abs( $szdiff ) ) . ')'; + return '(−' . $wgLang->formatNum( abs( $szdiff ) ) . ')'; } elseif( $szdiff === 0 ) { return '(' . $wgLang->formatNum( $szdiff ) . ')'; } elseif( $szdiff > 0 ) { return '(+' . $wgLang->formatNum( $szdiff ) . ')'; } else { // same workaround. - return '(−' . $wgLang->formatNum( abs( $szdiff ) ) . ')'; + return '(−' . $wgLang->formatNum( abs( $szdiff ) ) . ')'; } } } diff --git a/skins/chick/main.css b/skins/chick/main.css index 73a6feebda..b84b291e5a 100644 --- a/skins/chick/main.css +++ b/skins/chick/main.css @@ -496,7 +496,4 @@ div.gallerytext { #toolbar { clear: both; } -.mw-plusminus-bold { font-weight: bold; } -.mw-plusminus-pos { font-weight: normal; } -.mw-plusminus-null { color: #aaa; } -.mw-plusminus-neg { font-weight: normal; } \ No newline at end of file +.mw-plusminus-null { color: #aaa; } \ No newline at end of file diff --git a/skins/common/common.css b/skins/common/common.css index 46582bf363..77c10f678b 100644 --- a/skins/common/common.css +++ b/skins/common/common.css @@ -466,3 +466,5 @@ table.multipageimage td { .templatesUsed { margin-top: 1em; } #toolbar { clear: both; } + +.mw-plusminus-null { color: #aaa; } \ No newline at end of file diff --git a/skins/monobook/main.css b/skins/monobook/main.css index c791741891..6efa9fe42f 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -1546,7 +1546,4 @@ table.multipageimage td { } #toolbar { clear: both; } -.mw-plusminus-bold { font-weight: bold; } -.mw-plusminus-pos { font-weight: normal; } -.mw-plusminus-null { color: #aaa; } -.mw-plusminus-neg { font-weight: normal; } +.mw-plusminus-null { color: #aaa; } \ No newline at end of file diff --git a/skins/simple/main.css b/skins/simple/main.css index 0d114ed7fe..e474f436a6 100644 --- a/skins/simple/main.css +++ b/skins/simple/main.css @@ -439,7 +439,4 @@ table.collapsed tr.collapsable { .templatesUsed { margin-top: 1.5em; } #toolbar { clear: both; } -.mw-plusminus-bold { font-weight: bold; } -.mw-plusminus-pos { font-weight: normal; } -.mw-plusminus-null { color: #aaa; } -.mw-plusminus-neg { font-weight: normal; } \ No newline at end of file +.mw-plusminus-null { color: #aaa; } \ No newline at end of file -- 2.20.1