- Fix torrent status icon vertical alignment in Web UI

This commit is contained in:
Christophe Dumez 2009-11-29 14:44:30 +00:00
parent 63e5339690
commit ecf48b3a7b
2 changed files with 5 additions and 1 deletions

View file

@ -231,7 +231,7 @@ var dynamicTable = new Class ({
td.adopt(new ProgressBar(row[i].toFloat(), {'id': 'pb_'+id, 'width':80}));
} else {
if(i==0) {
td.adopt(new Element('img', {'src':row[i]}));
td.adopt(new Element('img', {'src':row[i], 'class': 'statusIcon'}));
} else {
td.set('html', row[i]);
}