light: fix coloring of settings button in org team settings

This commit is contained in:
pat-s 2023-03-28 14:15:02 +02:00
parent 8843f56fd2
commit cef2597556
No known key found for this signature in database
GPG Key ID: 3C6318841EF78925
2 changed files with 12 additions and 0 deletions

View File

@ -411,6 +411,12 @@
.ui.basic.secondary.button:hover {
background: var(--color-hover) !important;
}
// settings button in org team settings
.ui.teal.labels .label, .ui.ui.ui.teal.label, .ui.teal.button, .ui.teal.buttons .button {
background: var(--color-green);
color: #fff !important;
}
}
@media (prefers-color-scheme: dark) {
:root {

View File

@ -406,3 +406,9 @@ ui.basic.blue.button:hover,
.ui.basic.secondary.buttons .button:hover, .ui.basic.secondary.button:hover {
background: var(--color-hover) !important;
}
// settings button in org team settings
.ui.teal.labels .label, .ui.ui.ui.teal.label, .ui.teal.button, .ui.teal.buttons .button {
background: var(--color-green);
color: #fff !important;
}