Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
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 */


/* Citizen dark mode: swap header logo without touching LocalSettings.php */
/* HEADER LOGO */
html.skin-citizen-dark .citizen-header__logo .mw-logo-icon {
html.skin-theme-clientpref-night .citizen-header__logo .mw-logo-icon {
   display: none !important;
   content: url("/images/5/5e/Repertoire-white.png") !important;
}
}


html.skin-citizen-dark .citizen-header__logo .mw-logo.citizen-header__button {
/* SIDEBAR LOGO (drawer) */
   position: relative;
html.skin-theme-clientpref-night .citizen-drawer__logo .mw-logo-icon {
  display: inline-block;
   content: url("/images/5/5e/Repertoire-white.png") !important;
  width: 32px;  /* match your current img size */
  height: 32px;  /* match your current img size */
  padding: 0 !important;
  line-height: 0;
}
}


html.skin-citizen-dark .citizen-header__logo .mw-logo.citizen-header__button::before {
/* FOOTER LOGO */
   content: "";
html.skin-theme-clientpref-night .citizen-footer__sitetitle .mw-logo-icon {
  position: absolute;
   content: url("/images/5/5e/Repertoire-white.png") !important;
  inset: 0;
  background-image: url("/images/5/5e/Repertoire-white.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
}

Revision as of 01:11, 12 October 2025

/* All CSS here will be loaded for users of the Citizen skin */

/* HEADER LOGO */
html.skin-theme-clientpref-night .citizen-header__logo .mw-logo-icon {
  content: url("/images/5/5e/Repertoire-white.png") !important;
}

/* SIDEBAR LOGO (drawer) */
html.skin-theme-clientpref-night .citizen-drawer__logo .mw-logo-icon {
  content: url("/images/5/5e/Repertoire-white.png") !important;
}

/* FOOTER LOGO */
html.skin-theme-clientpref-night .citizen-footer__sitetitle .mw-logo-icon {
  content: url("/images/5/5e/Repertoire-white.png") !important;
}