Properly overflow text if the name is too long

This commit is contained in:
Mike Koch 2016-05-06 22:34:01 -04:00
parent fcf54ac9ca
commit 18ffc0b657

View File

@ -338,3 +338,8 @@ div.setupButtons {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.file-row p.name {
overflow: hidden;
text-overflow: ellipsis;
}