From 8b86f94e46ebb2de2cf4fa737972a5b9649a1838 Mon Sep 17 00:00:00 2001 From: Bas Schouten Date: Mon, 22 Apr 2024 10:21:49 +0000 Subject: [PATCH] Add active style to provide some feedback when buttons are clicked. --- html/pithrottler.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/html/pithrottler.css b/html/pithrottler.css index f62d675..ce0aabe 100644 --- a/html/pithrottler.css +++ b/html/pithrottler.css @@ -22,6 +22,10 @@ select:hover, button:hover { background-color:#303030; } +button:active { + background-color:#3a3a3a; +} + select { box-shadow: 4px 4px #666; margin-bottom:10px; -- 2.47.3