Add min-width to trick the table width calculation in safari

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2018-04-22 23:09:15 +02:00
parent fb7d73708b
commit cbdaa8b7ce
No known key found for this signature in database
GPG key ID: 4C614C6ED2CDE6DF

View file

@ -335,17 +335,20 @@ table td.filename .nametext, .modified, .column-last>span:first-child { float:le
/* TODO fix usability bug (accidental file/folder selection) */
table {
td.filename .nametext {
width: 0;
flex-grow: 1;
display: flex;
padding: 0;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
height: 100%;
z-index: 10;
padding-right: 20px;
td.filename {
max-width: 0;
.nametext {
width: 0;
flex-grow: 1;
display: flex;
padding: 0;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
height: 100%;
z-index: 10;
padding-right: 20px;
}
}
.uploadtext {