MediaWiki:Citizen.css: Difference between revisions
MediaWiki interface page
More actions
Created page with "→All CSS here will be loaded for users of the Citizen skin: html { --color-emphasized: unset; }" |
No edit summary |
||
| (8 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
/* All CSS here will be loaded for users of the Citizen skin */ | /* All CSS here will be loaded for users of the Citizen skin */ | ||
:root | |||
--color-emphasized: | { | ||
--color-emphasized: oklch(var(--color-emphasized-oklch__l) var(--color-emphasized-oklch__c) var(--color-progressive-oklch__h)); | |||
} | |||
/* Cargo fixes */ | |||
.fieldBox, .templateForm, .sectionForm | |||
{ | |||
background-color: var(--color-surface-1); | |||
} | |||
div.otherInputParams > div:nth-child(odd), | |||
div.sectionForm > fieldset > div > div:nth-child(odd) | |||
{ | |||
background: var(--color-surface-2) !important; | |||
} | |||
div.otherInputParams > div:nth-child(even), | |||
div.sectionForm > fieldset > div > div:nth-child(even) | |||
{ | |||
background: var(--color-surface-3) !important; | |||
} | } | ||
Latest revision as of 20:22, 15 July 2026
/* All CSS here will be loaded for users of the Citizen skin */
:root
{
--color-emphasized: oklch(var(--color-emphasized-oklch__l) var(--color-emphasized-oklch__c) var(--color-progressive-oklch__h));
}
/* Cargo fixes */
.fieldBox, .templateForm, .sectionForm
{
background-color: var(--color-surface-1);
}
div.otherInputParams > div:nth-child(odd),
div.sectionForm > fieldset > div > div:nth-child(odd)
{
background: var(--color-surface-2) !important;
}
div.otherInputParams > div:nth-child(even),
div.sectionForm > fieldset > div > div:nth-child(even)
{
background: var(--color-surface-3) !important;
}