Skip to content

Commit 910d473

Browse files
committed
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.
1 parent 1580650 commit 910d473

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/index.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@
6262
color: inherit;
6363
}
6464

65+
:disabled {
66+
/* inherit Semi's cursor style for disabled elements */
67+
cursor: inherit;
68+
}
69+
6570
::-webkit-scrollbar {
6671
width: 8px;
6772
height: 8px;

0 commit comments

Comments
 (0)