Move workaround for Firefox bug to input.css
This applies to all input[type=image]:disabled elements, not only control bar buttons.
This commit is contained in:
parent
654066f2c4
commit
da4f3f30ea
|
@ -397,9 +397,6 @@ html {
|
|||
}
|
||||
#noVNC_control_bar .noVNC_button:disabled {
|
||||
opacity: 0.4;
|
||||
/* See firefox bug regarding cursor on disabled <input type="image">:
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=1798304 */
|
||||
cursor: default;
|
||||
}
|
||||
#noVNC_control_bar .noVNC_button:not(:disabled):active {
|
||||
padding-top: 5px;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue