Index: trunk/phase3/includes/SpecialRecentchanges.php |
— | — | @@ -685,12 +685,12 @@ |
686 | 686 | */ |
687 | 687 | function rcApplyDiffStyle( $text ) { |
688 | 688 | $styles = array( |
689 | | - 'diff' => 'background-color: white;', |
690 | | - 'diff-otitle' => 'background-color: white;', |
691 | | - 'diff-ntitle' => 'background-color: white;', |
692 | | - 'diff-addedline' => 'background: #cfc; font-size: smaller;', |
693 | | - 'diff-deletedline' => 'background: #ffa; font-size: smaller;', |
694 | | - 'diff-context' => 'background: #eee; font-size: smaller;', |
| 689 | + 'diff' => 'background-color: white; color:black;', |
| 690 | + 'diff-otitle' => 'background-color: white; color:black;', |
| 691 | + 'diff-ntitle' => 'background-color: white; color:black;', |
| 692 | + 'diff-addedline' => 'background: #cfc; color:black; font-size: smaller;', |
| 693 | + 'diff-deletedline' => 'background: #ffa; color:black; font-size: smaller;', |
| 694 | + 'diff-context' => 'background: #eee; color:black; font-size: smaller;', |
695 | 695 | 'diffchange' => 'color: red; font-weight: bold; text-decoration: none;', |
696 | 696 | ); |
697 | 697 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -71,6 +71,7 @@ |
72 | 72 | * (bug 9332) Fix instructions in tests/README |
73 | 73 | * (bug 9813) Reject usernames containing '#' to avoid silent truncation |
74 | 74 | of fragments during the normalisation process |
| 75 | +* (bug 7989) RSS feeds content now use black text when using white background. |
75 | 76 | |
76 | 77 | == MediaWiki API changes since 1.10 == |
77 | 78 | |