mediawiki-skins-MinervaNeue/skinStyles/mediawiki.interface.helpers.styles.less
Jon Robson 57f86745e9 Show the thanks button on mobile special pages
Now the confirmation step code works, we can show this button.
Update styling to generalize the thanks/rollback styling.

Depends-On: Ia03038e86c6a607c8b75eefedbf0285ca1a2f8c8
Depends-On: I5286e80f9dd683ba55b03664dc31de77c19722b7
Bug: T230657
Change-Id: Iab32d8b30d4f2d946ffdaefea72ca9b43448998d
2022-12-15 22:46:33 +00:00

55 lines
984 B
Plaintext

@import '../minerva.less/minerva.mixins.less';
@import '../minerva.less/minerva.variables.less';
@import 'mediawiki.ui/variables.less';
@import 'mediawiki.ui/mixins.buttons.less';
@import 'mediawiki.mixins.less';
/**
* 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}';
}
}
// Disable parentheses and content in pager tools.
.mw-pager-tools {
margin-left: 8px;
&.mw-changeslist-links {
> span:after,
> span:before {
content: none;
}
}
}
.mw-pager-tools,
.mw-history-undo {
font-size: initial;
a {
float: right;
background-color: @colorGray15;
color: @colorText;
text-decoration: none;
.mw-ui-button();
.mw-ui-button-states();
font-size: @font-size-minerva-smallest;
&:after {
.clearfix();
}
}
}