Module:Location map/styles.css: Difference between revisions

Content deleted Content added
m Protected "Module:Location map/styles.css": Highly visible template: match parent ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite))
per tper
 
(8 intermediate revisions by 2 users not shown)
Line 49:
padding: 1px;
float: left;
}
 
/* Dark mode theme: */
 
@media screen {
html.skin-theme-clientpref-night .od,
html.skin-theme-clientpref-night .od .pv > div,
html.skin-theme-clientpref-night .od .pl > div,
html.skin-theme-clientpref-night .od .pr > div {
/* Use !important to override any infobox rules */
background: #fff !important;
color: #000 !important;
}
 
html.skin-theme-clientpref-night .locmap img {
filter: grayscale(0.6);
}
 
/* Special handling for maps inside infoboxes
* [[Module talk:Location map#Map label background bug in dark mode]]
*/
html.skin-theme-clientpref-night .infobox-full-data .locmap div {
background: transparent !important;
}
}
 
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .locmap img {
filter: grayscale(0.6);
}
html.skin-theme-clientpref-os .od,
html.skin-theme-clientpref-os .od .pv > div,
html.skin-theme-clientpref-os .od .pl > div,
html.skin-theme-clientpref-os .od .pr > div {
/* Use !important to override any infobox rules */
background: white !important;
color: #000 !important;
}
 
html.skin-theme-clientpref-os .infobox-full-data .locmap div {
background: transparent !important;
}
}