From a3284601ad896943f270d0c93d206a8fff324920 Mon Sep 17 00:00:00 2001 From: Frank Tovar Date: Wed, 4 Feb 2026 14:57:12 +0100 Subject: [PATCH] Add hover states for ghost and danger buttons --- wwwroot/styles.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/wwwroot/styles.css b/wwwroot/styles.css index ccb7b04..7e4c127 100644 --- a/wwwroot/styles.css +++ b/wwwroot/styles.css @@ -201,12 +201,21 @@ button.danger { border-color: #c54740; color: #fffaf3; } +button.danger:hover { + background: #c9473f; + border-color: #a83a35; +} button.ghost { background: transparent; border-color: #d5c7b5; color: #2c1c0d; } +button.ghost:hover { + background: linear-gradient(-5deg, #e7f5ff, #cbeaff); + border-color: #b4d9f3; + color: #1a3d64; +} .label { color: #6c5a42;