Fix to remove prefix to -moz-user-select values
This commit is contained in:
parent
1dd2563484
commit
e12eb7b6d9
@ -13,12 +13,7 @@
|
||||
|
||||
@mixin user-select($select) {
|
||||
$select: unquote($select);
|
||||
// Mozilla needs prefix on both the -moz-property and the -moz-value
|
||||
@include experimental(user-select, -moz-#{$select},
|
||||
-moz, not -webkit, not -o, not -ms, not -khtml, not official
|
||||
);
|
||||
// others do not
|
||||
@include experimental(user-select, $select,
|
||||
not -moz, -webkit, not -o, not -ms, -khtml, official
|
||||
-moz, -webkit, not -o, not -ms, -khtml, official
|
||||
);
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
.user-select {
|
||||
-moz-user-select: -moz-none;
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
user-select: none; }
|
||||
|
Loading…
Reference in New Issue
Block a user