mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-15 02:55:04 +00:00
28 lines
543 B
CSS
28 lines
543 B
CSS
|
/* @noflip */
|
|||
|
.mw-cite-dir-ltr {
|
|||
|
direction: ltr;
|
|||
|
text-align: left;
|
|||
|
}
|
|||
|
|
|||
|
/* @noflip */
|
|||
|
.mw-cite-dir-rtl {
|
|||
|
direction: rtl;
|
|||
|
text-align: right;
|
|||
|
}
|
|||
|
|
|||
|
span[ rel~='mw:referencedBy' ] {
|
|||
|
counter-reset: mw-ref-linkback -1;
|
|||
|
}
|
|||
|
|
|||
|
.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 );
|
|||
|
}
|