Merge pull request '[v7.0/forgejo] [BUG] Fix styling of close button' (#3271) from bp-v7.0/forgejo-7fcb9c3 into v7.0/forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3271
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
This commit is contained in:
Earl Warren 2024-04-16 16:18:56 +00:00
commit 430083ba46

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);
}