mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-12-02 18:46:18 +00:00
f1bd3175fd
There is a lot of copy-pasting going on here. I hope the longer file names also make it more obvious what's actually happening here. Change-Id: I1cb5fe230cc8e2b90d97f92bc0156110afd6fc79
19 lines
517 B
Plaintext
19 lines
517 B
Plaintext
@import 'ext.cite.parsoid.rtl.less';
|
||
|
||
@counter-style nqo-counter {
|
||
system: numeric;
|
||
symbols: '߀' '߁' '߂' '߃' '߄' '߅' '߆' '߇' '߈' '߉';
|
||
}
|
||
|
||
.mw-ref > a[ style~='mw-Ref' ]::after {
|
||
content: '[' counter( mw-Ref, nqo-counter ) ']';
|
||
}
|
||
|
||
.mw-ref > a[ style~='mw-Ref' ][ data-mw-group ]::after {
|
||
content: '[' attr( data-mw-group ) ' ' counter( mw-Ref, nqo-counter ) ']';
|
||
}
|
||
|
||
span[ rel='mw:referencedBy' ] > a::before {
|
||
content: counter( mw-references, nqo-counter ) '.' counter( mw-ref-linkback, nqo-counter );
|
||
}
|