Fix wrong cursor style on disabled inputs

*something* is setting the global cursor style for :disabled elements to "default" and I don't know what, but it conflicts with the intended cursor style of SemiDesign, so let it be determined by semi classes instead.
This commit is contained in:
HeCorr 2025-02-02 00:04:59 -03:00
parent 1580650d92
commit 910d4732c7
No known key found for this signature in database
GPG Key ID: 9333B03459C34098

View File

@ -62,6 +62,11 @@
color: inherit;
}
:disabled {
/* inherit Semi's cursor style for disabled elements */
cursor: inherit;
}
::-webkit-scrollbar {
width: 8px;
height: 8px;