Skip to content

Commit d79d007

Browse files
committed
fix(form): Select disabled styling
Updated the cursor for the Select to be the default cursor instead of the inherited text cursor while disabled since this mimics the native `<select>` behavior better.
1 parent ef118bf commit d79d007

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/form/src/select/_mixins.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,10 @@
8080

8181
&--disabled {
8282
@include rmd-theme(color, text-disabled-on-background);
83+
84+
// this mimics the native select better since it would show the text icon
85+
// without this while disabled
86+
cursor: default;
8387
}
8488

8589
&__value {

0 commit comments

Comments
 (0)