mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-26 00:25:40 +00:00
d949621eb2
Technical changes: - Increase @padding-horizontal-content to align content - Rename @padding-horizontal-page-container and @padding-horizontal-page-container-wide to @padding-horizontal-page-container-desktop and @padding-horizontal-page-container-desktop-wide respectively - Replace "gutter" grid area with column-gap - Clean up TOC styles Visual changes: - Below 1000px the header icons spacing is updated - Above 1000px the page titlebar and articlebar right space is updated Bug: T315261 Change-Id: I7f51ab3b9613c359db62e918051e942c5c6c878b
95 lines
2.5 KiB
Plaintext
95 lines
2.5 KiB
Plaintext
//
|
|
// Grid layout
|
|
//
|
|
|
|
// Makes a column span entire page
|
|
.mixin-column-full-width() {
|
|
grid-column: sidebar / content;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
// Needed for minimal content e.g. one word articles.
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
max-width: @max-width-content-container;
|
|
}
|
|
|
|
.mw-content-container {
|
|
max-width: @max-width-content-container;
|
|
|
|
// For container logic specific to special pages and history pages.
|
|
.skin-vector-disable-max-width & {
|
|
// Allow the max-width of content on history/special pages to be wider than
|
|
// the max-width of content on article pages.
|
|
// Note, we don't disable the max-width on .mw-article-toolbar-container intentionally
|
|
// to support easier navigation between tabs.
|
|
// See T293441 for further information on that.
|
|
// Both rules are !important as they are final. Max-width on a page should be restored by removing the `skin-vector-disable-max-width`,
|
|
// preferably by modification to the feature flag VectorMaxWidthOptions. Code should never attempt to override this rule.
|
|
/* stylelint-disable-next-line declaration-no-important */
|
|
max-width: none !important;
|
|
/* stylelint-disable-next-line declaration-no-important */
|
|
width: 100% !important;
|
|
}
|
|
}
|
|
|
|
@media ( min-width: @min-width-desktop ) {
|
|
.mw-page-container-inner {
|
|
display: grid;
|
|
width: 100%;
|
|
column-gap: 8px; // 8px + 12px (.mw-body padding-left) = 20px total spacing
|
|
grid-template: ~'min-content min-content min-content 1fr min-content / 232px minmax(0, 1fr)';
|
|
grid-template-areas: 'header header'
|
|
'sitenotice sitenotice'
|
|
'sidebar content'
|
|
'toc content'
|
|
'footer footer';
|
|
}
|
|
|
|
// FIXME: Remove selector after I39959f43f20880e83bef945a7535d58cfe0b6412 has been in prod for a week
|
|
.mw-page-container-inner > #siteNotice,
|
|
.vector-sitenotice-container {
|
|
grid-area: sitenotice;
|
|
}
|
|
|
|
.mw-table-of-contents-container {
|
|
grid-area: toc;
|
|
}
|
|
|
|
.mw-header {
|
|
grid-area: header;
|
|
}
|
|
|
|
.vector-sidebar-container {
|
|
grid-area: sidebar;
|
|
}
|
|
|
|
.mw-content-container {
|
|
grid-area: content;
|
|
}
|
|
|
|
.mw-footer-container {
|
|
grid-area: footer;
|
|
}
|
|
}
|
|
|
|
@media ( min-width: @min-width-desktop-wide ) {
|
|
.mw-page-container-inner {
|
|
/* Use of minmax is important to restrict the maximum grid column width
|
|
more information: T314756 */
|
|
grid-template-columns: ~'284px minmax(0, 1fr)';
|
|
}
|
|
}
|
|
|
|
@{selector-sidebar-no-toc-sidebar-closed} {
|
|
& ~ .mw-content-container {
|
|
.mixin-column-full-width();
|
|
}
|
|
}
|
|
|
|
.vector-toc-collapsed @{selector-main-menu-closed} {
|
|
& ~ .mw-content-container,
|
|
& ~ .mw-table-of-contents-container {
|
|
.mixin-column-full-width();
|
|
}
|
|
}
|