You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
416 B
26 lines
416 B
|
|
@mixin click-through() {
|
|
pointer-events: none;
|
|
}
|
|
|
|
|
|
// Disallow text selection
|
|
@mixin noselect() {
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
|
|
// Allow text selection
|
|
@mixin can-select() {
|
|
-webkit-user-select: text;
|
|
-khtml-user-select: text;
|
|
-moz-user-select: text;
|
|
-ms-user-select: text;
|
|
user-select: text;
|
|
|
|
cursor: text;
|
|
}
|
|
|