From 92cd6e2c280d3e0a0495c3b6a8808fc090946ca9 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Sat, 27 Aug 2022 23:28:47 +0200 Subject: [PATCH] CSS: Set cursor for buttons to be uniform - pointer for enabled buttons - default for disabled buttons --- server/templates/macros.htm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/templates/macros.htm b/server/templates/macros.htm index dc3ca9d..eec566b 100644 --- a/server/templates/macros.htm +++ b/server/templates/macros.htm @@ -38,10 +38,12 @@ color: whitesmoke; border-radius: .3rem; border: none; + cursor: pointer; } button:disabled { background-color: rgb(98, 67, 113); color: gray; + cursor: default; } {% endmacro %}