Hi,
I noticed that when you make a button disabled, it doesn't only add the disabled attribute, but it also add a disabled class. I thought this would be to attribute the disabled CSS styles, but then I realised those are also being applied directly to the buttons with attribute disabled.
Furthermore, the disabled class has a pointer-events: none; rule which is unnecessary as the disable attribute already disables the button and makes the cursor style rule and title tooptip stop working.
See the video below:
https://www.screencast.com/t/a5SNThqp7S5k
How should I fix this issue? Should I remove the rule from the disabled class or should I stop the code from adding the disabled class to buttons?