Jump to content

Template:If dark/styles.css

From Wikipedia, the free encyclopedia
/* this should be the fallback */
html:not(.skin-theme-clientpref-night) .ifdark > .dark {
    display: none;
}

html.skin-theme-clientpref-night .ifdark > .nodark {
    display: none;
}

@media screen and (prefers-color-scheme: dark) {
	html.skin-theme-clientpref-os .ifdark > .nodark {
	    display: none;
	}
	
	html.skin-theme-clientpref-os .ifdark > .dark {
	    display: inherit; /* fallback */
	    display: initial;
	}
}

@media screen and (prefers-color-scheme: light) {
	html.skin-theme-clientpref-os .ifdark > .dark {
	    display: none;
	}
}