reseter.css
reseter.css copied to clipboard
Bug: incorrect selector for disabled buttons
Noticed an issue where the pointer style is being applied to buttons even though they are disabled. Here is the current code that provides this styling.
[type='button']:not(disabled),
[type='reset']:not(disabled),
[type='submit']:not(disabled),
button:not(disabled) {
cursor: pointer;
}
I believe that to proper select disabled buttons we have to do it this way:
[type='button']:not([disabled]),
[type='reset']:not([disabled]),
[type='submit']:not([disabled]),
button:not([disabled]) {
cursor: pointer;
}
However, can we not just utilize the :enabled selector?
Hi can you assign this issue to me
Hi @thepushp! Are you still interested in working on this issue?
Hello, Interested in solving this issue.
Hey @Fayaz-B! You can work on it if you want.