logoalt Hacker News

efortistoday at 2:45 AM1 replyview on HN

The simple solution is :enabled:hover. For example:

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

Replies

techbrovanguardtoday at 3:44 AM

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