Toggle menu
122
332
11
3.4K
Information Rating System Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css

MediaWiki interface page
Revision as of 15:59, 19 August 2024 by Lem (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */

/* BEGIN: Dark Mode Maths */
/* Here we fix <math> tags for dark modes in Poncho and Citizen skins. */

:is(.poncho-dark-mode, .skin-citizen-dark) :is(.mwe-math-fallback-image-inline, .mwe-math-fallback-image-display, .mw-kroki) *
  {
    filter: hue-rotate(180deg) invert(1);
  }
  
@media (prefers-color-scheme: dark) { 
.skin-citizen-auto :is(.mwe-math-fallback-image-inline, .mwe-math-fallback-image-display) * {
    filter: hue-rotate(180deg) invert(1);
  }
}
/* END: Dark Mode Maths */

/* BEGIN: Disable site subtitles */
#siteSub {
    display: none;
}
/* END: Disable site subtitles */