Overwriting the "not-allowed" cursor on disabled components

Try adding this to your theme.css

input[type="text"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: auto !important;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: auto !important;
}
1 Like