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:
parent
7e39215142
commit
5c6084a545
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue