diff options
author | Jouni Koivuviita <jouni@vaadin.com> | 2014-08-15 12:28:07 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-08-15 11:59:06 +0000 |
commit | 726f77cce759feeaf78e4f92119b60ad33e0079d (patch) | |
tree | d129b8c89fc264a0c9568550848e2e1b900d7124 /WebContent | |
parent | dcf6c391202d2474ca42cf9a50de62ac953e1382 (diff) | |
download | vaadin-framework-726f77cce759feeaf78e4f92119b60ad33e0079d.tar.gz vaadin-framework-726f77cce759feeaf78e4f92119b60ad33e0079d.zip |
Valo Tree Drag & Drop styles broken (#14360)
Change-Id: Iafee03aaea3266ab32edb407e605ff3d8de474e1
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/VAADIN/themes/valo/components/_tree.scss | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_tree.scss b/WebContent/VAADIN/themes/valo/components/_tree.scss index 7e00f4ec09..93553fe55a 100644 --- a/WebContent/VAADIN/themes/valo/components/_tree.scss +++ b/WebContent/VAADIN/themes/valo/components/_tree.scss @@ -218,7 +218,8 @@ $v-tree-expand-animation-enabled: false !default; // Drag'n'drop styles .#{$primary-stylename}-node-drag-top:before, - .#{$primary-stylename}-node-drag-bottom:after { + .#{$primary-stylename}-node-drag-bottom:after, + .#{$primary-stylename}-node-drag-bottom.#{$primary-stylename}-node-dragfolder.#{$primary-stylename}-node-expanded > .#{$primary-stylename}-node-children:before { content: "\2022"; display: block; position: absolute; @@ -230,6 +231,12 @@ $v-tree-expand-animation-enabled: false !default; color: $v-focus-color; text-indent: round($v-font-size/-4); text-shadow: 0 0 1px $v-background-color, 0 0 1px $v-background-color; + opacity: 1; + visibility: visible; + } + + .#{$primary-stylename}-node-drag-bottom.#{$primary-stylename}-node-dragfolder.#{$primary-stylename}-node-expanded:after { + content: none; } .#{$primary-stylename}-node-caption-drag-center { |