adding ellipsis on file names to public file list as well

This commit is contained in:
Thomas Müller 2014-03-26 00:14:38 +01:00
parent d0f84e936f
commit 8958b9147b
1 changed files with 8 additions and 0 deletions

View File

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