From 0ef75824a4a6a9a4873ddb4f9a39050ad7b87565 Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Mon, 31 Oct 2022 13:13:23 +0100 Subject: [PATCH] Ensure the correct cursor on disabled buttons Without this fix we still get a "pointer" cursor on disabled inputs of type "image" in Firefox. Currently, all our noVNC_buttons are . Reported to firefox here: https://bugzilla.mozilla.org/show_bug.cgi?id=1798304 --- app/styles/base.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/styles/base.css b/app/styles/base.css index 41127940..7e5b6930 100644 --- a/app/styles/base.css +++ b/app/styles/base.css @@ -393,6 +393,9 @@ html { } .noVNC_button:disabled { opacity: 0.4; + /* See firefox bug regarding cursor on disabled : + https://bugzilla.mozilla.org/show_bug.cgi?id=1798304 */ + cursor: default; } .noVNC_button:focus { outline: none;