mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-15 10:59:56 +00:00
8cfad38705
* The default formatting for linkbacks for multiple named refs is determined by the "cite_references_link_many_format" message. It is only defined in en.json as "<sup>[[$1|$2]]</sup>". $2 is the output of referencesFormatEntryNumericBacklinkLabel. So, change the default Parsoid CSS rule to match that. * But, since we have shipped Parsoid CSS all this while with the enwiki default, temporarily add "ext.cite.style.en.json" with that enwiki default so that on deploy, enwiki citations in VE continue to display as before. Change-Id: I6f4b0e25189284ad0950977752739e7dc2951fec
7 lines
209 B
CSS
7 lines
209 B
CSS
/* Temporary: This is enwiki specific.
|
|
* Need this for b/c till we add this to enwiki's Mediawiki:Common.css */
|
|
|
|
span[ rel~='mw:referencedBy' ] a:before {
|
|
content: counter( mw-ref-linkback, lower-alpha );
|
|
}
|