From d629541076c29ce4a7ec50d69a5e5969b409f16d Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Wed, 4 May 2016 20:54:49 -0700 Subject: [PATCH] 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 --- resources/src/mediawiki.action/mediawiki.action.history.css | 5 +++++ 1 file changed, 5 insertions(+) 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; +} -- 2.20.1