How to remove {cursor: not-allowed !important} from class .disabled?
-
Hi
I am a beginner in Quasar.
I would like to disable the not-allowed mouse pointer that appears above disabled components.
I tried to add my own styles, but it doesn’t work.
I do not know how to do this.
Have any ideas? -
@Manieck override the css to cursor:auto !important
-
turns out that just selecting “.disabled class” is not enough, you also need to match children:
so adding this to css/app.scss works for me.
.disabled, .disabled *{
cursor: auto !important;
}