mediawiki-skins-Vector/resources/skins.vector.zebra.styles/mixins.less
Volker E b55d95c70c styles: Replace legacy Vector breakpoint tokens where applicable
Replacing the legacy Vector breakpoint tokens with the Codex
standard ones. All names have been unified, only some legacy values
remain for backwards compatibility.
Also
- replacing a wrongly applied min-width with the correct max-width
  token,
- replacing a width with an equal value min-width one and
- removing the now equal value mobile min-width one.

Note that we can't do some reference magic here alike
`@max-width-breakpoint-mobile: @min-width-breakpoint-tablet - 1px;` as
this would take the Codex value from skin variables and not the legacy
value.
Also note, that we could move all those Vector legacy definitions into
Vector's 'mediawiki.skin.variables.less' file(s), but that would mean
that extensions don't rely on the Codex default values, but on Vector's
and we want latter to move to the standard, also in foresight of
further standardization to build for all feature teams like a
shared Grid.

Bug: T331403
Change-Id: Ifb968b1977001edb1a79e20df387c61f27043542
2023-10-25 22:03:46 +00:00

118 lines
3.5 KiB
Plaintext

/**
* Less mixins.
*/
@import 'mediawiki.mixins.less';
.mixin-vector-page-container-sizing() {
// Set a min-width to make explicit we do not support anything below this threshold.
// For devices too small, they should be more useable with horizontal scrolling.
// e.g. Portrait on an iPad
min-width: @min-width-supported;
max-width: @max-width-page-container;
padding-left: @padding-horizontal-page-container;
padding-right: @padding-horizontal-page-container;
box-sizing: border-box;
}
.mixin-vector-arrowed-dropdown-toggle() {
display: inline-flex;
align-items: center;
&::after {
content: '';
background: url( ../skins.vector.styles/images/arrow-down.svg ) 100% 50% no-repeat;
width: unit( 16 / @font-size-browser, rem );
height: unit( 16 / @font-size-browser, rem );
// https://phabricator.wikimedia.org/T319070#8284272
margin-left: -1px;
}
}
.mixin-vector-content-box() {
background-color: @background-color-base;
border: @border-width-base @border-style-base @border-color-content-box;
border-radius: @border-radius-content-box;
}
.mixin-vector-dropdown-menu() {
.mixin-vector-content-box();
padding: @padding-horizontal-dropdown-menu @padding-vertical-dropdown-menu;
font-size: @font-size-dropdown;
box-shadow: 0 2px 6px -1px rgba( 0, 0, 0, 0.2 );
transition-property: opacity;
transition-duration: @transition-duration-base;
// TODO Add consistent min/max values for dropdowns in T316055
width: max-content;
max-width: 200px;
}
.mixin-vector-dropdown-menu-item() {
display: flex;
align-items: center;
padding: @padding-vertical-dropdown-menu-item 0;
&:not( .mw-selflink ):visited {
color: @color-link;
}
.vector-icon {
margin-right: @spacing-35;
}
&.selected a,
&.selected a:visited {
color: @color-link-selected;
}
}
.mixin-page-container() {
max-width: @max-width-page-container;
// Set a min-width to make explicit we do not support anything below this threshold.
// For devices too small, they should be more useable with horizontal scrolling.
// e.g. Portrait on an iPad
min-width: @min-width-supported;
margin: 0 auto;
padding-left: @padding-horizontal-page-container;
padding-right: @padding-horizontal-page-container;
background-color: @background-color-page-container;
box-sizing: border-box;
@media ( min-width: @min-width-breakpoint-desktop ) {
padding-left: @padding-horizontal-page-container-desktop;
padding-right: @padding-horizontal-page-container-desktop;
}
@media ( min-width: @min-width-breakpoint-desktop-wide ) {
padding-left: @padding-horizontal-page-container-desktop-wide;
padding-right: @padding-horizontal-page-container-desktop-wide;
}
}
.mixin-vector-scrollable-with-fade() {
overflow-y: auto;
&::after {
content: '';
display: block;
position: sticky;
bottom: 0;
left: 0;
right: 0;
width: ~'calc( 100% + @{padding-vertical-dropdown-menu} )';
height: @padding-vertical-dropdown-menu;
margin-top: -@padding-vertical-dropdown-menu;
margin-left: -@padding-vertical-dropdown-menu;
transform: translate( 0, @padding-vertical-dropdown-menu );
background: linear-gradient( rgba( 255, 255, 255, 0 ), @background-color-page-container );
background-repeat: no-repeat;
pointer-events: none; // Make the link below the fade clickable
}
}
.mixin-vector-dropdown-content-flip() {
// Flip dropdown horizontal alignment
// FIXME: !important necessary for flipping user links dropdown, remove after VectorZebraDesign is default
left: auto !important; /* stylelint-disable-line declaration-no-important */
right: 0;
}