diff options
author | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2017-05-03 13:37:56 +0300 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-05-03 13:37:56 +0300 |
commit | 3a7e95b98af0e9ad8f1d0160f6a1adcaa6cd8c58 (patch) | |
tree | 2345a81dea9a65f7fab763e3ba197ac82c04e51e /themes/src | |
parent | 8a77872050b8b51013261458d2c766dc93ff6c11 (diff) | |
download | vaadin-framework-3a7e95b98af0e9ad8f1d0160f6a1adcaa6cd8c58.tar.gz vaadin-framework-3a7e95b98af0e9ad8f1d0160f6a1adcaa6cd8c58.zip |
Fix minor issues with Tree theme and TB API (#9226)
Removes background color from Tree, adds release notes mention, JavaDoc updates.
Diffstat (limited to 'themes/src')
-rw-r--r-- | themes/src/main/themes/VAADIN/themes/valo/components/_newtree.scss | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/themes/src/main/themes/VAADIN/themes/valo/components/_newtree.scss b/themes/src/main/themes/VAADIN/themes/valo/components/_newtree.scss index 9929d7ef47..20af676e4b 100644 --- a/themes/src/main/themes/VAADIN/themes/valo/components/_newtree.scss +++ b/themes/src/main/themes/VAADIN/themes/valo/components/_newtree.scss @@ -6,16 +6,20 @@ $v-newtree-border-radius: 3px; @include valo-treegrid($primary-stylename); + .#{$primary-stylename} { + background-color: transparent; + } + .#{$primary-stylename}-row > td { background-color: transparent; border: none; } - + .#{$primary-stylename}-tablewrapper { background-color: transparent; border: none; } - + .#{$primary-stylename}-row-selected > .#{$primary-stylename}-cell { background-color: transparent; background-image: none; @@ -23,23 +27,23 @@ $v-newtree-border-radius: 3px; text-shadow: none; border: none; } - + .#{$primary-stylename}:focus .#{$primary-stylename}-rowmode-row-focused:before { display: none; } - + .#{$primary-stylename}-cell-content { border: $v-grid-cell-focused-border; border-color: transparent; border-radius: $v-newtree-border-radius; padding: $v-grid-cell-padding; } - - .#{$primary-stylename}:focus .#{$primary-stylename}-rowmode-cell-focused + + .#{$primary-stylename}:focus .#{$primary-stylename}-rowmode-cell-focused > .#{$primary-stylename}-node > .#{$primary-stylename}-cell-content { border: $v-grid-cell-focused-border; } - + // Selected .#{$primary-stylename}-row-selected { $grid-sel-bg: $v-grid-row-selected-background-color; @@ -56,4 +60,3 @@ $v-newtree-border-radius: 3px; } } } - |