mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 09:21:11 +00:00
f92e40152a
Bug: T253842 Change-Id: Ia7104a30a37a13cbeb6cfa4bdf1ee50ee677a87a
34 lines
737 B
Plaintext
34 lines
737 B
Plaintext
@import 'mediawiki.mixins.less';
|
|
|
|
/**
|
|
* Print styles require Flexbox to be optimized for print.
|
|
* For browsers without Flexbox, the header will appear at the bottom of
|
|
* the page which is judged as acceptable.
|
|
* This deviates a little from the browser compability chart, with the understanding
|
|
* that printing accounts for a small percentage of our traffic and browsers which don't
|
|
* support Flexbox are an even smaller fragment.
|
|
*/
|
|
.mw-page-container-inner {
|
|
.flex-display();
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.mw-page-container-inner > * {
|
|
width: 100%;
|
|
}
|
|
|
|
#mw-sidebar-checkbox,
|
|
.mw-header > *:not( .mw-logo ) {
|
|
display: none;
|
|
}
|
|
|
|
// Header
|
|
.mw-header {
|
|
order: 1;
|
|
}
|
|
|
|
.mw-workspace-container {
|
|
order: 2;
|
|
}
|