From c3cede1d738a0d57e05acdb776205e1f41d1e6af Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Sat, 1 Dec 2018 01:39:48 -0800 Subject: [PATCH] Restore gray coloring for autocomments The main criticism of T165189 has been the "sea of blue" it causes. Given that the most important part is the actual comment, other elements like the auto- comment should be deemphasized (per Anomie). This won't bring back exactly the same color scheme as before, as now the arrow will also be colored gray instead of blue. I don't think this is a permanent solution, and we should continue discussing and iterating on how to address the prominence vs. accessibility issues. It was also noted that the current gray is not fully accessible (T125657), which should be addressed in a separate patch. Bug: T165189 Change-Id: Ic8903a539017a3fd3d47627f8485caed09fce482 --- resources/src/mediawiki.legacy/oldshared.css | 4 +++- resources/src/mediawiki.legacy/shared.css | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/resources/src/mediawiki.legacy/oldshared.css b/resources/src/mediawiki.legacy/oldshared.css index f5a827226e..caaebade7c 100644 --- a/resources/src/mediawiki.legacy/oldshared.css +++ b/resources/src/mediawiki.legacy/oldshared.css @@ -153,7 +153,9 @@ img.thumbborder { /* Page history styling */ /* the auto-generated edit comments */ -.autocomment { +.autocomment, +.autocomment a, +.autocomment a:visited { color: #4b4b4b; } diff --git a/resources/src/mediawiki.legacy/shared.css b/resources/src/mediawiki.legacy/shared.css index cdf47d0a93..a98a73f1e1 100644 --- a/resources/src/mediawiki.legacy/shared.css +++ b/resources/src/mediawiki.legacy/shared.css @@ -256,7 +256,9 @@ p.mw-delete-editreasons { } /* The auto-generated edit comments */ -.autocomment { +.autocomment, +.autocomment a, +.autocomment a:visited { color: #72777d; } -- 2.20.1