mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 03:08:12 +00:00
59fd0cd5dc
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
89 lines
2.5 KiB
Plaintext
89 lines
2.5 KiB
Plaintext
// Component of ui.less
|
|
@import '../../minerva.less/minerva.variables.less';
|
|
|
|
// stylelint-disable no-descending-specificity, selector-max-id
|
|
|
|
// .menu
|
|
#mw-mf-page-left {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
min-width: 275px;
|
|
visibility: hidden;
|
|
|
|
@media screen and ( min-width: @width-breakpoint-tablet ) {
|
|
min-width: @width-breakpoint-mobile;
|
|
}
|
|
// It should always be possible to dismiss the menu by tapping outside of it.
|
|
max-width: 80%;
|
|
z-index: @z-index-drawer;
|
|
// Add vertical scrollbar as needed.
|
|
overflow-y: auto;
|
|
background-color: var( --background-color-interactive );
|
|
transform: translate( -100%, 0 );
|
|
|
|
ul {
|
|
padding-bottom: 22px;
|
|
}
|
|
}
|
|
|
|
// TODO: combined with `.mw-mf-page-center__mask` & create a separate "masks" module.
|
|
.main-menu-mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
opacity: 0;
|
|
bottom: 0;
|
|
background: @opaque;
|
|
z-index: @z-index-above-content;
|
|
// don't use display: none because it's not animatable
|
|
visibility: hidden;
|
|
}
|
|
|
|
#main-menu-input:checked ~ .main-menu-mask {
|
|
visibility: visible;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
#main-menu-input:checked ~ #mw-mf-page-left {
|
|
visibility: visible;
|
|
box-shadow: 1px 0 8px 0 var( --box-shadow-color-drawer );
|
|
transform: translate( 0, 0 );
|
|
}
|
|
|
|
// Without the minerva-animations-ready class, the main menu can appear and
|
|
// perform its exit animation when the page loads in chrome (and possibly
|
|
// others).
|
|
// https://bugs.chromium.org/p/chromium/issues/detail?id=332189
|
|
.minerva-animations-ready {
|
|
#mw-mf-page-left {
|
|
// Animate menu visibility, opacity, and translation changes in and out. Visibility duration
|
|
// cannot be animated initially as it causes a flash on page load in Chromium due to
|
|
// https://bugs.chromium.org/p/chromium/issues/detail?id=332189.
|
|
transition: opacity @transition-duration-medium @transition-timing-function-menu, visibility @transition-duration-medium @transition-timing-function-menu, transform @transition-duration-medium @transition-timing-function-menu;
|
|
}
|
|
|
|
.main-menu-mask {
|
|
transition: opacity @transition-duration-base @transition-timing-function-menu, visibility 0ms linear @transition-duration-base;
|
|
}
|
|
|
|
#main-menu-input:checked ~ .main-menu-mask {
|
|
transition: opacity @transition-duration-base @transition-timing-function-menu;
|
|
}
|
|
}
|
|
|
|
// T264376 - disable animations on browsers impacted by bug
|
|
.hotfix-T264376 {
|
|
.main-menu-mask {
|
|
display: none;
|
|
}
|
|
|
|
#main-menu-input:checked ~ .main-menu-mask {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
// stylelint-enable no-descending-specificity, selector-max-id
|