2022-04-19 02:46:40 +00:00
|
|
|
@width-bounce-dot: 12px;
|
|
|
|
|
2021-06-21 17:49:47 +00:00
|
|
|
.tabber {
|
2021-06-21 18:45:06 +00:00
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
/* establish primary containing box */
|
|
|
|
overflow: hidden;
|
|
|
|
flex-direction: column;
|
|
|
|
|
2021-06-21 23:46:17 +00:00
|
|
|
&__tabs {
|
2021-06-21 18:45:06 +00:00
|
|
|
display: flex;
|
|
|
|
overflow: auto hidden;
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__section {
|
|
|
|
display: grid;
|
|
|
|
overflow: hidden;
|
|
|
|
block-size: 100%;
|
|
|
|
grid-auto-columns: 100%;
|
|
|
|
grid-auto-flow: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
/* defend against <section> needing 100% */
|
|
|
|
flex-shrink: 0;
|
2022-04-19 14:53:08 +00:00
|
|
|
box-shadow: inset 0 -1px 0 0 #a2a9b1;
|
2021-06-21 18:45:06 +00:00
|
|
|
/* fixes cross browser quarks */
|
|
|
|
min-block-size: fit-content;
|
|
|
|
|
|
|
|
&__prev {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__next {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__prev,
|
|
|
|
&__next {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
display: none;
|
|
|
|
width: 20px;
|
2021-06-22 00:37:28 +00:00
|
|
|
border-radius: 4px;
|
2021-06-21 18:45:06 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: inherit;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 14px;
|
|
|
|
content: '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-21 23:46:17 +00:00
|
|
|
&--prev-visible .tabber__tabs {
|
2021-06-21 18:45:06 +00:00
|
|
|
-webkit-mask-image: linear-gradient( 90deg, transparent, #000 20% );
|
|
|
|
mask-image: linear-gradient( 90deg, transparent, #000 20% );
|
|
|
|
}
|
|
|
|
|
2021-06-21 23:46:17 +00:00
|
|
|
&--next-visible .tabber__tabs {
|
2021-06-21 18:45:06 +00:00
|
|
|
-webkit-mask-image: linear-gradient( 90deg, #000 80%, transparent );
|
|
|
|
mask-image: linear-gradient( 90deg, #000 80%, transparent );
|
|
|
|
}
|
|
|
|
|
2021-06-21 23:46:17 +00:00
|
|
|
&--prev-visible.tabber__header--next-visible .tabber__tabs {
|
2021-06-21 18:45:06 +00:00
|
|
|
-webkit-mask-image: linear-gradient( 90deg, transparent, #000 20%, #000 80%, transparent );
|
|
|
|
mask-image: linear-gradient( 90deg, transparent, #000 20%, #000 80%, transparent );
|
|
|
|
}
|
|
|
|
|
|
|
|
&--prev-visible .tabber__header__prev,
|
|
|
|
&--next-visible .tabber__header__next {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__header,
|
|
|
|
&__section {
|
|
|
|
/* prevent scroll chaining on x scroll */
|
|
|
|
overscroll-behavior-x: contain;
|
|
|
|
/* scrolling should snap children on x */
|
|
|
|
scroll-snap-type: x mandatory;
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-21 23:46:17 +00:00
|
|
|
&__tab {
|
2021-06-21 18:45:06 +00:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
2022-04-19 14:53:08 +00:00
|
|
|
padding: 8px 12px;
|
2021-06-21 18:45:06 +00:00
|
|
|
color: #54595d;
|
|
|
|
font-weight: bold;
|
|
|
|
scroll-snap-align: start;
|
|
|
|
text-decoration: none;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
&:visited {
|
|
|
|
color: #54595d;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--active,
|
|
|
|
&--active:visited {
|
|
|
|
box-shadow: inset 0 -2px 0 0 #36c;
|
|
|
|
color: #36c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__panel {
|
2022-04-19 22:31:28 +00:00
|
|
|
height: max-content;
|
2022-04-19 14:36:38 +00:00
|
|
|
|
|
|
|
// Hide edit buttons for non-transclusion tabs since they don't work
|
|
|
|
/* stylelint-disable-next-line selector-class-pattern */
|
|
|
|
&:not( [ data-tabber-page-title ] ) .mw-editsection {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-06-21 18:45:06 +00:00
|
|
|
}
|
2022-04-19 02:46:40 +00:00
|
|
|
|
|
|
|
&__transclusion {
|
|
|
|
/*
|
|
|
|
* Animation based on dots indicators from Wikimedia
|
|
|
|
* T266028
|
|
|
|
*/
|
|
|
|
&--loading {
|
|
|
|
margin: 0.5em 0; // based on Vector
|
|
|
|
text-align: center;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
.tabber__loading-indicator,
|
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
display: inline-block;
|
|
|
|
width: @width-bounce-dot;
|
|
|
|
height: @width-bounce-dot;
|
|
|
|
animation: bounce-delay 1600ms infinite ease-in-out both;
|
|
|
|
animation-delay: -160ms;
|
|
|
|
background-color: #36c;
|
|
|
|
border-radius: 100%;
|
|
|
|
content: '';
|
|
|
|
}
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
margin-right: @width-bounce-dot / 4;
|
|
|
|
animation-delay: -330ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
margin-left: @width-bounce-dot / 4;
|
|
|
|
animation-delay: 0ms;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Animations
|
|
|
|
@keyframes bounce-delay {
|
|
|
|
0%,
|
|
|
|
50%,
|
|
|
|
100% {
|
|
|
|
transform: scale( 0.625 );
|
|
|
|
}
|
|
|
|
|
|
|
|
20% {
|
|
|
|
opacity: 0.87;
|
|
|
|
transform: scale( 1 );
|
|
|
|
}
|
2021-06-21 17:49:47 +00:00
|
|
|
}
|
|
|
|
|
2022-04-19 20:34:04 +00:00
|
|
|
@media ( hover: none ) {
|
|
|
|
// Need extra specificity to override
|
|
|
|
.tabber {
|
|
|
|
.tabber__header {
|
|
|
|
&__prev,
|
|
|
|
&__next {
|
|
|
|
pointer-events: none; // Disable arrow button
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
background-image: none; // Remove arrow icon
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-21 18:45:06 +00:00
|
|
|
@media ( hover: hover ) {
|
|
|
|
.tabber {
|
2021-06-21 23:46:17 +00:00
|
|
|
&__tab {
|
2021-06-21 18:45:06 +00:00
|
|
|
&:hover {
|
|
|
|
box-shadow: inset 0 -2px 0 0 #447ff5;
|
|
|
|
color: #447ff5;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
box-shadow: inset 0 -2px 0 0 #2a4b8d;
|
|
|
|
color: #2a4b8d;
|
|
|
|
}
|
|
|
|
}
|
2021-06-22 00:37:28 +00:00
|
|
|
|
|
|
|
&__header {
|
|
|
|
&__prev,
|
|
|
|
&__next {
|
|
|
|
&:hover {
|
|
|
|
background-color: rgba( 0, 24, 73, 0.03 );
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background-color: rgba( 0, 24, 73, 0.05 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-21 18:45:06 +00:00
|
|
|
}
|
2021-06-21 17:49:47 +00:00
|
|
|
}
|
|
|
|
|
2021-06-21 22:48:56 +00:00
|
|
|
// Smooth scrolling through a large number of panels hurt performance on mobile
|
|
|
|
// Also it will trigger unnessecary lazyloading as lazyload content show up momentarily
|
|
|
|
@media ( prefers-reduced-motion: no-preference ) and ( min-width: 720px ) {
|
2021-06-21 18:45:06 +00:00
|
|
|
.tabber {
|
|
|
|
&__header,
|
|
|
|
&__section,
|
2021-06-21 23:46:17 +00:00
|
|
|
&__tabs {
|
2021-06-21 18:45:06 +00:00
|
|
|
scroll-behavior: smooth;
|
|
|
|
}
|
|
|
|
}
|
2021-06-21 17:49:47 +00:00
|
|
|
}
|