mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-26 00:25:40 +00:00
0440eeada4
Per T318169#8601576, the space between the top of the TOC and Page tools to the top of the viewport or bottom of the sticky header should be 30px. * Revises the page tools columnEnd grid to begin at the top of the titlebar to enable 30px of top padding on the page tools * Consolidates some styles in TableOfContentsPinned.less VISUAL CHANGE: table of contents moves down page. Bug: T318169 Bug: T319315 Change-Id: If8d8f87942d6265461b1a1a8ccf1c447d6e8b0d6
57 lines
1.6 KiB
Plaintext
57 lines
1.6 KiB
Plaintext
@import '../../common/variables.less';
|
|
@import '../../common/mixins.less';
|
|
|
|
// Ensure there is only 1 page tools landmark at anytime
|
|
.vector-page-tools-landmark {
|
|
.vector-feature-page-tools-pinned-enabled .vector-page-toolbar-container &,
|
|
.vector-feature-page-tools-pinned-disabled .vector-column-end & {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.vector-column-end {
|
|
// T327460: Prevent subpixel rendering issues associated with the text and Chrome.
|
|
contain: paint;
|
|
|
|
.vector-page-tools-landmark {
|
|
// stylelint-disable-next-line plugin/no-unsupported-browser-features
|
|
position: sticky;
|
|
top: 0;
|
|
margin-top: @margin-top-pinned-page-tools;
|
|
}
|
|
}
|
|
|
|
.vector-page-tools {
|
|
#vector-page-tools-pinned-container & {
|
|
width: 140px;
|
|
// Match spacing of TOC and main menu
|
|
margin-left: @padding-horizontal-dropdown-menu-item;
|
|
max-height: ~'calc( 100vh - @{max-height-bottom-spacing-scroll-indicator} )';
|
|
overflow-y: auto;
|
|
box-sizing: border-box;
|
|
padding-top: @padding-top-pinned-element;
|
|
// Add fade indicator.
|
|
.mixin-vector-scroll-indicator();
|
|
}
|
|
}
|
|
|
|
// FIXME: Remove the following selector when page tools feature is on by default, needed for LegacyMoreDropdown
|
|
.vector-feature-page-tools-disabled .vector-page-tools-landmark,
|
|
.vector-page-tools {
|
|
// Ensure collapsible items are visible on lower resolutions
|
|
.vector-more-collapsible-item {
|
|
display: block;
|
|
|
|
@media ( min-width: @min-width-tablet ) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
// Make sure pcactions is displayed on lower resolutions (even if .emptyPortlet present)
|
|
.vector-has-collapsible-items {
|
|
@media ( max-width: @max-width-mobile ) {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|