Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -98,6 +98,8 @@ |
99 | 99 | username (eg. Special:ActiveUsers/Username) |
100 | 100 | * New JavaScript variable wgPageContentLanguage |
101 | 101 | * Added new debugging toolbar, enabled with $wgDebugToolbar |
| 102 | +* Differences in the history page now uses slightly better colors for people |
| 103 | + perceiving colors differently. Colors comes from the French Wikipedia. |
102 | 104 | |
103 | 105 | === Bug fixes in 1.19 === |
104 | 106 | * $wgUploadNavigationUrl should be used for file redlinks if. |
Index: trunk/phase3/resources/mediawiki.action/mediawiki.action.history.diff.css |
— | — | @@ -2,9 +2,10 @@ |
3 | 3 | ** Diff rendering |
4 | 4 | */ |
5 | 5 | table.diff, |
| 6 | +td.diff-context, |
6 | 7 | td.diff-otitle, |
7 | 8 | td.diff-ntitle { |
8 | | - background-color: white; |
| 9 | + background-color: transparent; |
9 | 10 | } |
10 | 11 | |
11 | 12 | td.diff-otitle, |
— | — | @@ -21,17 +22,16 @@ |
22 | 23 | } |
23 | 24 | |
24 | 25 | td.diff-addedline { |
25 | | - background: #D1E7F6; |
| 26 | + background: #D8E4F6; |
26 | 27 | font-size: smaller; |
27 | 28 | } |
28 | 29 | |
29 | 30 | td.diff-deletedline { |
30 | | - background: #F6E0D1; |
| 31 | + background: #E4F6D8; |
31 | 32 | font-size: smaller; |
32 | 33 | } |
33 | 34 | |
34 | 35 | td.diff-context { |
35 | | - background: #eee; |
36 | 36 | font-size: smaller; |
37 | 37 | } |
38 | 38 | |
— | — | @@ -44,11 +44,15 @@ |
45 | 45 | } |
46 | 46 | |
47 | 47 | td.diff-addedline .diffchange { |
48 | | - background: #75BCD8; |
| 48 | + background: #B0C0F0; |
| 49 | + color: #001040; |
| 50 | + font-weight: bold; |
49 | 51 | } |
50 | 52 | |
51 | 53 | td.diff-deletedline .diffchange { |
52 | | - background: #D98462; |
| 54 | + background: #B0E897; |
| 55 | + color: #104000; |
| 56 | + font-weight: bold; |
53 | 57 | } |
54 | 58 | |
55 | 59 | table.diff { |