2023-05-27 17:11:04 +00:00
|
|
|
@import '../../common/variables.less';
|
2023-03-14 08:37:58 +00:00
|
|
|
|
2023-04-12 20:36:55 +00:00
|
|
|
.client-nojs .vector-settings {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vector-settings {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 8px;
|
|
|
|
right: 8px;
|
2023-05-26 07:49:20 +00:00
|
|
|
|
|
|
|
ul {
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
align-items: center;
|
|
|
|
column-gap: 8px;
|
2023-07-12 21:33:15 +00:00
|
|
|
row-gap: 8px;
|
2023-05-26 07:49:20 +00:00
|
|
|
}
|
2023-04-12 20:36:55 +00:00
|
|
|
}
|
|
|
|
|
2022-11-11 17:09:51 +00:00
|
|
|
/**
|
|
|
|
* Limited width toggle - a button which lets users change the layout from
|
|
|
|
* a fixed-width content column to a layout where the content takes up the
|
|
|
|
* full window width.
|
|
|
|
*/
|
2022-10-21 18:14:54 +00:00
|
|
|
|
2022-11-07 22:57:31 +00:00
|
|
|
// By default, toggle should be hidden unless the breakpoint below is reached.
|
2023-04-12 20:36:55 +00:00
|
|
|
.vector-limited-width-toggle,
|
|
|
|
.vector-limited-width-popup {
|
2022-11-07 22:57:31 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note on certain pages the control will have no effect e.g. Special:RecentChanges
|
2023-01-19 17:30:55 +00:00
|
|
|
// Defining this at 1400px is a product decision so do not change it
|
|
|
|
// (more context at https://phabricator.wikimedia.org/T326887#8540889)
|
|
|
|
@media ( min-width: 1400px ) {
|
2023-04-12 20:36:55 +00:00
|
|
|
.vector-limited-width-toggle,
|
|
|
|
.vector-limited-width-popup {
|
2022-11-07 22:57:31 +00:00
|
|
|
display: block;
|
2022-11-11 17:09:51 +00:00
|
|
|
}
|
2022-10-21 18:14:54 +00:00
|
|
|
}
|