mediawiki-extensions-Cite/modules/ext.cite.style.or.css

17 lines
443 B
CSS
Raw Normal View History

2022-11-04 03:28:38 +00:00
@counter-style or-counter {
system: numeric;
symbols: '' '୧' '' '୩' '୪' '୫' '୬' '୭' '୮' '୯';
}
.mw-ref > a:after {
2022-11-04 03:28:38 +00:00
content: '[' counter( mw-Ref, or-counter ) ']';
}
.mw-ref > a[ data-mw-group ]:after {
2022-11-04 03:28:38 +00:00
content: '[' attr( data-mw-group ) ' ' counter( mw-Ref, or-counter ) ']';
}
span[ rel='mw:referencedBy' ] > a:before {
2022-11-04 03:28:38 +00:00
content: counter( mw-references, or-counter ) '.' counter( mw-ref-linkback, or-counter );
}