RED-8904: fixed value overflow ellipsis.
This commit is contained in:
parent
e2982224b3
commit
02720f190b
@ -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>
|
||||
|
||||
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user