mediawiki-skins-MinervaNeue/minerva.less/minerva.mixins.less
Jan Drewniak 59fd0cd5dc Convert all color related Less variables to CSS custom properties
All colors used in Minerva are converted from Less variables
into CSS custom properties. A new file called CSSCustomProperties.less
is created in the skins.minerva.base.styles module to store
these custom properties and an ADR is provided on the rationale for
dropping support for browsers that don't support custom properties.

The new CSS custom properties follow Codex design token conventions
where possible (and noted when not).

Link colors are unique because their styles are defined in core,
so in that case the Less variables values are set to custom properties.
Those values are then fed back into MediaWiki core for core link
styling.

Also adds a temporary night-mode color palette under the
.skin-nightmode-1 class on the <html> element.

Bug: T356074
Change-Id: Ida1f14138f12bd3c600c264bde7b5100f9dbf4ff
2024-02-02 17:57:27 +00:00

77 lines
1.7 KiB
Plaintext

@import 'minerva.variables.less';
.editor-textarea() {
box-sizing: border-box;
width: 100%;
// Note if a textarea has a .mw-ui-input class, this may be overridden
padding: 10px @padding-content 10px @padding-content;
// stylelint-disable-next-line plugin/no-unsupported-browser-features
resize: none;
}
.clearfix() {
display: block;
content: '';
clear: both;
}
// Mixins for history, contributions, watchlist and recent changes' changes list
.changeslist-minor-edit() {
background-color: var( --background-color-interactive );
position: absolute;
bottom: 10px;
left: 85px;
border-radius: @border-radius-base;
padding: 0 6px 1px;
font-size: @font-size-minerva-small;
font-weight: bold;
}
.changeslist-meta() {
position: absolute;
left: 0;
font-size: @font-size-minerva-small;
}
.changeslist-row() {
font-size: 0.85em;
list-style: none;
position: relative;
min-height: 80px;
width: 100%;
/* !important to override the too-specific rule .content ol li, .content ul li */
margin: 0 !important;
padding: 12px 0;
border-bottom: @border-width-base @border-style-base #eaecf0;
&::before,
&::after {
.clearfix();
}
}
.changeslist-row-item() {
color: #72777d;
margin: 0.5em 0;
padding-left: 85px;
font-size: @font-size-minerva-small;
}
.changeslist-header() {
background-color: var( --background-color-interactive );
color: var( --color-subtle );
display: block;
width: 100%;
padding: 0.5em 16px 0.4em;
font-size: 0.85em;
font-weight: bold;
}
// Generic mixin for applying styles to text that accompanies/adds context to workflows
.secondary-text() {
font-size: @font-size-minerva-small;
color: #72777d;
margin-top: 0.5em;
line-height: 1.4;
}