mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-15 02:13:49 +00:00
57f86745e9
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
55 lines
984 B
Plaintext
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();
|
|
}
|
|
}
|
|
}
|