Fix links styling to get correctly ellipsis text overflow

This commit is contained in:
hadi 2023-05-24 14:40:19 +02:00 committed by nathan
parent 4e957510bc
commit ea5ef58904

View File

@ -47,7 +47,8 @@ export class Et2Link extends ExposeMixin<Et2Widget>(Et2Widget(LitElement)) imple
flex: 2 1 50%;
overflow: hidden;
text-overflow: ellipsis;
max-width: max-content;
white-space: nowrap;
max-width: max-content;
width: 0;
}
@ -55,6 +56,7 @@ export class Et2Link extends ExposeMixin<Et2Widget>(Et2Widget(LitElement)) imple
flex: 1 1 50%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: max-content;
width: 0;
}