Restore gray coloring for autocomments
authorKunal Mehta <legoktm@member.fsf.org>
Sat, 1 Dec 2018 09:39:48 +0000 (01:39 -0800)
committerKunal Mehta <legoktm@member.fsf.org>
Mon, 3 Dec 2018 20:51:50 +0000 (12:51 -0800)
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
resources/src/mediawiki.legacy/shared.css

index f5a8272..caaebad 100644 (file)
@@ -153,7 +153,9 @@ img.thumbborder {
 
 /* Page history styling */
 /* the auto-generated edit comments */
-.autocomment {
+.autocomment,
+.autocomment a,
+.autocomment a:visited {
        color: #4b4b4b;
 }
 
index cdf47d0..a98a73f 100644 (file)
@@ -256,7 +256,9 @@ p.mw-delete-editreasons {
 }
 
 /* The auto-generated edit comments */
-.autocomment {
+.autocomment,
+.autocomment a,
+.autocomment a:visited {
        color: #72777d;
 }