Correctly ellipsize file names, fix #6498
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
parent
64dd1f6833
commit
f987347b83
|
@ -350,6 +350,10 @@ table td.filename .nametext {
|
|||
max-width: 800px;
|
||||
height: 100%;
|
||||
}
|
||||
/* ellipsis on file names */
|
||||
table td.filename .nametext .innernametext {
|
||||
max-width: calc(100% - 100px) !important;
|
||||
}
|
||||
.has-favorites #fileList td.filename a.name {
|
||||
left: 50px;
|
||||
margin-right: 50px;
|
||||
|
|
|
@ -61,7 +61,7 @@ table td.filename .nametext {
|
|||
|
||||
/* ellipsis on file names */
|
||||
table td.filename .nametext .innernametext {
|
||||
max-width: calc(100% - 175px);
|
||||
max-width: calc(100% - 175px) !important;
|
||||
}
|
||||
|
||||
/* proper notification area for multi line messages */
|
||||
|
|
Loading…
Reference in New Issue