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-04 14:59:49 +0300 |
commit | 73c461e33634e3db54dd9189a5a212ec8d9212cd (patch) | |
tree | 23d6f6b0ca53510d4ea890e7748b74bdf6bce386 /themes | |
parent | 212ec0a83d316258ef7aa1f006c9570f7ddaaa9f (diff) | |
download | vaadin-framework-73c461e33634e3db54dd9189a5a212ec8d9212cd.tar.gz vaadin-framework-73c461e33634e3db54dd9189a5a212ec8d9212cd.zip |
Remove scroll bar inherited borders and background for Tree (#9924)
Resolves #9644
Diffstat (limited to 'themes')
-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; + } } |