Fix scroll issues in tree overflow state (#3385)

* Fixes #3383 - Tree scrolling area should not display horizontal scroll.
* Includes various additional improvements to the object tree.
Co-authored-by: Jamie Vigliotta <jamie.j.vigliotta@nasa.gov>
This commit is contained in:
Charles Hacskaylo
2020-10-07 11:29:42 -07:00
committed by GitHub
parent ab76451360
commit 87a45de05b
3 changed files with 109 additions and 125 deletions

View File

@@ -26,10 +26,8 @@
overflow: hidden;
transition: all;
.scrollable-children {
.c-tree__item-h {
width: 100%;
}
&__scrollable-children {
overflow: auto;
}
&__item--empty {
@@ -57,7 +55,11 @@
li {
position: relative;
&[class*="__item-h"] { display: block; }
&[class*="__item-h"] {
display: block;
width: 100%;
}
+ li {
margin-top: 1px;
}