From: Roan Kattouw Date: Thu, 5 May 2016 03:54:49 +0000 (-0700) Subject: Fix unstyled updatedmarker X-Git-Tag: 1.31.0-rc.0~6931^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=d629541076c29ce4a7ec50d69a5e5969b409f16d;p=lhc%2Fweb%2Fwiklou.git Fix unstyled updatedmarker This is the "changed since your last visit" marker that you'll see on ?action=history for a page on your watchlist, marking edits that were made since you last viewed the page. updatedmarker is styled by some skins, but not all of them. I figured it's probably better to style it from history-specific CSS in core than to fix Vector to style it. Bug: T134515 Change-Id: I123f0b19e3869d3885bb38b7a5609941fcee600b --- diff --git a/resources/src/mediawiki.action/mediawiki.action.history.css b/resources/src/mediawiki.action/mediawiki.action.history.css index 603a965798..292318c7b1 100644 --- a/resources/src/mediawiki.action/mediawiki.action.history.css +++ b/resources/src/mediawiki.action/mediawiki.action.history.css @@ -2,3 +2,8 @@ #pagehistory li.after input[name="diff"] { visibility: hidden; } + +span.updatedmarker { + color: black; + background-color: #0f0; +}