2022-12-12 23:52:52 +00:00
|
|
|
@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';
|
|
|
|
|
2019-05-07 13:17:04 +00:00
|
|
|
/**
|
|
|
|
* Helper classes for special pages with changeslist elements.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mw-changeslist-links {
|
2023-03-31 19:50:36 +00:00
|
|
|
& > span::before {
|
2019-05-07 13:17:04 +00:00
|
|
|
content: '@{msg-parentheses-start}';
|
|
|
|
}
|
|
|
|
|
2023-03-31 19:50:36 +00:00
|
|
|
& > span:not( :first-child )::before {
|
2019-05-07 13:17:04 +00:00
|
|
|
content: '@{msg-pipe-separator}';
|
|
|
|
}
|
|
|
|
|
2023-03-31 19:50:36 +00:00
|
|
|
& > span:last-child::after {
|
2019-05-07 13:17:04 +00:00
|
|
|
content: '@{msg-parentheses-end}';
|
|
|
|
}
|
|
|
|
}
|
2022-12-12 23:52:52 +00:00
|
|
|
|
|
|
|
// Disable parentheses and content in pager tools.
|
|
|
|
.mw-pager-tools {
|
|
|
|
margin-left: 8px;
|
|
|
|
|
|
|
|
&.mw-changeslist-links {
|
2023-03-31 19:50:36 +00:00
|
|
|
> span::after,
|
|
|
|
> span::before {
|
2022-12-12 23:52:52 +00:00
|
|
|
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;
|
|
|
|
|
2023-03-31 19:50:36 +00:00
|
|
|
&::after {
|
2022-12-12 23:52:52 +00:00
|
|
|
.clearfix();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-04-12 17:36:39 +00:00
|
|
|
|
|
|
|
.mw-tempuserlink {
|
|
|
|
background-color: @background-color-interactive;
|
|
|
|
padding: 2px 8px 2px 8px;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|