Gerrit Patch Uploader has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/196172

Change subject: Highlight target references
......................................................................

Highlight target references

Highlight the target reference when the user clicks a reference link,
and also highlight the note in the text when he clicks the backlink.

This is done using the :target selector and a light blue background-color.
The color (and the rest of the code) are from English Wikipedia, from where
it has been copied to many other wikis, so the feature itself and especially
the color seem to be agreed on.

Browsers that don't support the :target selector (notably Internet Explorer 8
and below) will just ignore the new style and fall back to current behavior.
Wikis that have added this code to their common.css can remove it, but
of course nothing will break when they keep the duplicate code.

Bug: T10303
Change-Id: I5775daf6934516ce9c98841399e5a358195c1374
---
M modules/ext.cite.css
1 file changed, 6 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Cite 
refs/changes/72/196172/1

diff --git a/modules/ext.cite.css b/modules/ext.cite.css
index e1a14eb..de0632c 100644
--- a/modules/ext.cite.css
+++ b/modules/ext.cite.css
@@ -23,6 +23,12 @@
        user-select: none;
 }
 
+/* Highlight clicked reference in blue to help navigation */
+ol.references li:target,
+sup.reference:target {
+       background-color: #def;
+}
+
 @media print {
        .mw-cite-backlink {
                display: none;

-- 
To view, visit https://gerrit.wikimedia.org/r/196172
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5775daf6934516ce9c98841399e5a358195c1374
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Cite
Gerrit-Branch: master
Gerrit-Owner: Gerrit Patch Uploader <[email protected]>
Gerrit-Reviewer: Schnark <[email protected]>

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

Reply via email to