diff --git a/app/styles/base.css b/app/styles/base.css index a55ca612..1bf80649 100644 --- a/app/styles/base.css +++ b/app/styles/base.css @@ -397,9 +397,6 @@ html { } #noVNC_control_bar .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_control_bar .noVNC_button:not(:disabled):active { padding-top: 5px; diff --git a/app/styles/input.css b/app/styles/input.css index f0905776..cc4087cd 100644 --- a/app/styles/input.css +++ b/app/styles/input.css @@ -280,3 +280,8 @@ input[type=file]:disabled { background-image: var(--select-arrow), linear-gradient(to top, rgb(255, 255, 255), rgb(240, 240, 240)); } +input[type=image]:disabled { + /* See Firefox bug: + https://bugzilla.mozilla.org/show_bug.cgi?id=1798304 */ + cursor: default; +}