mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 23:17:21 -06:00
- Fix torrent status icon vertical alignment in Web UI
This commit is contained in:
@@ -56,3 +56,7 @@
|
|||||||
color: #fff;
|
color: #fff;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#transferList img.statusIcon {
|
||||||
|
margin-bottom: -4px;
|
||||||
|
}
|
||||||
|
|||||||
@@ -231,7 +231,7 @@ var dynamicTable = new Class ({
|
|||||||
td.adopt(new ProgressBar(row[i].toFloat(), {'id': 'pb_'+id, 'width':80}));
|
td.adopt(new ProgressBar(row[i].toFloat(), {'id': 'pb_'+id, 'width':80}));
|
||||||
} else {
|
} else {
|
||||||
if(i==0) {
|
if(i==0) {
|
||||||
td.adopt(new Element('img', {'src':row[i]}));
|
td.adopt(new Element('img', {'src':row[i], 'class': 'statusIcon'}));
|
||||||
} else {
|
} else {
|
||||||
td.set('html', row[i]);
|
td.set('html', row[i]);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user