mediawiki-skins-Vector/resources/skins.vector.styles/mixins.less
Moh'd Khier Abualruz 0d7f38ccc2 [Zebra] Remove !important
- Complying to fix me comment

Bug: T347712
Change-Id: Iacd0065b5a736249046ba89bb618bb13f7c0250a
2024-01-09 19:21:20 +01:00

88 lines
2.1 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( 12 / @font-size-browser, rem );
height: unit( 12 / @font-size-browser, rem );
// https://phabricator.wikimedia.org/T319070#8284272
margin-left: 7px;
}
}
.mixin-vector-content-box() {
background-color: @background-color-base;
}
.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-vector-scrollable-with-fade() {
overflow-x: hidden;
overflow-y: auto;
&::after {
content: '';
display: block;
position: sticky;
bottom: 0;
left: 0;
right: 0;
height: @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() {
left: auto;
right: 0;
}