mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 02:24:04 +00:00
2bf20397e1
This decouple the filter style from the class. Instead, filter-invert can be redefined if needed (e.g. :root.skin-citizen-dark)
25 lines
426 B
Plaintext
25 lines
426 B
Plaintext
/*
|
|
* Citizen - Html Form Styles
|
|
* https://starcitizen.tools
|
|
*/
|
|
|
|
.mw-htmlform-ooui {
|
|
.mw-htmlform-matrix {
|
|
tbody tr:nth-child( even ) td {
|
|
background-color: var( --color-surface-2 );
|
|
}
|
|
|
|
tbody tr:hover td {
|
|
background-color: var( --background-color-quiet--hover );
|
|
}
|
|
}
|
|
|
|
.oo-ui-fieldLayout-header {
|
|
.oo-ui-buttonElement-button {
|
|
.oo-ui-iconElement-icon {
|
|
filter: var( --filter-invert );
|
|
}
|
|
}
|
|
}
|
|
}
|