mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-15 10:59:56 +00:00
d044c0c166
In both cases: (a) ref counter display for .mw-ref sups (b) backlink labels in the references section for multiple named refs the a-tags are direct children of the <sup>/<span> tag. The child selectors are more precise. I am not really sure why we went with descendant selectors in the first place. Bug: T156350 Change-Id: If5be7cd14de40c2372f27ae5e2f32671c0a4e20c
24 lines
456 B
CSS
24 lines
456 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, decimal ) ']';
|
|
}
|
|
|
|
.mw-ref > a[ data-mw-group ]:after {
|
|
content: '[' attr( data-mw-group ) ' ' counter( mw-Ref, decimal ) ']';
|
|
}
|
|
|
|
span[ rel='mw:referencedBy' ] > a:before {
|
|
content: counter( mw-references, decimal ) '.' counter( mw-ref-linkback, decimal );
|
|
}
|