Skip to content

Commit ce46250

Browse files
Merge branch 'main' into v14/feature/umb-property-editor-ui-textarea-readonly-mode
2 parents 5c4de31 + e005a6b commit ce46250

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/packages/documents/documents/tree/tree-item/document-tree-item.element.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,12 @@ export class UmbDocumentTreeItemElement extends UmbTreeItemElementBase<UmbDocume
130130
line-height: 14px;
131131
}
132132
133+
#label {
134+
white-space: nowrap;
135+
overflow: hidden;
136+
text-overflow: ellipsis;
137+
}
138+
133139
:hover #icon-lock {
134140
background: var(--uui-color-surface-emphasis);
135141
}

src/packages/media/media/tree/tree-item/media-tree-item.element.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ export class UmbMediaTreeItemElement extends UmbTreeItemElementBase<UmbMediaTree
3030
#icon {
3131
vertical-align: middle;
3232
}
33+
34+
#label {
35+
white-space: nowrap;
36+
overflow: hidden;
37+
text-overflow: ellipsis;
38+
}
3339
`,
3440
];
3541
}

0 commit comments

Comments
 (0)