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:
committed by
GitHub
parent
ab76451360
commit
87a45de05b
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user