Index: trunk/phase3/skins/common/shared.css |
— | — | @@ -247,3 +247,8 @@ |
248 | 248 | #shared-image-dup, #shared-image-conflict { |
249 | 249 | font-style: italic; |
250 | 250 | } |
| 251 | + |
| 252 | +/* Alternating background colours on Watchlist and RecentChanges */ |
| 253 | +li.odd { |
| 254 | + background-color: #e8e8e8 |
| 255 | +} |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1382,7 +1382,7 @@ |
1383 | 1383 | * to ensure that client-side caches don't keep obsolete copies of global |
1384 | 1384 | * styles. |
1385 | 1385 | */ |
1386 | | -$wgStyleVersion = '165'; |
| 1386 | +$wgStyleVersion = '166'; |
1387 | 1387 | |
1388 | 1388 | |
1389 | 1389 | # Server-side caching: |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -88,8 +88,8 @@ |
89 | 89 | Show/Hide logged in users, Show/Hide anonymous, Invert namespace selection |
90 | 90 | * Added hook 'UserrightsChangeableGroups' to allow modification of what |
91 | 91 | groups may be added or removed via the Special:UserRights interface. |
92 | | -* (bug 14468) Lines in classic RecentChanges and Watchlist have classes "odd" |
93 | | - and "even" to make colouring using css possible. |
| 92 | +* (bug 14468) Lines in classic RecentChanges and Watchlist have alternating |
| 93 | + background colours based on classes "odd" and "even". |
94 | 94 | |
95 | 95 | === Bug fixes in 1.14 === |
96 | 96 | |