mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-08-10 07:11:18 +02:00
fix: prevent keyword word-breaking in repertoire columns
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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 ---- */
|
||||||
|
|||||||
Reference in New Issue
Block a user