Merge pull request 'df-queuetablewidth-patch' (#24) from df/webif:df-queuetablewidth-patch into master

Reviewed-on: hummypkg/webif#24
This commit is contained in:
af123 2021-02-24 12:46:50 +00:00
commit 3f74654ea2
2 changed files with 9 additions and 1 deletions

View File

@ -40,7 +40,8 @@ function load()
$('<td>').append($('<a>', {
'class': 'file',
href: '#',
html: v.file
html: v.file,
title: v.file
})).appendTo($row);
$('<td>', { html: v.action + ' ' + v.args })
.appendTo($row);

View File

@ -1,3 +1,10 @@
/* constrain File column width */
td:nth-child(3), th:nth-child(3)
{
max-width: 50ch;
overflow: hidden;
text-overflow: ellipsis;
}
td.status
{