Giter VIP home page Giter VIP logo

Comments (3)

chinchang avatar chinchang commented on August 18, 2024

Because you talked about attaching classes, I suppose you are using jQuery or something already. In that there is another hack you can use to disable hint on a disabled element without altering the library:

Tooltips are shown on any element with data-hint attribute. Instead of adding a class to disable hint, what you can do is remove the data-hint attribute and put its value on, say data-hint-disabled (anything but data-hint) attribute. This will make the tooltip not show. When item gets enabled, switch back the right attribute.

from hint.css.

taystack avatar taystack commented on August 18, 2024

Fair enough. I just added a disabled class for anyone interested;
scss:

.#{$prefix}disabled {
  &:after, &:before {
    visibility: hidden;
  }
}

haml:

.thing.hint--right.hint--disabled{data-hint: "Cool"}
  .thing{disabled: true}

I had to do some jquery parent-selector magic to alter the parent class of the disabled element, but it works seamlessly for what I need since the disabled element is enabled dynamically. Thanks for the quick reply and I hope someone else finds this useful.

from hint.css.

chinchang avatar chinchang commented on August 18, 2024

cool 👍

from hint.css.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.