Skip to content

Commit eaa4a36

Browse files
devversionandrewseguin
authored andcommitted
fix: user-select mixin ignores value (#7992)
* Fixes that the `$value` parameter for the `user-select` mixin from core is ignored.
1 parent 1547a77 commit eaa4a36

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib/core/style/_vendor-prefixes.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* stylelint-disable material/no-prefixes */
22
@mixin user-select($value) {
3-
-webkit-user-select: none;
4-
-moz-user-select: none;
5-
-ms-user-select: none;
6-
user-select: none;
3+
-webkit-user-select: $value;
4+
-moz-user-select: $value;
5+
-ms-user-select: $value;
6+
user-select: $value;
77
}
88

99
@mixin input-placeholder {

0 commit comments

Comments
 (0)