From 31394407dc8cff238f3601885a3a5c366488b408 Mon Sep 17 00:00:00 2001 From: hedgehog <> Date: Wed, 22 Apr 2020 07:36:54 +0000 Subject: [PATCH] prevent disabled buttons from sinking --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index d5cfe1e..404b4b8 100644 --- a/style.css +++ b/style.css @@ -100,7 +100,7 @@ button { padding: 0 12px; } -button:active { +button:not(:disabled):active { box-shadow: var(--border-sunken-outer), var(--border-sunken-inner); }