Skip to content

Commit

Permalink
fix: user-select mixin ignores value (#7992)
Browse files Browse the repository at this point in the history
* Fixes that the `$value` parameter for the `user-select` mixin from core is ignored.
  • Loading branch information
devversion authored and andrewseguin committed Nov 2, 2017
1 parent 1547a77 commit eaa4a36
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/core/style/_vendor-prefixes.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/* stylelint-disable material/no-prefixes */
@mixin user-select($value) {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-user-select: $value;
-moz-user-select: $value;
-ms-user-select: $value;
user-select: $value;
}

@mixin input-placeholder {
Expand Down

0 comments on commit eaa4a36

Please sign in to comment.