Fix button color on red and green buttons (#30500)

Previously these colors were provided by fomantic css. I missed them.

Fixes: https://github.com/go-gitea/gitea/issues/30499
Regressed by: https://github.com/go-gitea/gitea/pull/30475
This commit is contained in:
silverwind 2024-04-15 19:20:32 +02:00 committed by GitHub
parent c63060b130
commit 2dc7e9e5fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -249,6 +249,7 @@
.ui.red.button,
.ui.red.buttons .button {
color: var(--color-white);
background: var(--color-red);
}
@ -283,6 +284,7 @@
.ui.green.button,
.ui.green.buttons .button {
color: var(--color-white);
background: var(--color-green);
}