2022-07-22 16:11:36 +00:00
|
|
|
@import '../../common/variables.less';
|
|
|
|
@import '../../common/mixins.less';
|
|
|
|
@import 'mediawiki.mixins.less';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dropdown container
|
|
|
|
*/
|
2022-12-14 22:26:48 +00:00
|
|
|
.vector-dropdown {
|
2023-06-26 16:54:44 +00:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dropdown toggle buttons. Doesn't apply to icon only buttons like the main menu dropdown.
|
|
|
|
* - language variants, Actions menus
|
|
|
|
* - more menu, user menu
|
|
|
|
* - ULS button in sticky header
|
|
|
|
*/
|
|
|
|
.vector-dropdown-label:not( .cdx-button--icon-only ) {
|
|
|
|
.mixin-vector-arrowed-dropdown-toggle();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invisible checkbox covering the dropdown toggle button.
|
|
|
|
*/
|
|
|
|
.vector-dropdown-checkbox {
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: @z-index-stacking-1;
|
|
|
|
opacity: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
// Hide and show menu content based off checked status.
|
|
|
|
&:checked ~ .vector-dropdown-content {
|
|
|
|
opacity: 1;
|
|
|
|
visibility: visible;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.vector-dropdown-content {
|
|
|
|
position: absolute;
|
|
|
|
top: 100%;
|
|
|
|
left: -@border-width-base;
|
|
|
|
opacity: 0;
|
|
|
|
height: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
overflow: hidden;
|
|
|
|
margin: 0;
|
|
|
|
padding: 4px 0;
|
|
|
|
z-index: @z-index-dropdown;
|
2022-07-22 16:11:36 +00:00
|
|
|
background-color: @background-color-base;
|
|
|
|
border: @border-width-base @border-style-base @border-color-base;
|
|
|
|
box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
|
|
|
|
transition-property: opacity;
|
|
|
|
transition-duration: @transition-duration-base;
|
2023-03-28 15:26:22 +00:00
|
|
|
// TODO Add consistent min/max values for dropdowns in T316055
|
|
|
|
width: max-content;
|
|
|
|
max-width: 200px;
|
2022-07-22 16:11:36 +00:00
|
|
|
}
|
2022-07-22 19:20:55 +00:00
|
|
|
}
|
2022-07-22 16:11:36 +00:00
|
|
|
|
2023-03-28 15:26:22 +00:00
|
|
|
.vector-pinnable-element,
|
2023-02-01 23:38:44 +00:00
|
|
|
.vector-dropdown-content {
|
|
|
|
.vector-menu-heading {
|
|
|
|
.mixin-vector-dropdown-menu-item();
|
|
|
|
.mixin-vector-menu-heading();
|
|
|
|
}
|
|
|
|
|
2023-06-26 16:54:44 +00:00
|
|
|
.mw-list-item {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2023-02-01 23:38:44 +00:00
|
|
|
.mw-list-item a {
|
|
|
|
// Mirror styles from Dropdown.less
|
|
|
|
.mixin-vector-dropdown-menu-item();
|
|
|
|
color: @color-link;
|
|
|
|
}
|
|
|
|
|
|
|
|
> *:not( :last-child ) {
|
|
|
|
// Apply bottom border to every children of dropdown contents and pinnable elements except the last
|
2023-04-23 13:48:55 +00:00
|
|
|
border-bottom: @border-width-base @border-style-base #eaecf0;
|
2023-02-01 23:38:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-17 04:45:51 +00:00
|
|
|
/**
|
|
|
|
* Dropdown menu items.
|
|
|
|
*/
|
2022-12-14 22:26:48 +00:00
|
|
|
.vector-dropdown .mw-list-item {
|
2023-06-26 16:54:44 +00:00
|
|
|
padding: 0;
|
|
|
|
|
2022-07-22 19:20:55 +00:00
|
|
|
a {
|
|
|
|
.mixin-vector-dropdown-menu-item();
|
2023-02-03 00:35:07 +00:00
|
|
|
|
|
|
|
// The link is a mw-selflink in the case of temporary users.
|
|
|
|
&:not( .mw-selflink ) {
|
|
|
|
color: @color-link;
|
|
|
|
}
|
2022-07-22 16:11:36 +00:00
|
|
|
}
|
2023-06-26 16:54:44 +00:00
|
|
|
|
|
|
|
.selected a,
|
|
|
|
.selected a:visited {
|
|
|
|
color: @color-link-selected;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2022-07-22 16:11:36 +00:00
|
|
|
}
|