mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 09:21:11 +00:00
edd2f4ff85
Separating most LESS files into 2 ResourceLoader modules and a common folder: - skins.vector.styles - skins.vector.styles.legacy - common This changes aims to clearly separate the old (“legacy”), the new (“modern”) and the common styles which were previously all placed under `skins.vector.styles/`. Inside each directory are separate folders for `layouts` and `components`. The entry files, `skin.less` and `skin-legacy.less` are moved into the specific folders and a third, `common.less` entry file is created that contains the common imports for both old and new Vector. Aliases have been added to the Storybook Webpack config to avoid adding the story file changes to this patch. Images coming from CSS `url()`'s have also been temporarily disabled in Storybook until Storybook can be upgraded to use Webpack 5, and use array values for aliases, in a follow-up patch. This patch also slightly changes a footer layout specific rule so that existing `padding` remains unchanged in rendering due to new common and component structure. Bug: T264309 Change-Id: I1cd2681a2b61edb7be56c38f9bb3994827d7e322
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;
|
|
}
|