No edit summary Tag: Manual revert |
No edit summary |
||
Line 9: | Line 9: | ||
.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)); | ||
} | } | ||
Line 26: | Line 26: | ||
padding: 0; | padding: 0; | ||
min-width: auto; | min-width: auto; | ||
width: var( --fixed-menu-width ); | width: var(--fixed-menu-width); | ||
max-height: none; | max-height: none; | ||
border-right: 1px solid var( --border-color-base ); | border-right: 1px solid var(--border-color-base); | ||
border-radius: 0; | border-radius: 0; | ||
background-color: var( --color-surface-0 ); | background-color: var(--color-surface-0); | ||
box-shadow: none; | box-shadow: none; | ||
/* Force drawer to show */ | /* Force drawer to show */ | ||
Line 37: | Line 37: | ||
transform: none !important; | transform: none !important; | ||
visibility: visible !important; | visibility: visible !important; | ||
left:56px; | left: 56px; | ||
} | } | ||
Line 46: | Line 46: | ||
.citizen-drawer__header { | .citizen-drawer__header { | ||
padding-left: var( --space-xl ); | padding-left: var(--space-xl); | ||
padding-right: var( --space-xl ); | padding-right: var(--space-xl); | ||
} | } | ||
Line 55: | Line 55: | ||
} | } | ||
.citizen-drawer__siteinfo | .citizen-drawer__siteinfo .mw-logo-wordmark { | ||
font-size: 1.25rem; | font-size: 1.25rem; | ||
} | } | ||
Line 70: | Line 70: | ||
.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; | ||
} | |||
/* Adjust main content to account for fixed sidebar */ | |||
.citizen-page-content { | |||
margin-left: -10%; | |||
} | } | ||
} | } |
Revision as of 07:58, 19 May 2024
/* All CSS here will be loaded for users of the Citizen skin */ /* Make drawer always visible > 1300px */ @media screen and ( min-width: 1300px ) { :root { --fixed-menu-width: 240px; } .citizen-page-container { /* Reserve space for drawer */ margin-left: calc(var(--header-size) + var(--fixed-menu-width)); } .citizen-drawer__button { /* Hide drawer button */ display: none; } .citizen-drawer__card { bottom: 0; /* Put drawer behind other header cards */ z-index: -1; margin: 0; /* Compensate header border */ margin-left: 1px; padding: 0; min-width: auto; width: var(--fixed-menu-width); max-height: none; border-right: 1px solid var(--border-color-base); border-radius: 0; background-color: var(--color-surface-0); box-shadow: none; /* Force drawer to show */ opacity: 1 !important; pointer-events: auto !important; transform: none !important; visibility: visible !important; left: 56px; } .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-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; } /* Adjust main content to account for fixed sidebar */ .citizen-page-content { margin-left: -10%; } }