mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-26 16:40:33 +00:00
40d1a89b42
Bug: T326887 Change-Id: I256866f615c8c0f10b29e6135faca6add16ff195
32 lines
980 B
Plaintext
32 lines
980 B
Plaintext
/**
|
|
* 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.
|
|
*/
|
|
|
|
// By default, toggle should be hidden unless the breakpoint below is reached.
|
|
.vector-limited-width-toggle {
|
|
display: none;
|
|
}
|
|
|
|
// Note on certain pages the control will have no effect e.g. Special:RecentChanges
|
|
// 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 ) {
|
|
.vector-limited-width-toggle {
|
|
display: block;
|
|
position: fixed;
|
|
bottom: 8px;
|
|
right: 8px;
|
|
}
|
|
|
|
//NOTE: enabled/disabled class on body.
|
|
&.vector-feature-limited-width-disabled .vector-limited-width-toggle:before {
|
|
background-image: url( images/fullscreen-close.svg );
|
|
}
|
|
|
|
&.vector-feature-limited-width-enabled .vector-limited-width-toggle:before {
|
|
background-image: url( images/fullscreen.svg );
|
|
}
|
|
}
|