mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-12 01:01:29 +00:00
8d93818fc8
* Linting rule has been fixed to accept these now. Change-Id: I51d866ec18c9e1d675f43b3c60f3ad874bba041e
24 lines
480 B
CSS
24 lines
480 B
CSS
/* @noflip */
|
||
.mw-cite-dir-ltr {
|
||
direction: ltr;
|
||
text-align: left;
|
||
}
|
||
|
||
/* @noflip */
|
||
.mw-cite-dir-rtl {
|
||
direction: rtl;
|
||
text-align: right;
|
||
}
|
||
|
||
.mw-ref > a::after {
|
||
content: '[' counter( mw-Ref, arabic-indic ) ']';
|
||
}
|
||
|
||
.mw-ref > a[ 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 );
|
||
}
|