adding ellipsis on file names

This commit is contained in:
Thomas Müller 2014-03-25 23:40:40 +01:00
parent a54260b517
commit e6392163a4
1 changed files with 7 additions and 0 deletions

View File

@ -49,5 +49,12 @@ table td.filename .nametext {
display: none;
}
/* ellipsis on file names */
.nametext {
width: 60%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}