2023-02-04 02:01:56 +00:00
|
|
|
@import '../../common/variables.less';
|
|
|
|
@import '../../common/mixins.less';
|
|
|
|
|
2022-11-08 19:55:23 +00:00
|
|
|
// Ensure there is only 1 page tools landmark at anytime
|
2023-04-24 22:57:35 +00:00
|
|
|
&.vector-feature-page-tools-pinned-enabled .vector-page-toolbar-container .vector-page-tools-landmark,
|
|
|
|
&.vector-feature-page-tools-pinned-disabled .vector-column-end .vector-page-tools-landmark {
|
2023-03-28 15:26:22 +00:00
|
|
|
display: none;
|
2022-11-28 21:08:40 +00:00
|
|
|
}
|
|
|
|
|
2023-02-04 02:01:56 +00:00
|
|
|
.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;
|
2023-02-09 22:50:25 +00:00
|
|
|
margin-top: @margin-top-pinned-page-tools;
|
2023-02-04 02:01:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-18 21:57:55 +00:00
|
|
|
#vector-page-tools-pinned-container .vector-page-tools {
|
|
|
|
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();
|
|
|
|
}
|
2022-11-08 19:55:23 +00:00
|
|
|
|
2023-04-18 21:57:55 +00:00
|
|
|
// Ensure collapsible items are visible on lower resolutions
|
|
|
|
.vector-page-tools .vector-more-collapsible-item {
|
|
|
|
display: block;
|
2022-11-28 21:08:40 +00:00
|
|
|
|
2023-04-18 21:57:55 +00:00
|
|
|
@media ( min-width: @min-width-tablet ) {
|
|
|
|
display: none;
|
2022-11-08 19:55:23 +00:00
|
|
|
}
|
2023-04-18 21:57:55 +00:00
|
|
|
}
|
2022-11-08 19:55:23 +00:00
|
|
|
|
2023-04-18 21:57:55 +00:00
|
|
|
// Make sure pcactions is displayed on lower resolutions (even if .emptyPortlet present)
|
|
|
|
.vector-page-tools .vector-has-collapsible-items {
|
|
|
|
@media ( max-width: @max-width-mobile ) {
|
|
|
|
display: block;
|
2022-11-08 19:55:23 +00:00
|
|
|
}
|
|
|
|
}
|