diff options
author | Johannes Dahlström <johannes.dahlstrom@vaadin.com> | 2012-06-15 10:38:45 +0000 |
---|---|---|
committer | Johannes Dahlström <johannes.dahlstrom@vaadin.com> | 2012-06-15 10:38:45 +0000 |
commit | cee6ead8b0fe6aae4c5a25ad562dfb5a62ecf435 (patch) | |
tree | 7b3e962837e545812fd23251fdd08e471a0091ca /WebContent | |
parent | de3833b8a08060fbc74a05a04daeb3f328120c94 (diff) | |
download | vaadin-framework-cee6ead8b0fe6aae4c5a25ad562dfb5a62ecf435.tar.gz vaadin-framework-cee6ead8b0fe6aae4c5a25ad562dfb5a62ecf435.zip |
#8949 Make sure a drag image always has absolute position
svn changeset:23944/svn branch:6.8
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/VAADIN/themes/base/common/common.css | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/WebContent/VAADIN/themes/base/common/common.css b/WebContent/VAADIN/themes/base/common/common.css index 8734aee63f..74ed21bd1a 100644 --- a/WebContent/VAADIN/themes/base/common/common.css +++ b/WebContent/VAADIN/themes/base/common/common.css @@ -224,10 +224,11 @@ div.v-app-loading { .v-drag-element { z-index: 60000; - position: absolute; - opacity: 0.5; - filter: alpha(opacity=50); - cursor: default; + /* override any other position: properties */ + position: absolute !important; + opacity: 0.5; + filter: alpha(opacity=50); + cursor: default; } .v-scrollable { |