MediaWiki:Tabbers.css: Difference between revisions

From Coral Island Wiki
Jump to navigation Jump to search
(Created page with ".custom-tabber > .pi-media-collection-tabs { display: flex; flex-direction: row; width: 100%; flex-wrap: wrap; margin-left: 0 !important; justify-content: left; } .custom-tabber > .pi-media-collection-tabs > .pi-tab-link { flex-grow: unset; padding: 5px 10px; } .custom-tabber > .pi-media-collection-tabs > .pi-tab-link.current { border-bottom: 2px solid; background: none; } .custom-tabber > .pi-media-collection-tab-content.current { overflow: auto clip; }")
 
No edit summary
 
Line 9: Line 9:
.custom-tabber > .pi-media-collection-tabs > .pi-tab-link {
.custom-tabber > .pi-media-collection-tabs > .pi-tab-link {
flex-grow: unset;
flex-grow: unset;
padding: 5px 10px;
padding: 5px 12px;
}
}


.custom-tabber > .pi-media-collection-tabs > .pi-tab-link.current {
.custom-tabber > .pi-media-collection-tabs > .pi-tab-link.current {
border-bottom: 2px solid;
border-bottom: 4px solid var(--brown-300);
background: none;
    color: var(--brown-800);
    font-weight: 700;
    background-color: var(--brown-050);
    border-radius: 6px;
}
}
.custom-tabber > .pi-media-collection-tab-content.current {
.custom-tabber > .pi-media-collection-tab-content.current {
overflow: auto clip;
overflow: auto clip;
}
}

Latest revision as of 03:41, 14 January 2024

.custom-tabber > .pi-media-collection-tabs {
	display: flex;
	flex-direction: row;
	width: 100%;
	flex-wrap: wrap;
	margin-left: 0 !important;
	justify-content: left;
}
.custom-tabber > .pi-media-collection-tabs > .pi-tab-link {
	flex-grow: unset;
	padding: 5px 12px;
}

.custom-tabber > .pi-media-collection-tabs > .pi-tab-link.current {
	border-bottom: 4px solid var(--brown-300);
    color: var(--brown-800);
    font-weight: 700;
    background-color: var(--brown-050);
    border-radius: 6px;
}
.custom-tabber > .pi-media-collection-tab-content.current {
	overflow: auto clip;
}