mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-12-03 19:16:09 +00:00
6dc56deebd
Change-Id: Ib41cad1e14243577c0a78becb2bc5cb6a50afa5d
24 lines
517 B
Plaintext
24 lines
517 B
Plaintext
/* @noflip */
|
|
.mw-cite-dir-ltr {
|
|
direction: ltr;
|
|
text-align: left;
|
|
}
|
|
|
|
/* @noflip */
|
|
.mw-cite-dir-rtl {
|
|
direction: rtl;
|
|
text-align: right;
|
|
}
|
|
|
|
.mw-ref > a[ style~='mw-Ref' ]::after {
|
|
content: '[' counter( mw-Ref, arabic-indic ) ']';
|
|
}
|
|
|
|
.mw-ref > a[ style~='mw-Ref' ][ data-mw-group ]::after {
|
|
content: '[' attr( data-mw-group ) ' ' counter( mw-Ref, arabic-indic ) ']';
|
|
}
|
|
|
|
span[ rel='mw:referencedBy' ] > a::before {
|
|
content: counter( mw-references, arabic-indic ) ',' counter( mw-ref-linkback, arabic-indic );
|
|
}
|