Introduce --color-danger-solid-* CSS variables and replace hardcoded values
All checks were successful
CI / backend-test (push) Successful in 55s
CI / frontend-test (push) Successful in 27s
CI / frontend-e2e (push) Successful in 1m30s
CI / build-and-publish (push) Successful in 58s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-12 23:24:58 +01:00
parent d52f51d6e1
commit 51ab99fc61
4 changed files with 11 additions and 8 deletions

View File

@@ -677,15 +677,15 @@ onMounted(fetchEvent)
font-family: inherit;
font-size: 1rem;
font-weight: 700;
color: #fff;
background: #d32f2f;
color: var(--color-danger-solid-text);
background: var(--color-danger-solid);
border: none;
cursor: pointer;
transition: background 0.15s ease;
}
.cancel-form__confirm:hover {
background: #b71c1c;
background: var(--color-danger-solid-hover);
}
.cancel-form__confirm:disabled {