disable user-select on <body> when dragging notes

This commit is contained in:
Alex Pankratov
2021-08-04 12:05:04 +02:00
parent 4ba5bb43c0
commit f40c242109

View File

@@ -232,6 +232,16 @@
clear: both;
}
/***/
body.dragging {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/***/
.board {
min-width: calc( var(--lw) * 1px );
@@ -243,6 +253,11 @@
margin: 0 auto;
padding: 20px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}