mediawiki-skins-MinervaNeue/skinStyles/mediawiki.special.changeslist.less
jdlrobson 72d4a103fd Consistent undo/rollback links across changelist pages
Move styles from history page into changeslist stylesheet. These
rules will continue to apply but will also apply to other pages
e.g. Special:Watchlist

Remove style for a.mw-rollback-link which does not look like its
 possible - link is always inside a mw-rollback-link container -
according to includes/Linker.php

Bug: T232284
Change-Id: Ifd04adeba74f010161b88f044ff4282636246e7a
2019-10-09 16:11:02 -07:00

163 lines
2.9 KiB
Plaintext

/**
* The "changeslist" module appears on Special pages such
* as recent changes, watchlist, and parts of the action history page.
*/
@import '../minerva.less/minerva.mixins.less';
@import '../minerva.less/minerva.variables.less';
@import 'mediawiki.ui/mixins.buttons.less';
@import 'mediawiki.ui/variables.less';
// Decrease the font-size of the advanced filters module (see T229360).
.mw-rcfilters-container,
.mw-rcfilters-ui-overlay,
.watchlistDetails {
font-size: @taglineFontSize;
}
.mw-changeslist h4 {
font-size: @fontSizeH3;
padding: 1em 0 0 0 !important; // overriding .content h4
}
ul.mw-contributions-list,
ul.special {
padding-left: 0 !important; // overriding `.content ul`
margin-left: 0 !important; // overriding `.client-js .mw-changeslist ul`
li {
list-style-type: none;
.changeslist-row();
}
// the following selector are nested due to their
// generic names.
.mw-title {
font-weight: bold;
}
.comment {
float: left;
clear: both;
font-style: italic;
line-height: 1.4em;
padding: 0.5em 0;
}
}
// T232955: Properly align deletion comments
span.mw-changeslist-log-entry {
.comment {
float: none;
padding: 0;
}
}
.mw-changeslist-line {
.changeslist-row();
}
.mw-changeslist-line-inner {
display: block;
}
.mw-changeslist-line-inner > *,
ul.mw-contributions-list li > * {
float: left;
margin-right: 0.5em;
}
.mw-changeslist-line-inner:before,
.mw-changeslist-line-inner:after {
.clearfix();
}
.mw-changeslist-date,
.mw-tag-markers {
clear: left;
}
/**
* Colored watchlist and recent changes numbers.
*/
.mw-plusminus-pos {
color: @wmui-color-green30;
}
.mw-plusminus-neg {
color: @wmui-color-red30;
}
.mw-plusminus-null {
color: @wmui-color-grey30;
}
/*
* Bidi-isolate these numbers.
* See https://phabricator.wikimedia.org/T93484
*/
.mw-plusminus-pos,
.mw-plusminus-neg,
.mw-plusminus-null {
unicode-bidi: -moz-isolate;
unicode-bidi: isolate;
}
/**
* "pill" style tags meant to emulate the OOUI ".oo-ui-tagItemWidget" style.
*/
.mw-tag-markers {
margin: 0 0 0.5em 0;
}
.mw-tag-marker {
// due to the extra space afforded by padding,
// we can make the font-size a bit smaller to save space.
font-size: @taglineFontSize;
display: inline-block;
box-sizing: border-box;
height: 1.6em;
border: 1px solid #a2a9b1;
border-radius: 1.6em;
line-height: 1.6em;
padding: 0 0.6em;
vertical-align: middle;
white-space: nowrap;
}
// undo link, styled as button
.mw-history-undo, .mw-rollback-link {
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();
}
}
}
ul.mw-contributions-list li .mw-rollback-link {
float: right;
font-size: initial;
}
// rollback edit link
.mw-rollback-link a {
// separating rollback link from undo link.
margin-left: 1em;
}
.mw-revdelundel-link,
.mw-tag-markers {
display: block;
}