mediawiki-extensions-Cite/modules/ext.cite.style.en.css
Subramanya Sastry 8cfad38705 Parsoid CSS: Don't make enwiki's default the default for all languages
* 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
2022-11-18 11:43:50 -06:00

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 );
}