fix: images now show full title
Some checks failed
Deploy to GitHub Pages / build (push) Failing after 23s
Deploy to GitHub Pages / deploy (push) Has been skipped

This commit is contained in:
Julien Calixte
2026-07-10 14:41:30 +01:00
parent fbfbbdc0be
commit 34219a6bdc

View File

@@ -179,4 +179,12 @@ function confirmDelete() {
.export-root.exporting :deep(.macroplan) {
overflow: visible;
}
/* A PNG has no hover, so text that ellipses on screen (feature names, learning /
status notes) must wrap to its full length in the capture instead of being cut.
The column width is unchanged, so the milestone band stays aligned. */
.export-root.exporting :deep(.namecell .truncate),
.export-root.exporting :deep(.learncell .note) {
white-space: normal;
overflow: visible;
}
</style>