"Edokter" posted a comment on MediaWiki.r106884.
URL: http://www.mediawiki.org/wiki/Special:Code/MediaWiki/106884#c28178

Commit summary for MediaWiki.r106884:

Followup r105280
For bug 33139 "Swapping colors in new diff color scheme"

* Modified diff colorscheme to yellow[orange]/blue[blue]
  - These colors attempt to address the following issues with diffs:
    - Colorblindness (Protanopia/Deuteranopia)
    - Cultural meaning of color (e.g., "green is good, therefore this diff is 
better")
* Bumped font size up overall (actually, just removed the smaller)
* Removed dotted line around difftext

Edokter's comment:

Forgot to save that one, but given the code above, putting this in your CSS 
will will show what Brandon's patch would look like:

 /* Diffs */
 td.diff-context {
     background: #EEE;
 }
 td.diff-addedline {
     background: #e0ecff;
 }
 td.diff-deletedline {
     background: #ffffaa;
 }
 td.diff-addedline .diffchange {
     background: #c4d3ff;
     color: #222222;
 }
 td.diff-deletedline .diffchange {
     background: #ffd89d;
     color: #000000;
 }


_______________________________________________
MediaWiki-CodeReview mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-codereview

Reply via email to