MediaWiki:Common.css

From MakersLink

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* 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;
}