aboutsummaryrefslogtreecommitdiffstats
path: root/themes
diff options
context:
space:
mode:
authorPekka Hyvönen <pekka@vaadin.com>2017-05-10 14:42:31 +0300
committerIlia Motornyi <elmot@vaadin.com>2017-05-10 14:42:31 +0300
commitcbb4393847f02fdbdcd64528918aeacbdc5565e3 (patch)
treeb6003782b956f5f1f9aed2f1d4707d383515a810 /themes
parent624a9594b55f0b35e75b9aefd80a97049bc51eed (diff)
downloadvaadin-framework-cbb4393847f02fdbdcd64528918aeacbdc5565e3.tar.gz
vaadin-framework-cbb4393847f02fdbdcd64528918aeacbdc5565e3.zip
Fix partly missing drag image regression on Safari
Doesn't fix #9261, drag image missing on Safari when dragging grid row because that has position: absolute and offset.
Diffstat (limited to 'themes')
-rw-r--r--themes/src/main/themes/VAADIN/themes/valo/shared/_overlay.scss3
1 files changed, 3 insertions, 0 deletions
diff --git a/themes/src/main/themes/VAADIN/themes/valo/shared/_overlay.scss b/themes/src/main/themes/VAADIN/themes/valo/shared/_overlay.scss
index 5b44e94cac..eabf4d3227 100644
--- a/themes/src/main/themes/VAADIN/themes/valo/shared/_overlay.scss
+++ b/themes/src/main/themes/VAADIN/themes/valo/shared/_overlay.scss
@@ -277,6 +277,9 @@ $v-selection-item-selection-color: $v-selection-color !default;
@mixin valo-draggable {
.v-draggable {
+ -moz-user-select: none !important;
+ -ms-user-select: none !important;
+ -webkit-user-select: none !important;
user-select: none !important;
}
}