MediaWiki:Citizen.css: Difference between revisions
MediaWiki interface page
More actions
Technofied (talk | contribs) m Restore visibility to TOC now that it's restored (in theory) |
Technofied (talk | contribs) Update drawer |
||
| Line 1: | Line 1: | ||
/* All CSS here will be loaded for users of the Citizen skin */ | /* All CSS here will be loaded for users of the Citizen skin */ | ||
/* Make sidebar persist */ | /* Make sidebar persist */ | ||
/* Many thanks to Coasterpedia */ | /* Many thanks to Coasterpedia */ | ||
@media screen and ( min-width: 1120px ) { | |||
@media screen and ( min-width: | |||
:root { | :root { | ||
--fixed-menu-width: 240px; | --fixed-menu-width: 240px; | ||
} | } | ||
.citizen-page-container { | .citizen-page-container { | ||
/* Reserve space for drawer */ | /* Reserve space for drawer */ | ||
margin-left: calc( var( --header-size ) + var( --fixed-menu-width ) ); | margin-left: calc( var( --header-size ) + var( --fixed-menu-width ) ); | ||
padding-inline: 0 !important; | |||
} | } | ||
.citizen-drawer .citizen-dropdown-details { | .citizen-drawer .citizen-dropdown-details { | ||
/* Hide drawer button */ | /* Hide drawer button */ | ||
display: none; | display: none; | ||
} | } | ||
.citizen-dropdown .citizen-menu__card, | |||
.citizen-dropdown .citizen-menu__card .citizen-ui-icon { | |||
content-visibility: visible; | |||
} | |||
.citizen-drawer__card { | .citizen-drawer__card { | ||
bottom: 0; | bottom: 0; | ||
/* Put drawer behind other header cards */ | /* Put drawer behind other header cards */ | ||
z-index: -1; | z-index: -1 !important; | ||
margin: 0; | margin: 0; | ||
/* Compensate header border */ | /* Compensate header border */ | ||
margin-left: 1px; | margin-left: 1px; | ||
padding: 0; | padding: 0; | ||
min-width: auto; | min-width: auto !important; | ||
width: var( --fixed-menu-width ); | width: var( --fixed-menu-width ); | ||
max-height: none; | max-height: none; | ||
border: 0; | |||
border-right: 1px solid var( --border-color-base ); | border-right: 1px solid var( --border-color-base ); | ||
border-radius: 0; | border-radius: 0; | ||
| Line 36: | Line 40: | ||
box-shadow: none; | box-shadow: none; | ||
/* Force drawer to show */ | /* Force drawer to show */ | ||
clip-path: none !important; | |||
content-visibility: visible !important; | |||
opacity: 1 !important; | opacity: 1 !important; | ||
pointer-events: auto !important; | pointer-events: auto !important; | ||
transform: none !important; | transform: none !important; | ||
visibility: visible !important; | visibility: visible !important; | ||
left:56px; | left: 56px; | ||
overflow-x: hidden; | |||
overflow-y: auto; | |||
} | } | ||
.citizen-drawer__card > * { | .citizen-drawer__card > * { | ||
/* Force drawer content to show */ | /* Force drawer content to show */ | ||
| Line 51: | Line 59: | ||
padding-left: var( --space-xl ); | padding-left: var( --space-xl ); | ||
padding-right: var( --space-xl ); | padding-right: var( --space-xl ); | ||
} | |||
.citizen-sticky-header-container { | |||
margin-left: calc( var( --header-size ) + var( --fixed-menu-width ) ); | |||
} | } | ||
| Line 58: | Line 70: | ||
} | } | ||
.citizen-drawer__siteinfo | .citizen-drawer__siteinfo .mw-logo-wordmark { | ||
font-size: 1.25rem; | font-size: 1.25rem; | ||
} | } | ||
| Line 71: | Line 83: | ||
display: none; | display: none; | ||
} | } | ||
.citizen-drawer__menu { | .citizen-drawer__menu { | ||
padding-left: var( --space-xs ); | padding-left: var( --space-xs ); | ||
padding-right: var( --space-xs ); | padding-right: var( --space-xs ); | ||
grid-template-columns: 1fr; | grid-template-columns: 1fr; | ||
} | |||
.citizen-toc-enabled { | |||
--width-page: calc( var( --width-layout ) + var( --space-lg ) ); | |||
} | } | ||
} | } | ||
Latest revision as of 03:59, 20 August 2026
/* All CSS here will be loaded for users of the Citizen skin */
/* Make sidebar persist */
/* Many thanks to Coasterpedia */
@media screen and ( min-width: 1120px ) {
:root {
--fixed-menu-width: 240px;
}
.citizen-page-container {
/* Reserve space for drawer */
margin-left: calc( var( --header-size ) + var( --fixed-menu-width ) );
padding-inline: 0 !important;
}
.citizen-drawer .citizen-dropdown-details {
/* Hide drawer button */
display: none;
}
.citizen-dropdown .citizen-menu__card,
.citizen-dropdown .citizen-menu__card .citizen-ui-icon {
content-visibility: visible;
}
.citizen-drawer__card {
bottom: 0;
/* Put drawer behind other header cards */
z-index: -1 !important;
margin: 0;
/* Compensate header border */
margin-left: 1px;
padding: 0;
min-width: auto !important;
width: var( --fixed-menu-width );
max-height: none;
border: 0;
border-right: 1px solid var( --border-color-base );
border-radius: 0;
background-color: var( --color-surface-0 );
box-shadow: none;
/* Force drawer to show */
clip-path: none !important;
content-visibility: visible !important;
opacity: 1 !important;
pointer-events: auto !important;
transform: none !important;
visibility: visible !important;
left: 56px;
overflow-x: hidden;
overflow-y: auto;
}
.citizen-drawer__card > * {
/* Force drawer content to show */
opacity: 1 !important;
}
.citizen-drawer__header {
padding-left: var( --space-xl );
padding-right: var( --space-xl );
}
.citizen-sticky-header-container {
margin-left: calc( var( --header-size ) + var( --fixed-menu-width ) );
}
.citizen-drawer__logo {
/* Hide drawer header logo */
display: none;
}
.citizen-drawer__siteinfo .mw-logo-wordmark {
font-size: 1.25rem;
}
.citizen-siteStats {
font-size: 0.8125rem;
}
#citizen-siteStats__item--images,
#citizen-siteStats__item--users {
/* Hide image and user stats to make space */
display: none;
}
.citizen-drawer__menu {
padding-left: var( --space-xs );
padding-right: var( --space-xs );
grid-template-columns: 1fr;
}
.citizen-toc-enabled {
--width-page: calc( var( --width-layout ) + var( --space-lg ) );
}
}
.permissions-errors {
list-style: none;
margin: 0;
}
.permissions-errors li {
margin-bottom: 1em;
}
#citizen-sidebar-lastmod {
display: none;
}