fix(ui): truncate download table cells correctly

This commit is contained in:
NimBold
2026-06-18 19:53:33 +03:30
parent 645d566540
commit 62945a5516
2 changed files with 46 additions and 16 deletions
+13 -6
View File
@@ -1034,10 +1034,13 @@
display: flex;
align-items: center;
min-width: 0;
overflow: hidden;
}
.download-cell-truncate > span,
.download-cell-right > span {
display: block;
max-width: 100%;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
@@ -1087,12 +1090,16 @@
overflow: hidden;
}
.download-status-cell > span {
min-width: 48px;
flex-shrink: 0;
font-size: 10px;
font-variant-numeric: tabular-nums;
}
.download-status-cell > span {
min-width: 0;
max-width: 100%;
flex: 0 1 auto;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 10px;
font-variant-numeric: tabular-nums;
}
.download-progress-track {
width: 100%;