MediaWiki:Common.css: Difference between revisions

From MakersLink
La till regler för temat för att följa light/dark mode för Utrustning info-ruta
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* --- Grundutseende (ljust, gäller alla skin som standard) --- */
/* --- Grundutseende (ljust, gäller alla skin) --- */
.infobox-mall {
table.infobox-mall {
border: solid 1px #AAAAAA;
border: solid 1px #AAAAAA;
background-color: #EEEEEE;
}
table.infobox-mall td,
table.infobox-mall th {
background-color: #EEEEEE;
background-color: #EEEEEE;
color: #000000;
color: #000000;
border-color: #AAAAAA;
}
}
.infobox-mall-header {
table.infobox-mall th.infobox-mall-header {
background-color: #CCCCCC;
background-color: #CCCCCC;
text-align: center;
}
table.infobox-mall td.infobox-mall-label {
vertical-align: top;
}
}


/* --- Systemet är i mörkt läge (täcker Vector äldre, MonoBook, Timeless,
/* --- ENDAST Vector 2022 på "Automatiskt" + systemet i mörkt läge --- */
      samt Vector 2022 när temat står på "Automatiskt") --- */
@media (prefers-color-scheme: dark) {
@media (prefers-color-scheme: dark) {
.infobox-mall {
.skin-theme-clientpref-os table.infobox-mall {
border-color: #555555;
}
.skin-theme-clientpref-os table.infobox-mall td,
.skin-theme-clientpref-os table.infobox-mall th {
background-color: #2b2b2b;
background-color: #2b2b2b;
color: #e8e8e8;
color: #e8e8e8;
border-color: #555555;
border-color: #555555;
}
}
.infobox-mall-header {
.skin-theme-clientpref-os table.infobox-mall th.infobox-mall-header {
background-color: #3a3a3a;
background-color: #3a3a3a;
}
}
}
}


/* --- Vector 2022: användaren har manuellt tvingat "Mörkt",
/* --- Vector 2022: manuellt tvingat "Mörkt" --- */
      oavsett vad systemet säger --- */
.skin-theme-clientpref-night table.infobox-mall {
.skin-theme-clientpref-night .infobox-mall {
border-color: #555555;
}
.skin-theme-clientpref-night table.infobox-mall td,
.skin-theme-clientpref-night table.infobox-mall th {
background-color: #2b2b2b;
background-color: #2b2b2b;
color: #e8e8e8;
color: #e8e8e8;
border-color: #555555;
border-color: #555555;
}
}
.skin-theme-clientpref-night .infobox-mall-header {
.skin-theme-clientpref-night table.infobox-mall th.infobox-mall-header {
background-color: #3a3a3a;
background-color: #3a3a3a;
}
/* --- Vector 2022: användaren har manuellt tvingat "Ljust",
      oavsett vad systemet säger (vinner över media query pga högre specificitet) --- */
.skin-theme-clientpref-day .infobox-mall {
background-color: #EEEEEE;
color: #000000;
border-color: #AAAAAA;
}
.skin-theme-clientpref-day .infobox-mall-header {
background-color: #CCCCCC;
}
}

Latest revision as of 00:13, 26 August 2026

/* CSS placed here will be applied to all skins */
/* --- Grundutseende (ljust, gäller alla skin) --- */
table.infobox-mall {
	border: solid 1px #AAAAAA;
	background-color: #EEEEEE;
}
table.infobox-mall td,
table.infobox-mall th {
	background-color: #EEEEEE;
	color: #000000;
	border-color: #AAAAAA;
}
table.infobox-mall th.infobox-mall-header {
	background-color: #CCCCCC;
	text-align: center;
}
table.infobox-mall td.infobox-mall-label {
	vertical-align: top;
}

/* --- ENDAST Vector 2022 på "Automatiskt" + systemet i mörkt läge --- */
@media (prefers-color-scheme: dark) {
	.skin-theme-clientpref-os table.infobox-mall {
		border-color: #555555;
	}
	.skin-theme-clientpref-os table.infobox-mall td,
	.skin-theme-clientpref-os table.infobox-mall th {
		background-color: #2b2b2b;
		color: #e8e8e8;
		border-color: #555555;
	}
	.skin-theme-clientpref-os table.infobox-mall th.infobox-mall-header {
		background-color: #3a3a3a;
	}
}

/* --- Vector 2022: manuellt tvingat "Mörkt" --- */
.skin-theme-clientpref-night table.infobox-mall {
	border-color: #555555;
}
.skin-theme-clientpref-night table.infobox-mall td,
.skin-theme-clientpref-night table.infobox-mall th {
	background-color: #2b2b2b;
	color: #e8e8e8;
	border-color: #555555;
}
.skin-theme-clientpref-night table.infobox-mall th.infobox-mall-header {
	background-color: #3a3a3a;
}