diff --git a/src/app/ui/collection-tools/collection-tools.component.html b/src/app/ui/collection-tools/collection-tools.component.html index 3b47c75..4c23885 100644 --- a/src/app/ui/collection-tools/collection-tools.component.html +++ b/src/app/ui/collection-tools/collection-tools.component.html @@ -304,8 +304,10 @@ - {{node.name}} - ({{node.children.length}}) + + {{node.name}} + + ({{node.children.length}}) visibility @@ -318,8 +320,10 @@ {{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}} - {{node.name}} - ({{node.children.length}}) + + {{node.name}} + + ({{node.children.length}}) visibility diff --git a/src/app/ui/collection-tools/collection-tools.component.scss b/src/app/ui/collection-tools/collection-tools.component.scss index 2d00da5..04144b9 100644 --- a/src/app/ui/collection-tools/collection-tools.component.scss +++ b/src/app/ui/collection-tools/collection-tools.component.scss @@ -301,4 +301,11 @@ div:focus { } .isLookPattern{ display: none; +} +.treeText{ + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + display: inline-block; + width: 65px; } \ No newline at end of file