fix: table compresses to page width with fixed layout and ellipsis overflow

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
mguschin
2026-05-13 21:09:32 +03:00
parent 545c6aade6
commit db0a3bb4d6
2 changed files with 24 additions and 3 deletions

View File

@@ -322,11 +322,21 @@ article.card {
table.align-middle {
width: 100%;
table-layout: fixed;
}
table.align-middle td,
table.align-middle th {
vertical-align: middle;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
table.align-middle td.wrap,
table.align-middle th.wrap {
white-space: normal;
word-break: break-all;
}
/* Breadcrumb */