mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-12 08:58:25 +00:00
18 lines
308 B
Plaintext
18 lines
308 B
Plaintext
|
/**
|
||
|
* Helper classes for special pages with changeslist elements.
|
||
|
*/
|
||
|
|
||
|
.mw-changeslist-links {
|
||
|
& > span:before {
|
||
|
content: '@{msg-parentheses-start}';
|
||
|
}
|
||
|
|
||
|
& > span:not( :first-child ):before {
|
||
|
content: '@{msg-pipe-separator}';
|
||
|
}
|
||
|
|
||
|
& > span:last-child:after {
|
||
|
content: '@{msg-parentheses-end}';
|
||
|
}
|
||
|
}
|