1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-22 12:34:19 +00:00

- 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

@ -56,3 +56,7 @@
color: #fff;
cursor: pointer;
}
#transferList img.statusIcon {
margin-bottom: -4px;
}

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]);
}