No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    How to remove {cursor: not-allowed !important} from class .disabled?

    Help
    3
    3
    651
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • M
      Manieck last edited by

      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?

      1 Reply Last reply Reply Quote 0
      • metalsadman
        metalsadman last edited by

        @Manieck override the css to cursor:auto !important

        1 Reply Last reply Reply Quote 0
        • I
          iklemm last edited by

          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;
          }

          1 Reply Last reply Reply Quote 0
          • First post
            Last post