[BUG] Fix styling of close button

- This is a partial revert of c2280a2009,
it was already fixed upstream, but not for the `.basic` variant.
- Resolves #3252
This commit is contained in:
Gusted 2024-04-16 12:25:09 +02:00
parent 5a10eec50f
commit 7fcb9c3636
No known key found for this signature in database
GPG Key ID: FD821B732837125F
1 changed files with 13 additions and 0 deletions

View File

@ -318,3 +318,16 @@ strong.attention-note, svg.attention-note {
strong.attention-caution, svg.attention-caution {
color: var(--color-red-light);
}
.ui.basic.red.button {
background-color: var(--color-red);
color: var(--color-white);
}
.ui.basic.red.button:hover,
.ui.basic.red.button:focus {
background-color: var(--color-red-dark-1);
color: var(--color-white);
}
.ui.basic.red.button:active {
background-color: var(--color-red-dark-2);
color: var(--color-white);
}