Remove some vendor-prefixed selectors from sass

This commit is contained in:
Jesper Noordsij 2024-10-30 16:37:39 +01:00
parent 220c0ada63
commit 3884129a18
No known key found for this signature in database

View File

@ -235,16 +235,10 @@
@mixin selection($current-selector: false) { @mixin selection($current-selector: false) {
@if $current-selector { @if $current-selector {
&::-moz-selection {
@content;
}
&::selection { &::selection {
@content; @content;
} }
} @else { } @else {
::-moz-selection {
@content;
}
::selection { ::selection {
@content; @content;
} }
@ -422,9 +416,6 @@
@mixin unselectable { @mixin unselectable {
-webkit-touch-callout: none; -webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; user-select: none;
} }