mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-07 05:31:25 -07:00
Move all icon resources to icon folder root
This commit is contained in:
parent
841536c9c5
commit
ab91d546e5
166 changed files with 353 additions and 396 deletions
|
@ -314,7 +314,7 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
});
|
||||
|
||||
const createLi = function(columnName, text) {
|
||||
const html = '<a href="#' + columnName + '" ><img src="images/qbt-theme/checked.svg"/>' + window.qBittorrent.Misc.escapeHtml(text) + '</a>';
|
||||
const html = '<a href="#' + columnName + '" ><img src="images/checked.svg"/>' + window.qBittorrent.Misc.escapeHtml(text) + '</a>';
|
||||
return new Element('li', {
|
||||
html: html
|
||||
});
|
||||
|
@ -897,7 +897,7 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
break; // do nothing
|
||||
}
|
||||
|
||||
const img_path = 'images/skin/' + state + '.svg';
|
||||
const img_path = 'images/' + state + '.svg';
|
||||
|
||||
if (td.getChildren('img').length > 0) {
|
||||
const img = td.getChildren('img')[0];
|
||||
|
@ -1785,7 +1785,7 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
}
|
||||
else {
|
||||
const collapseIcon = new Element('img', {
|
||||
src: 'images/qbt-theme/go-down.svg',
|
||||
src: 'images/go-down.svg',
|
||||
styles: {
|
||||
'margin-left': (node.depth * 20)
|
||||
},
|
||||
|
@ -1799,7 +1799,7 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
id: fileNameId
|
||||
});
|
||||
const dirImg = new Element('img', {
|
||||
src: 'images/qbt-theme/inode-directory.svg',
|
||||
src: 'images/inode-directory.svg',
|
||||
styles: {
|
||||
'width': 15,
|
||||
'padding-right': 5,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue