Browse Source

Valo Tree Drag & Drop styles broken (#14360)

Change-Id: Iafee03aaea3266ab32edb407e605ff3d8de474e1
tags/7.3.0.rc1
Jouni Koivuviita 9 years ago
parent
commit
726f77cce7
1 changed files with 8 additions and 1 deletions
  1. 8
    1
      WebContent/VAADIN/themes/valo/components/_tree.scss

+ 8
- 1
WebContent/VAADIN/themes/valo/components/_tree.scss View File

@@ -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 {

Loading…
Cancel
Save