diff options
author | Adam Wagner <wbadam@users.noreply.github.com> | 2017-09-04 14:59:49 +0300 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-09-05 15:11:58 +0300 |
commit | e64df0b517898797c416a41ecc26e918cacfb5ff (patch) | |
tree | b45179962da3411d0975ad477b8a19603ba2fec9 | |
parent | c2d1f3efb7fb50f93c455fad6f1ef4cf6dded211 (diff) | |
download | vaadin-framework-e64df0b517898797c416a41ecc26e918cacfb5ff.tar.gz vaadin-framework-e64df0b517898797c416a41ecc26e918cacfb5ff.zip |
Remove scroll bar inherited borders and background for Tree (#9924)
Resolves #9644
-rw-r--r-- | themes/src/main/themes/VAADIN/themes/valo/components/_tree8.scss | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/themes/src/main/themes/VAADIN/themes/valo/components/_tree8.scss b/themes/src/main/themes/VAADIN/themes/valo/components/_tree8.scss index 1b4405cdbd..6db0405564 100644 --- a/themes/src/main/themes/VAADIN/themes/valo/components/_tree8.scss +++ b/themes/src/main/themes/VAADIN/themes/valo/components/_tree8.scss @@ -61,4 +61,20 @@ border-color: transparent; box-shadow: inset 0 0 0 1px valo-font-color($tree-sel-bg); } + + // Scroll bar + .#{$primary-stylename}-scroller-vertical { + border: none; + } + + .#{$primary-stylename}-scroller-horizontal { + border: none; + } + + .#{$primary-stylename}-header-deco, + .#{$primary-stylename}-footer-deco, + .#{$primary-stylename}-horizontal-scrollbar-deco { + border: none; + background: transparent; + } } |