mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-12-02 18:46:18 +00:00
6dc56deebd
Change-Id: Ib41cad1e14243577c0a78becb2bc5cb6a50afa5d
17 lines
491 B
Plaintext
17 lines
491 B
Plaintext
@counter-style lzh-counter {
|
||
system: numeric;
|
||
symbols: '〇' '一' '二' '三' '四' '五' '六' '七' '八' '九';
|
||
}
|
||
|
||
.mw-ref > a[ style~='mw-Ref' ]::after {
|
||
content: '[' counter( mw-Ref, lzh-counter ) ']';
|
||
}
|
||
|
||
.mw-ref > a[ style~='mw-Ref' ][ data-mw-group ]::after {
|
||
content: '[' attr( data-mw-group ) ' ' counter( mw-Ref, lzh-counter ) ']';
|
||
}
|
||
|
||
span[ rel='mw:referencedBy' ] > a::before {
|
||
content: counter( mw-references, lzh-counter ) '點' counter( mw-ref-linkback, lzh-counter );
|
||
}
|