fix file-list: fix long file-names overflowing file icon

This commit is contained in:
Mahdi Dibaiee 2015-09-07 18:15:41 +04:30
parent 38f9203af5
commit ab9908f44c
3 changed files with 6 additions and 0 deletions

View File

@ -275,7 +275,9 @@ button.coming-soon::after {
.file p, .file p,
.directory p { .directory p {
flex: 1 1; flex: 1 1;
max-width: calc(100% - 9rem);
text-overflow: ellipsis; text-overflow: ellipsis;
word-wrap: break-word;
} }
.file > span, .file > span,
.directory > span { .directory > span {

Binary file not shown.

View File

@ -15,7 +15,11 @@
p { p {
flex: 1 1; flex: 1 1;
max-width: ~'calc(100% - 9rem)';
text-overflow: ellipsis; text-overflow: ellipsis;
word-wrap: break-word;
} }
> span { > span {