Jump to content

MediaWiki:Common.css: Difference between revisions

From SA Docs
Created page with "CSS placed here will be applied to all skins: Remove gray filter/dimming from images in Vector 2022 dark mode: html.skin-theme-client-night .mw-page-container img, html.skin-theme-client-night .mw-page-container video { filter: none !important; }"
 
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
img {
/* Remove gray filter/dimming from images in Vector 2022 dark mode */
html.skin-theme-client-night .mw-page-container img,
html.skin-theme-client-night .mw-page-container video {
     filter: none !important;
     filter: none !important;
    background-color: transparent !important;
}
.thumbinner {
    filter: none !important;
    background-color: transparent !important;
}
}

Latest revision as of 04:02, 11 March 2026

img {
    filter: none !important;
    background-color: transparent !important;
}

.thumbinner {
    filter: none !important;
    background-color: transparent !important;
}