Follow up on r39503. Add li.odd to common style sheet.
authorSiebrand Mazeland <siebrand@users.mediawiki.org>
Sat, 16 Aug 2008 22:06:28 +0000 (22:06 +0000)
committerSiebrand Mazeland <siebrand@users.mediawiki.org>
Sat, 16 Aug 2008 22:06:28 +0000 (22:06 +0000)
RELEASE-NOTES
includes/DefaultSettings.php
skins/common/shared.css

index bc7d928..c8ade86 100644 (file)
@@ -88,8 +88,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   Show/Hide logged in users, Show/Hide anonymous, Invert namespace selection
 * Added hook 'UserrightsChangeableGroups' to allow modification of what
   groups may be added or removed via the Special:UserRights interface.
-* (bug 14468) Lines in classic RecentChanges and Watchlist have classes "odd"
-  and "even" to make colouring using css possible.
+* (bug 14468) Lines in classic RecentChanges and Watchlist have alternating
+  background colours based on classes "odd" and "even".
 
 === Bug fixes in 1.14 ===
 
index 7d3489a..be75dc1 100644 (file)
@@ -1382,7 +1382,7 @@ $wgCacheEpoch = '20030516000000';
  * to ensure that client-side caches don't keep obsolete copies of global
  * styles.
  */
-$wgStyleVersion = '165';
+$wgStyleVersion = '166';
 
 
 # Server-side caching:
index d42fc1c..17a9b2a 100644 (file)
@@ -247,3 +247,8 @@ h4.mw-specialpagesgroup {
 #shared-image-dup, #shared-image-conflict {
        font-style: italic;
 }
+
+/* Alternating background colours on Watchlist and RecentChanges */
+li.odd {
+       background-color: #e8e8e8
+}