Vorlage:Infobox drug/styles.css

Aus Das unsichtbare Imperium
Version vom 28. Januar 2025, 05:52 Uhr von Zeus (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „→‎{{pp-template}}: →‎A safe image background that works for almost all images in dark mode (via skin-theme-clientpref-night): @media screen { html.skin-theme-clientpref-night .dark_mode_safe img { background-color: var(--background-color-inverted, #f8f9fa); } } →‎A safe image background that works for almost all images in dark mode (via operating system opt-in): @media screen and (prefers-color-scheme: dark) { html.skin-theme-clientpref…“)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
/* {{pp-template}} */
/* A safe image background that works for almost all images in dark mode 
(via skin-theme-clientpref-night) */
@media screen {
	html.skin-theme-clientpref-night .dark_mode_safe img { 
		background-color: var(--background-color-inverted, #f8f9fa); 
	}
}

/* A safe image background that works for almost all images in dark mode 
(via operating system opt-in) */
@media screen and (prefers-color-scheme: dark) {
	html.skin-theme-clientpref-os .dark_mode_safe img {  
		background-color: var(--background-color-inverted, #f8f9fa); 
	}
}