Hacker News new | ask | show | jobs
by efortis 49 days ago
The simple solution is :enabled:hover. For example:

  .btn {
    &:enabled:hover {
      background: dodgerblue;
    }
    &:disabled {
      background: gray;
    }
  }
1 comments

For every complex problem there is a solution that is clear, simple, and wrong.