fix: prevent keyword word-breaking in repertoire columns

This commit is contained in:
Pontoporeia
2026-07-10 15:51:03 +02:00
parent c1a05efcda
commit 0045c06fef
2 changed files with 5 additions and 1 deletions
+1
View File
@@ -5,3 +5,4 @@
- [x] Fix "Copier" button in logs section scrolling out of view on horizontal scroll - [x] Fix "Copier" button in logs section scrolling out of view on horizontal scroll
- [x] Remove TOC temporary debug error_log calls - [x] Remove TOC temporary debug error_log calls
- [x] Fix PeerTube upload failure: PHP /tmp tmpfs too small for large video files - [x] Fix PeerTube upload failure: PHP /tmp tmpfs too small for large video files
- [x] Fix keyword word-breaking in repertoire.php: widen kw grid column, add white-space: nowrap
+4 -1
View File
@@ -50,7 +50,7 @@
minmax(9rem, 1fr) minmax(9rem, 1fr)
minmax(7rem, 1fr) minmax(7rem, 1fr)
minmax(8rem, 1fr) minmax(8rem, 1fr)
minmax(3rem, 0.45fr); minmax(5rem, 0.55fr);
grid-template-rows: auto minmax(0, 1fr); grid-template-rows: auto minmax(0, 1fr);
gap: var(--space-s); gap: var(--space-s);
justify-content: space-between; justify-content: space-between;
@@ -123,6 +123,9 @@
} }
.repertoire-col[data-col="kw"] button { .repertoire-col[data-col="kw"] button {
font-size: calc(var(--step--1)*1.15); font-size: calc(var(--step--1)*1.15);
hyphens: auto;
overflow-wrap: break-word;
word-break: normal;
} }
/* ---- Responsive (≤ 1025px): accordion mode, students as results ---- */ /* ---- Responsive (≤ 1025px): accordion mode, students as results ---- */