mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-15 10:59:56 +00:00
8d93818fc8
* Linting rule has been fixed to accept these now. Change-Id: I51d866ec18c9e1d675f43b3c60f3ad874bba041e
17 lines
451 B
CSS
17 lines
451 B
CSS
@counter-style mni-counter {
|
|
system: numeric;
|
|
symbols: '꯰' '꯱' '꯲' '꯳' '꯴' '꯵' '꯶' '꯷' '꯸' '꯹';
|
|
}
|
|
|
|
.mw-ref > a::after {
|
|
content: '[' counter( mw-Ref, mni-counter ) ']';
|
|
}
|
|
|
|
.mw-ref > a[ data-mw-group ]::after {
|
|
content: '[' attr( data-mw-group ) ' ' counter( mw-Ref, mni-counter ) ']';
|
|
}
|
|
|
|
span[ rel='mw:referencedBy' ] > a::before {
|
|
content: counter( mw-references, mni-counter ) '.' counter( mw-ref-linkback, mni-counter );
|
|
}
|