We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56bce47 commit eee1e7dCopy full SHA for eee1e7d
src/cdk-experimental/drag-drop/drop.scss
@@ -6,3 +6,18 @@ $cdk-z-index-drag-preview: 1000;
6
left: 0;
7
z-index: $cdk-z-index-drag-preview;
8
}
9
+
10
+.cdk-drag,
11
+.cdk-drag-handle {
12
+ touch-action: none;
13
+ -webkit-user-drag: none;
14
+ -webkit-tap-highlight-color: transparent;
15
16
+ // stylelint-disable material/no-prefixes
17
+ // normally we have a mixin for these, but it's in material/core.
18
+ -webkit-user-select: none;
19
+ -moz-user-select: none;
20
+ -ms-user-select: none;
21
+ user-select: none;
22
+ // stylelint-enable material/no-prefixes
23
+}
0 commit comments