mediawiki-skins-MinervaNeue/skinStyles/mediawiki.interface.helpers.styles.less
Jan Drewniak 4ad1b511c0 Add Minerva specific mediawiki.interface.helpers.styles.less file
This SkinStyle file adds paranthases around the (diff|hist) links
and username(talk|contrib|block) links on special pages.

Bug: T222394
Change-Id: Ic291cb795ccad556a5049d970c0282b2d4c65a11
2019-05-07 15:54:13 +02:00

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}';
}
}