2021-02-08 23:10:21 +00:00
|
|
|
// The use of mixins.buttons requires @font-size-base to be defined for this to work in Storybook
|
2021-02-02 10:04:37 +00:00
|
|
|
@import '../../common/variables.less';
|
2021-03-22 22:59:18 +00:00
|
|
|
@import 'mediawiki.mixins.less';
|
2021-02-01 22:56:31 +00:00
|
|
|
|
2021-05-03 13:48:46 +00:00
|
|
|
// TODO: `#p-lang-btn` Can be changed to `.mw-portlet-lang` when languages-in-header is the default.
|
|
|
|
#p-lang-btn {
|
2021-08-26 19:47:02 +00:00
|
|
|
// FIXME [review whether margin-top is needed] center vertically in heading.
|
|
|
|
margin-top: 2px;
|
2021-05-03 13:48:46 +00:00
|
|
|
.box-sizing( border-box );
|
|
|
|
height: @height-lang-button;
|
|
|
|
|
2021-03-22 22:59:18 +00:00
|
|
|
.mw-ui-icon:before {
|
|
|
|
// Put icon on correct standard normal state color.
|
|
|
|
opacity: 0.87;
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:23:19 +00:00
|
|
|
.vector-menu-heading {
|
2021-07-16 15:32:42 +00:00
|
|
|
font-size: initial;
|
2021-02-08 23:10:21 +00:00
|
|
|
// reset padding styles in MenuDropdown.less with right padding for arrow.
|
2021-07-16 15:32:42 +00:00
|
|
|
padding-right: 30px;
|
|
|
|
padding-left: 8px;
|
2021-02-08 23:10:21 +00:00
|
|
|
// Prevent select of span text "X languages"
|
|
|
|
user-select: none;
|
2021-03-22 22:59:18 +00:00
|
|
|
// Remove opacity on language button (it applies to more menu because of label color).
|
2021-03-08 19:07:09 +00:00
|
|
|
opacity: 1;
|
2021-07-16 15:32:42 +00:00
|
|
|
|
|
|
|
span {
|
|
|
|
// Special treatment for language button, based on Vector font-size
|
|
|
|
font-size: @font-size-base;
|
|
|
|
}
|
2021-02-01 23:13:58 +00:00
|
|
|
|
|
|
|
&:after {
|
|
|
|
top: 0;
|
|
|
|
}
|
2021-02-01 22:56:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.vector-menu-content {
|
|
|
|
top: auto;
|
2021-07-16 15:32:42 +00:00
|
|
|
left: -@border-width-base;
|
2021-03-24 14:01:04 +00:00
|
|
|
right: -@border-width-base;
|
2021-02-01 23:13:58 +00:00
|
|
|
// align borders of open menu align with button
|
2021-03-22 22:59:18 +00:00
|
|
|
.box-sizing( border-box );
|
2021-02-05 02:14:21 +00:00
|
|
|
max-height: 65vh;
|
|
|
|
overflow: scroll;
|
|
|
|
border-top-width: 1px;
|
|
|
|
|
2021-05-03 13:48:46 +00:00
|
|
|
// Adds to the show/hide technique in MenuDropdown.less with
|
|
|
|
// display to prevent rendering and long scrolling on Main page
|
|
|
|
display: none;
|
|
|
|
|
2021-02-05 02:14:21 +00:00
|
|
|
li a {
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
2021-02-01 22:56:31 +00:00
|
|
|
}
|
|
|
|
|
2021-05-03 13:48:46 +00:00
|
|
|
.vector-menu-checkbox:checked ~ .vector-menu-content {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2021-02-01 22:56:31 +00:00
|
|
|
.after-portlet {
|
2021-02-01 23:13:58 +00:00
|
|
|
// ensure there is a visual separation between the language links and additional links.
|
2021-02-05 02:14:21 +00:00
|
|
|
margin-top: 10px;
|
2021-02-01 22:56:31 +00:00
|
|
|
}
|
|
|
|
}
|
2021-02-04 02:23:19 +00:00
|
|
|
|
2021-07-26 21:00:38 +00:00
|
|
|
// Hides language button with CSS, ensures language button is in DOM for temporary JS hack for interwiki links
|
|
|
|
// Temporary solution to T287206, can be removed when ULS dialog includes interwiki links
|
|
|
|
#p-lang-btn.mw-portlet-empty {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-09-21 19:56:09 +00:00
|
|
|
|
|
|
|
#p-lang-btn-sticky-header {
|
|
|
|
@button-padding: 12px;
|
|
|
|
@arrow-width: 18px;
|
|
|
|
position: relative;
|
|
|
|
padding-right: calc( @button-padding + @arrow-width );
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
background-image: url( ../common/images/arrow-down.svg );
|
|
|
|
background-position: 100% 50%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: @button-padding;
|
|
|
|
bottom: 0;
|
|
|
|
width: @arrow-width;
|
|
|
|
// Modify the color of the image from the default #202122 to approx. #404244 to match the text.
|
|
|
|
opacity: 0.84;
|
|
|
|
}
|
|
|
|
}
|