summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/base
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-11-26 23:31:13 +0200
committerArtur Signell <artur@vaadin.com>2012-11-26 23:31:39 +0200
commit7dad7d82287bc9906ef12d1efd64f8b1da3a0326 (patch)
tree4c2e60f960b036a60b1ae8615184bbc78cd88256 /WebContent/VAADIN/themes/base
parent57ad5b2fbe98af98b48f3f82ef19a2656cf5328e (diff)
downloadvaadin-framework-7dad7d82287bc9906ef12d1efd64f8b1da3a0326.tar.gz
vaadin-framework-7dad7d82287bc9906ef12d1efd64f8b1da3a0326.zip
Temporary work around for drag'n'drop image problem (#10385)
Change-Id: If3b0709feb638f0116273f35a61708b5c4130ac0
Diffstat (limited to 'WebContent/VAADIN/themes/base')
-rw-r--r--WebContent/VAADIN/themes/base/base.scss10
-rw-r--r--WebContent/VAADIN/themes/base/common/common.scss9
2 files changed, 10 insertions, 9 deletions
diff --git a/WebContent/VAADIN/themes/base/base.scss b/WebContent/VAADIN/themes/base/base.scss
index a16b063ba8..42047e9af5 100644
--- a/WebContent/VAADIN/themes/base/base.scss
+++ b/WebContent/VAADIN/themes/base/base.scss
@@ -47,6 +47,16 @@
overflow: hidden;
}
+/* Temporarily moved here to make drag'n'drop work before #10384 is fixed */
+.v-drag-element {
+ z-index: 60000;
+ /* override any other position: properties */
+ position: absolute !important;
+ opacity: 0.5;
+ filter: alpha(opacity=50);
+ cursor: default;
+}
+
@mixin base {
// @include base-app;
diff --git a/WebContent/VAADIN/themes/base/common/common.scss b/WebContent/VAADIN/themes/base/common/common.scss
index ac9154d2dc..9162e64a89 100644
--- a/WebContent/VAADIN/themes/base/common/common.scss
+++ b/WebContent/VAADIN/themes/base/common/common.scss
@@ -204,15 +204,6 @@ body &.v-app-loading {
padding: 2px;
}
-.v-drag-element {
- z-index: 60000;
- /* override any other position: properties */
- position: absolute !important;
- opacity: 0.5;
- filter: alpha(opacity=50);
- cursor: default;
-}
-
.v-clip {
overflow: hidden;
}