mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-30 17:54:20 +00:00
59ef3c8678
"embed" works just as well in modern browsers. Also fix the comment to be more correct. Change-Id: I16a701f3b962b5e7f63554be2f28888a938548b0
20 lines
473 B
CSS
20 lines
473 B
CSS
.mw-cite-backlink,
|
|
.cite-accessibility-label {
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
/* Make sure the brackets and the numbers aren't jumbled after LTR words in RTL wikis */
|
|
sup.reference {
|
|
unicode-bidi: embed;
|
|
}
|
|
|
|
/* Highlight clicked reference in blue to help navigation */
|
|
ol.references li:target,
|
|
sup.reference:target {
|
|
background-color: #def; /* fallback */
|
|
background-color: rgba(0, 127, 255, 0.133);
|
|
}
|