More actions
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> and <kroki> 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) {
/*:is(.poncho-dark-mode, .skin-citizen-dark) .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) {
/* .skin-citizen-auto .mw-kroki * {*/
filter: hue-rotate(180deg) invert(1);
}
}
/* END: Dark Mode Maths */
/* BEGIN: Disable site subtitles */
#siteSub {
display: none;
}
/* END: Disable site subtitles */