RED-8904: fixed value overflow ellipsis.

This commit is contained in:
Nicoleta Panaghiu 2024-04-09 17:55:46 +03:00
parent e2982224b3
commit 02720f190b
2 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
<cdk-virtual-scroll-viewport [itemSize]="LIST_ITEM_SIZE" [ngStyle]="{ height: redactedTextsAreaHeight + 'px' }">
<ul *cdkVirtualFor="let value of values">
<li>{{ value }}</li>
<ul>
<li *cdkVirtualFor="let value of values">{{ value }}</li>
</ul>
</cdk-virtual-scroll-viewport>

View File

@ -10,12 +10,12 @@ cdk-virtual-scroll-viewport {
ul {
padding-left: 16px;
}
li {
white-space: nowrap;
text-overflow: ellipsis;
list-style-position: inside;
overflow: hidden;
padding-right: 10px;
li {
white-space: nowrap;
text-overflow: ellipsis;
list-style-position: inside;
overflow: hidden;
padding-right: 10px;
}
}