MediaWiki:Gadget-Colortable.css: Difference between revisions

MediaWiki interface page
(move text-align to colored table elements)
(fix for citizen changes (hopefully))
Line 18: Line 18:
@media screen and (prefers-color-scheme: dark) {
@media screen and (prefers-color-scheme: dark) {
/* only timeless has a dark theme skin right now */
/* only timeless has a dark theme skin right now */
/* citizen is not here because it manages dark theme itself; adding it here will conflict with its light theme */
body.skin-timeless .colortable,
body.skin-timeless .colortable {
html.skin-theme-clientpref-os body.skin-citizen .colortable {
--green: var(--green-d);
--green: var(--green-d);
--red: var(--red-d);
--red: var(--red-d);
Line 27: Line 27:
}
}


html.skin-citizen-dark .colortable {
html.skin-citizen-dark .colortable,
html.skin-theme-clientpref-night body.skin-citizen .colortable {
--green: var(--green-d);
--green: var(--green-d);
--red: var(--red-d);
--red: var(--red-d);

Revision as of 02:45, 2 May 2024

.colortable {
	--green-l: #a7f6b0;
	--red-l: #fabfb9;
	--blue-l: #bfd4ff;
	--yellow-l: #fff9ac;
	
	--green-d: #30623c;
	--red-d: #5c312e;
	--blue-d: #383477;
	--yellow-d: #5e5324;
	
	--green: var(--green-l);
	--red: var(--red-l);
	--blue: var(--blue-l);
	--yellow: var(--yellow-l);
}

@media screen and (prefers-color-scheme: dark) {
	/* only timeless has a dark theme skin right now */
	body.skin-timeless .colortable,
	html.skin-theme-clientpref-os body.skin-citizen .colortable {
		--green: var(--green-d);
		--red: var(--red-d);
		--blue: var(--blue-d);
		--yellow: var(--yellow-d);
	}
}

html.skin-citizen-dark .colortable,
html.skin-theme-clientpref-night body.skin-citizen .colortable {
	--green: var(--green-d);
	--red: var(--red-d);
	--blue: var(--blue-d);
	--yellow: var(--yellow-d);
}

body.skin-citizen .colortable td {
	padding: 10px; /* default padding is 10px 20px 10px 0 but it looks weird with bg colors */
}

.ct-green  { text-align: center; background-color: var(--green)  }
.ct-red    { text-align: center; background-color: var(--red) }
.ct-blue   { text-align: center; background-color: var(--blue) }
.ct-yellow { text-align: center; background-color: var(--yellow) }