UX: Make radio buttons respect forum's accent color (#30235)

Similar to 601780aadf, this change ensures radio buttons respect the forum's accent color. Visual color change only, as such no tests.
This commit is contained in:
Keegan George 2024-12-12 08:22:00 +09:00 committed by GitHub
parent 9f68b037d4
commit 9df7d6f9a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -210,6 +210,7 @@ input[type="submit"] {
// Inputs
// --------------------------------------------------
input[type="checkbox"] {
input[type="checkbox"],
input[type="radio"] {
accent-color: var(--tertiary);
}