mediawiki-extensions-Tabber.../modules/ext.tabberNeue.init/ext.tabberNeue.init.less

104 lines
1.8 KiB
Plaintext
Raw Normal View History

.tabber {
position: relative;
overflow: hidden;
&__header {
box-shadow: inset 0 -1px 0 0 var( --border-color-base, #a2a9b1 );
2024-11-16 00:17:08 +00:00
&__prev,
&__next {
display: none;
}
}
&__tabs {
display: flex;
overflow-x: auto;
overflow-y: hidden;
}
&__tab {
padding: 0.5em 0.75em;
2024-11-16 00:29:58 +00:00
font-weight: bold;
white-space: nowrap;
2024-11-16 00:29:58 +00:00
&,
&:hover,
&:active,
&:focus {
text-decoration: none;
}
/* stylelint-disable-next-line no-descending-specificity */
&,
&:visited {
color: var( --color-base, #202122 );
}
&:hover {
@media ( hover: hover ) {
box-shadow: inset 0 -2px 0 0 var( --box-shadow-color-progressive-selected--hover, #447ff5 );
2024-11-16 00:29:58 +00:00
color: var( --color-progressive--hover, #447ff5 );
}
}
&:active {
@media ( hover: hover ) {
color: var( --color-progressive--active, #2a4b8d );
}
2024-05-25 19:29:56 +00:00
}
}
&__section {
display: grid;
overflow: hidden;
block-size: 100%;
grid-auto-columns: 100%;
grid-auto-flow: column;
scroll-snap-type: x mandatory;
}
&__panel {
height: max-content;
overflow-x: auto;
scroll-snap-align: start;
// Hide edit buttons for non-transclusion tabs since they don't work
/* stylelint-disable-next-line selector-class-pattern */
&:not( [ data-mw-tabber-page-title ] ) .mw-editsection {
display: none;
}
}
}
2024-11-16 00:29:58 +00:00
// Basic nojs support
/* stylelint-disable-next-line selector-class-pattern */
.client-nojs {
.tabber__panel {
height: auto;
scroll-padding-top: 3rem;
}
}
// Set tabber height to the height of first tabpanel by
// setting subsequent tabpanels to have 0 height
2024-11-16 00:29:58 +00:00
/* stylelint-disable-next-line selector-class-pattern */
.client-js {
.tabber {
&__tabs {
scrollbar-width: none;
&::-webkit-scrollbar {
width: 0;
height: 0;
}
}
&--init {
.tabber__panel ~ .tabber__panel {
height: 0;
}
}
}
}