Merge branch 'main' into v14/feature/allow-dynamic-import-of-icon

This commit is contained in:
Mads Rasmussen
2024-06-21 11:56:33 +02:00
committed by GitHub
2 changed files with 12 additions and 0 deletions

View File

@@ -130,6 +130,12 @@ export class UmbDocumentTreeItemElement extends UmbTreeItemElementBase<UmbDocume
line-height: 14px;
}
#label {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
:hover #icon-lock {
background: var(--uui-color-surface-emphasis);
}

View File

@@ -30,6 +30,12 @@ export class UmbMediaTreeItemElement extends UmbTreeItemElementBase<UmbMediaTree
#icon {
vertical-align: middle;
}
#label {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
`,
];
}