gui: Prevent text overflow in file lists (fixes #6268) (#6292)

This commit is contained in:
Tomasz Wilczyński
2020-05-02 19:34:28 +02:00
committed by GitHub
parent 2e3975e956
commit f560e8c850
4 changed files with 8 additions and 3 deletions
+5
View File
@@ -136,6 +136,11 @@ table.table-auto td {
max-width: 0px;
}
/* Wrap long file paths to prevent text overflow. See issue #6268. */
.file-path {
word-break: break-all;
}
.folder-advanced {
padding: 1rem;
margin-bottom: 15px;