mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-15 18:29:50 +00:00
91c9e68afb
Following a discussion in the ticket, update the places where `#eaecf0` has been hardcoded to reflect whether it is intended to be a border or background style and replace with CSS variables where applicable. Add `--border-color-muted` as a CSS custom property, and update the night mode palette to use it. Lastly, add `--color-error`, to be used in a subsequent patch Visual changes, but again gated behind night mode feature flag Bug: T356825 Change-Id: Icb5741190f3e80a20dcedf9b13d6a34fe619b467
274 lines
4.7 KiB
Plaintext
274 lines
4.7 KiB
Plaintext
/* stylelint-disable selector-max-id */
|
|
@import '../minerva.less/minerva.variables.less';
|
|
|
|
// Override MobileFrontend styles (can be weakened/removed when MobileDiff no longer exists)
|
|
#mw-mf-diffview .mw-diff-empty-line {
|
|
del,
|
|
ins {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
// By default a pseudo element is used for skins like Vector. We don't want this on Minerva.
|
|
.mw-diff-movedpara-right,
|
|
.mw-diff-movedpara-left,
|
|
.rtl .mw-diff-movedpara-left,
|
|
.rtl .mw-diff-movedpara-right {
|
|
&::after {
|
|
content: none;
|
|
}
|
|
}
|
|
|
|
.mw-special-MobileDiff {
|
|
#mw-mf-diffarea {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
// T350440: Hide desktop history links on Special:MobileDiff
|
|
// to avoid duplicate sets of links.
|
|
.mw-diff-revision-history-links {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media all and ( max-width: @width-breakpoint-tablet ) {
|
|
.mw-special-MobileDiff {
|
|
.content-unstyled {
|
|
margin: 0 @margin-content;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media all and ( max-width: @width-breakpoint-tablet ) {
|
|
// T233151: Remove post-content margin on mobile diff page drawer
|
|
// .post-content margin
|
|
#mw-mf-userinfo .post-content {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
// Will be enhanced with JS
|
|
.mw-diff-timestamp {
|
|
display: block;
|
|
min-height: 20px;
|
|
}
|
|
|
|
.minoredit {
|
|
margin-right: 8px;
|
|
background: var( --background-color-interactive );
|
|
border-radius: 2px;
|
|
font-size: 0.9em;
|
|
padding: 0 6px 1px;
|
|
}
|
|
|
|
@media all and ( max-width: @width-breakpoint-tablet ) {
|
|
//
|
|
// Navigation links
|
|
//Reveal the previous and next navigation links
|
|
//
|
|
.mw-diff-revision-history-links {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 0.9em;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.mw-diff-revision-history-link-previous {
|
|
flex-grow: 1;
|
|
text-align: start;
|
|
}
|
|
|
|
.mw-diff-revision-history-link-next {
|
|
flex-grow: 1;
|
|
text-align: end;
|
|
}
|
|
|
|
//
|
|
// Diff header
|
|
//
|
|
.diff-ntitle {
|
|
text-align: left;
|
|
|
|
> div {
|
|
padding-bottom: 0.5em;
|
|
}
|
|
|
|
// Special case since #mw-diff-ntitle2 is position fixed.
|
|
#mw-diff-ntitle3 {
|
|
padding-top: 0.5em;
|
|
}
|
|
}
|
|
|
|
.minor-edit {
|
|
display: block;
|
|
}
|
|
|
|
//
|
|
// date of edit
|
|
//
|
|
.mw-diff-timestamp {
|
|
color: #72777d;
|
|
height: 1em;
|
|
line-height: 1em;
|
|
display: block;
|
|
}
|
|
|
|
.comment {
|
|
display: block;
|
|
}
|
|
|
|
//
|
|
// Diff
|
|
//
|
|
table.diff {
|
|
display: block;
|
|
|
|
tbody, tr, td {
|
|
display: block;
|
|
padding: 0;
|
|
}
|
|
|
|
.diff-otitle {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
//
|
|
// Sticky User box at bottom of page
|
|
//
|
|
#mw-diff-ntitle2 {
|
|
text-align: left;
|
|
position: fixed;
|
|
height: 8em;
|
|
padding: 1em;
|
|
background-color: #f8f9fa;
|
|
border-top: 1px solid #c8ccd1;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: @z-index-above-content;
|
|
}
|
|
|
|
.mw-diff-tool {
|
|
bottom: 7em;
|
|
position: fixed;
|
|
z-index: @z-index-stacking-2;
|
|
right: 8px;
|
|
|
|
.jquery-confirmable-interface {
|
|
background-color: var( --background-color-interactive-subtle );
|
|
border: @border-subtle;
|
|
padding: @spacing-50;
|
|
}
|
|
|
|
.jquery-confirmable-element {
|
|
~ .jquery-confirmable-interface {
|
|
display: none;
|
|
}
|
|
|
|
&.hidden {
|
|
~ .jquery-confirmable-interface {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.mw-userlink {
|
|
&::before {
|
|
content: '';
|
|
margin-right: 8px;
|
|
.cdx-mixin-css-icon( @cdx-icon-user-avatar, var(--color-subtle) );
|
|
}
|
|
|
|
&.mw-anonuserlink::before {
|
|
.cdx-mixin-css-icon( @cdx-icon-user-anonymous, var(--color-subtle) );
|
|
}
|
|
}
|
|
|
|
.mw-diff-usermetadata {
|
|
display: block;
|
|
}
|
|
|
|
.mw-diff-userroles {
|
|
margin-top: 0.7em;
|
|
}
|
|
|
|
.mw-diff-usereditcount {
|
|
margin-top: 1.2em;
|
|
display: inline-block;
|
|
|
|
span {
|
|
text-align: center;
|
|
font-size: 1.85em;
|
|
color: #72777d;
|
|
display: block;
|
|
line-height: 20px;
|
|
}
|
|
}
|
|
|
|
//
|
|
// Typography
|
|
//
|
|
|
|
.mw-diff-usermetadata,
|
|
.mw-diff-timestamp {
|
|
font-size: 0.7em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
//
|
|
// HIDDEN UI ELEMENTS
|
|
//
|
|
// hidden for now to match historic Special:MobileDiff
|
|
// Sam Walton's team should enable this as needed.
|
|
.mw-usertoollinks,
|
|
#mw-diff-ntitle4,
|
|
.mw-diff-inline-legend,
|
|
.mw-diff-inline-header,
|
|
.mw-diffPage-inlineToggle-container,
|
|
#mw-diff-ntitle5,
|
|
.mw-diff-edit,
|
|
.mw-diff-undo,
|
|
.mw-revdelundel-link {
|
|
display: none !important;
|
|
}
|
|
|
|
#mw-diff-ntitle1 strong {
|
|
font-weight: normal;
|
|
|
|
> a {
|
|
padding: 0.5em 0;
|
|
display: block;
|
|
line-height: 1.6;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Wikitext font size is restored to 100%, as in mediawiki.editfont.styles
|
|
.diff-addedline,
|
|
.diff-deletedline,
|
|
.diff-context,
|
|
.mw-diff-inline-added,
|
|
.mw-diff-inline-deleted,
|
|
.mw-diff-inline-moved,
|
|
.mw-diff-inline-changed,
|
|
.mw-diff-inline-context {
|
|
font-size: 100%;
|
|
}
|
|
|
|
.mw-article-diff {
|
|
#firstHeading {
|
|
font-size: 1.5em;
|
|
}
|
|
}
|
|
|
|
// Bug: T357213 - always show patrol link. Previews are hidden by default
|
|
// on mobile, but we trust patrollers to only patrol diffs that do not require
|
|
// viewing the preview.
|
|
.patrollink.patrollink-diffonly {
|
|
display: block;
|
|
}
|
|
/* stylelint-enable selector-max-id */
|