mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-29 01:45:00 +00:00
68239ae344
Changes: - mw-ui-button to cdx-button - mw-ui-quiet to cdx-button--weight-quiet - mw-ui-icon-element to cdx-button--icon-only - mw-ui-icon to vector-icon - mw-ui-icon-flush-right/left to vector-button-flush-right/left - Removes $isSmallIcon param in Hooks.php 85 Visual Changes - ~36 changes from minor pixel changes from the new button classes in the main menu, language button - 22 from standardizing the padding of the TOC in page title - ~10 changes from addition of .cdx-button to the TOC toggle buttons PERFORMANCE: This will result in an overall increase of 2.7kb of render blocking CSS, 1kb will be reclaimed when I6c1ed1523df8cc9e2f2ca09506f12a595b8b013d is merged. Co-author: Bernard Wang <bwang@wikimedia.org> Bug: T336526 Change-Id: Ibd558238a41a0d3edb981e441638f9564f43d226
135 lines
3.4 KiB
Plaintext
135 lines
3.4 KiB
Plaintext
/**
|
|
* Checkbox hack used by collapsed TOC on narrow viewports for no JS users.
|
|
* Although it's display:none, the :checked state is still affected when clicking
|
|
* the associated label.
|
|
*/
|
|
#vector-toc-collapsed-checkbox {
|
|
display: none;
|
|
}
|
|
|
|
.vector-toc {
|
|
.vector-pinnable-header {
|
|
padding-left: @toc-list-item-padding-start;
|
|
}
|
|
|
|
.vector-toc-numb {
|
|
display: none;
|
|
}
|
|
|
|
.vector-toc-toggle {
|
|
// For no-js users, toggling is disabled and icon is hidden
|
|
display: none;
|
|
transition: @transition-duration-base;
|
|
position: absolute;
|
|
left: -@size-toc-subsection-toggle/2;
|
|
// Visual centering.
|
|
top: 1px;
|
|
// Override .cdx-button styles
|
|
min-width: @size-toc-subsection-toggle; // ~22px @ 12
|
|
min-height: @size-toc-subsection-toggle;
|
|
padding: 0;
|
|
// FIXME: Remove the following styles after cached HTML
|
|
cursor: pointer;
|
|
font-size: @size-toc-subsection-toggle-icon;
|
|
}
|
|
|
|
.vector-toc-link {
|
|
display: block;
|
|
word-break: break-word;
|
|
color: @color-link;
|
|
}
|
|
|
|
// Highlight and bold active sections, active top sections that are unexpanded
|
|
// and active top sections that are the only active element.
|
|
.vector-toc-list-item-active,
|
|
.vector-toc-level-1-active:not( .vector-toc-list-item-expanded ),
|
|
.vector-toc-list-item-active.vector-toc-level-1-active {
|
|
> .vector-toc-link {
|
|
// Highlight active section
|
|
color: @color-base;
|
|
font-weight: bold;
|
|
|
|
.vector-toc-text {
|
|
// Increase width to prevent line wrapping due to bold text
|
|
// Avoid applying on link element to avoid focus indicator changing size
|
|
width: ~'calc( 100% + @{padding-horizontal-dropdown-menu} )';
|
|
}
|
|
}
|
|
}
|
|
|
|
// Highlight active top sections that contain an active section
|
|
.vector-toc-level-1-active:not( .vector-toc-list-item-active ) > .vector-toc-link {
|
|
color: @color-base;
|
|
}
|
|
|
|
.vector-toc-text {
|
|
// Match .mixin-vector-dropdown-menu-item() vertical padding
|
|
padding: @padding-vertical-dropdown-menu-item 0;
|
|
}
|
|
|
|
.vector-toc-contents,
|
|
.vector-toc-list {
|
|
margin: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.vector-toc-list-item {
|
|
position: relative;
|
|
list-style-type: none;
|
|
padding-left: @toc-list-item-padding-start;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
// Collapse ToC sections by default, excluding no-js
|
|
&.client-js .vector-toc {
|
|
.vector-toc-level-1 .vector-toc-list-item {
|
|
display: none;
|
|
}
|
|
|
|
.vector-toc-level-1.vector-toc-list-item-expanded .vector-toc-list-item {
|
|
display: block;
|
|
}
|
|
|
|
.vector-toc-toggle {
|
|
display: block;
|
|
}
|
|
|
|
.vector-toc-level-1.vector-toc-list-item-expanded .vector-toc-toggle {
|
|
transform: rotate( 0deg );
|
|
}
|
|
}
|
|
|
|
&.client-js body.ltr .vector-toc .vector-toc-toggle {
|
|
transform: rotate( -90deg );
|
|
}
|
|
|
|
&.client-js body.rtl .vector-toc .vector-toc-toggle {
|
|
transform: rotate( 90deg );
|
|
}
|
|
|
|
// Ensure there is only 1 table of contents landmark at anytime
|
|
.vector-toc-landmark {
|
|
display: none;
|
|
}
|
|
|
|
&.vector-feature-toc-pinned-disabled body:not( .vector-sticky-header-visible ) .vector-page-titlebar,
|
|
&.vector-feature-toc-pinned-disabled .vector-sticky-header-visible .vector-sticky-header-context-bar,
|
|
&.vector-feature-toc-pinned-enabled .mw-page-container-inner {
|
|
> .vector-toc-landmark {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
// On smaller viewports the TOC will always be moved to the page titlebar via JS
|
|
// regardless of the TOC pinned classes
|
|
@media ( max-width: @max-width-tablet ) {
|
|
&.client-js .vector-page-titlebar .vector-toc-landmark {
|
|
display: block;
|
|
}
|
|
|
|
&.client-js .mw-table-of-contents-container.vector-toc-landmark {
|
|
display: none;
|
|
}
|
|
}
|