Browse Source

Fix Valo Tree selection indicator for Blink (#14334)

Also remove the child toggle element for leaf nodes in all browsers
(previously only IE8).

Change-Id: If2a1b14dcd423e9322141f36900406b745451993
tags/7.3.0.rc1
Jouni Koivuviita 10 years ago
parent
commit
8a0e51fac1
1 changed files with 4 additions and 3 deletions
  1. 4
    3
      WebContent/VAADIN/themes/valo/components/_tree.scss

+ 4
- 3
WebContent/VAADIN/themes/valo/components/_tree.scss View File

@@ -116,11 +116,12 @@ $v-tree-expand-animation-enabled: false !default;

&:after {
content: "";
display: inline-block;
display: block;
vertical-align: top;
position: absolute;
z-index: 1;
left: 0;
margin-top: -$v-tree-row-height;
width: 100%;
height: $v-tree-row-height;
border-radius: $v-border-radius;
@@ -153,8 +154,8 @@ $v-tree-expand-animation-enabled: false !default;
@include valo-tree-expanded-icon-style(true);
}

.#{$primary-stylename}-node-leaf > .#{$primary-stylename}-node-caption > div:before,
.v-ie8 & .#{$primary-stylename}-node-leaf:before {
.#{$primary-stylename}-node-leaf:before,
.#{$primary-stylename}-node-leaf > .#{$primary-stylename}-node-caption > div:before {
visibility: hidden;
}


Loading…
Cancel
Save