0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-03 04:15:29 +00:00

Fix dropdown button background in dark mode

This commit is contained in:
Pēteris Caune 2024-11-14 14:50:35 +02:00
parent 0c8bba95ac
commit c51096e17e
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2
2 changed files with 8 additions and 5 deletions

View file

@ -11,7 +11,10 @@
.btn-default:active,
.btn-default:active:focus,
.btn-default.active.focus,
.btn-default.active:hover {
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default,
.open > .dropdown-toggle.btn-default:hover,
.open > .dropdown-toggle.btn-default:focus {
color: var(--btn-active-color);
background-color: var(--btn-active-bg);
border-color: var(--btn-active-border);
@ -45,9 +48,9 @@
}
.text-success {
color: var(--text-success);
color: var(--text-success);
}
.text-danger {
color: var(--text-danger);
}
color: var(--text-danger);
}

View file

@ -45,7 +45,7 @@
padding-left: 30px;
}
#filters > button {
#filters > button:not(:active) {
box-shadow: none;
}