Move all icon resources to icon folder root

This commit is contained in:
jagannatharjun 2020-05-18 20:30:51 +05:30
parent 841536c9c5
commit ab91d546e5
166 changed files with 353 additions and 396 deletions

View file

@ -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,