pink
pink copied to clipboard
🐛 Bug Report: Change cursor pointer in checkbox's disabled state
👟 Reproduction steps
hover on the top of the checkbox which is disabled. it will change the cursor to the pointer.
👍 Expected behavior
Ideally, since the checkbox is disabled we should not show a cursor pointer in this case. we can either set the cursor to not-allowed. or just remove the cursor pointer if the checkbox is disabled. here is an example of how it should work in a disabled state.
https://github.com/appwrite/pink/assets/54894783/375f9921-59a9-470b-a40e-8358eb5a9106
👎 Actual Behavior
hover on the top of the checkbox which is disabled. it will change the cursor to the pointer.
https://github.com/appwrite/pink/assets/54894783/7596e428-e45f-47c4-ab51-9f6740dce3e6
🎲 Appwrite version
Appwrite Cloud
💻 Operating system
MacOS
🧱 Your Environment
No response
👀 Have you spent some time to check if this issue has been raised before?
- [X] I checked and didn't find similar issue
🏢 Have you read the Code of Conduct?
- [X] I have read the Code of Conduct
one more thing this behaviour is same for switch , radio buttons in their disabled state. would love to work on this
Thank you for opening this!
I want to work on this issue.
please review @tewarig
We added a fix that removes the pointer to the initial cursor.
This will go in a future update of Pink design, which should be in the next two weeks.
Meanwhile, you can add a temporary fix in your local CSS if needed:
input:disabled { cursor:initial; }