mediawiki-skins-Citizen/skinStyles/mediawiki/mediawiki.content.json.less
alistair3149 232fd0cc4b
feat(core): clean up th styles
- th should not use the same styles as label
- Restore font weight and color to th
- Sync different th styles in extensions
2024-07-07 02:14:36 -04:00

40 lines
623 B
Plaintext

/*
* Citizen
*
* SkinStyles for JSON content
* Module: mediawiki.content.json
* Version: REL1_39
*
* Date: 2023-06-02
*/
.mw-json {
tr {
background-color: var( --color-surface-2 );
}
th,
td {
padding: var( --space-xs ) var( --space-md );
font-size: var( --font-size-small );
border-color: var( --border-color-base );
}
th {
background-color: var( --color-surface-0 );
}
&-value,
&-single-value {
background-color: var( --background-color-success-subtle );
}
&-single-value {
background-color: var( --color-surface-2 );
}
&-empty {
background-color: var( --color-surface-0 );
}
}