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 7e39215142
commit 5c6084a545
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
1 changed files with 14 additions and 11 deletions

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 {