From 5905f8f81066abb43a452b27943603f07eb83a7b Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Mon, 18 Aug 2025 18:15:26 +0200 Subject: [PATCH] affirmative button on hover has better contrast background --- static/style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/static/style.css b/static/style.css index b905a41..232afaf 100644 --- a/static/style.css +++ b/static/style.css @@ -125,12 +125,13 @@ button span { button.affirmative span { background-color: var(--theme); color: white; + font-style: italic; } button.affirmative:hover span { - border-color: var(--highlight); - background-color: var(--highlight); color: var(--theme); + border-color: var(--theme); + background-color: var(--highlight); } button:disabled {