Clamp long result titles with ellipsis

This commit is contained in:
2026-02-04 15:09:33 +01:00
parent 9fefe6b9c3
commit c15603c2c5

View File

@@ -592,6 +592,7 @@ input[type="range"].full-slider::-moz-range-track {
.results-table { .results-table {
width: 100%; width: 100%;
border-collapse: collapse; border-collapse: collapse;
table-layout: fixed;
} }
.results-table th, .results-table th,
.results-table td { .results-table td {
@@ -641,9 +642,11 @@ input[type="range"].full-slider::-moz-range-track {
} }
.results-table .title-line { .results-table .title-line {
font-weight: 700; font-weight: 700;
max-width: 320px;
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
word-break: break-word;
} }
.results-table .author-cell { .results-table .author-cell {
max-width: 160px; max-width: 160px;