Add text-overflow for file info box

This commit is contained in:
Aleksander Machniak 2014-03-12 10:53:50 +01:00
parent 6f48c4d399
commit 1be5ece476

View file

@ -255,12 +255,21 @@
} }
*/ */
#fileinfobox table {
table-layout: fixed;
}
#fileinfobox table td.label { #fileinfobox table td.label {
width: 1%; width: 60px;
font-weight: bold; font-weight: bold;
padding-right: 0; padding-right: 0;
} }
#fileinfobox table td.data {
overflow: hidden;
text-overflow: ellipsis;
}
#fileinfobox table td.data.filename { #fileinfobox table td.data.filename {
font-weight: bold; font-weight: bold;
} }