|
|
Line 1: |
Line 1: |
| /* 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:60px;
| |
| }
| |
|
| |
| .citizen-drawer__card > * {
| |
| /* Force drawer content to show */
| |
| opacity: 1 !important;
| |
| background-color: #1D1D1D;
| |
| }
| |
|
| |
|
| .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;
| |
| }
| |
| }
| |
|
| |
| /* Tweak header icon to work better with primary color header */
| |
| .citizen-header__buttonIcon,
| |
| .citizen-header__button .citizen-ui-icon:before,
| |
| #pt-notifications-alert .mw-echo-notifications-badge,
| |
| #pt-notifications-notice .mw-echo-notifications-badge {
| |
| /* Make icon always solid */
| |
| --opacity-icon-base: 1;
| |
| /* Make icon always white */
| |
| filter: invert( 1 ) hue-rotate( 180deg ) !important;
| |
| }
| |
|
| |
| /* Remove filter from logo in footer*/
| |
| #footer-sitetitle img.mw-logo-wordmark {
| |
| filter: none !important;
| |
| max-height: 130px;
| |
| }
| |
|
| |
| /* Template styles */
| |
| .navbox-subheader {
| |
| background-color: #1D1D1D;
| |
| }
| |
|
| |
| .infobox-new {
| |
| border: 1px solid var( --border-color-base ) !important;
| |
| }
| |
|
| |
| .infobox-new td {
| |
| border-bottom: 1px solid var( --border-color-base );
| |
| }
| |
|
| |
| .skin-citizen-dark .external-link-rcdb {
| |
| filter: invert( 1 );
| |
| }
| |
| .skin-citizen-dark .box-blue,
| |
| .skin-citizen-dark .box-purple,
| |
| .skin-citizen-dark .box-red,
| |
| .skin-citizen-dark .box-yellow,
| |
| .skin-citizen-dark .box-green,
| |
| .skin-citizen-dark .box-grey,
| |
| .skin-citizen-dark .main-page-box {
| |
| background: none !important;
| |
| }
| |
|
| |
| .table-unknown,
| |
| .table-na,
| |
| #elementbox,
| |
| .infobox-new,
| |
| .cp-navbox,
| |
| .double-image {
| |
| background-color: var( --color-surface-2 ) !important;
| |
| }
| |
| a {
| |
| /* Make links Orange */
| |
| --color-link: #ffa500;
| |
| }
| |
| html, body {
| |
| background: #1D1D1D;
| |
| }
| |
| .citizen-footer {
| |
| background-color: #1D1D1D;
| |
| border-top: 1px solid var(--border-color-base);
| |
| }
| |
| .citizen-drawer__card {
| |
| background-color: #1D1D1D;
| |
| }
| |
| .citizen-header {
| |
| background-color: #1D1D1D;
| |
| }
| |
| .citizen-menu__heading {
| |
| color: #EDF4F5;
| |
| }
| |
| .citizen-menu .mw-list-item a {
| |
| color: #ffa500;
| |
| }
| |
| .citizen-body-header--sticky .mw-body-header::before {
| |
| background-color: #1D1D1D;
| |
| }
| |