diff --git a/src/webui/static/app/chconf.js b/src/webui/static/app/chconf.js index 1fd5dee2..89570406 100644 --- a/src/webui/static/app/chconf.js +++ b/src/webui/static/app/chconf.js @@ -206,7 +206,7 @@ tvheadend.channel_tab = function(panel, index) builder: function() { return new Ext.Toolbar.Button({ tooltip: 'Reset (clear) the selected icon URLs', - iconCls: 'cancel', + iconCls: 'resetIcon', text: 'Reset Icon', disabled: false }); diff --git a/src/webui/static/app/config.js b/src/webui/static/app/config.js index 481febec..3ba0bb4b 100644 --- a/src/webui/static/app/config.js +++ b/src/webui/static/app/config.js @@ -230,7 +230,7 @@ tvheadend.miscconf = function(panel, index) { var imagecacheButton = new Ext.Button({ text: "Clean image (icon) cache", tooltip: 'Clean image cache on storage', - iconCls: 'drive', + iconCls: 'clean', handler: cleanImagecache }); diff --git a/src/webui/static/app/ext.css b/src/webui/static/app/ext.css index e9f1b673..29cd3c66 100644 --- a/src/webui/static/app/ext.css +++ b/src/webui/static/app/ext.css @@ -446,6 +446,14 @@ background-image: url(../icons/subscriptions.png) !important; } +.clean{ + background-image: url(../icons/clean.png) !important; +} + +.resetIcon{ + background-image: url(../icons/reseticon.png) !important; +} + .x-linked { display: inline-block; background-image: url(../icons/linked.gif) !important; diff --git a/src/webui/static/icons/clean.png b/src/webui/static/icons/clean.png new file mode 100644 index 00000000..d9f914aa Binary files /dev/null and b/src/webui/static/icons/clean.png differ diff --git a/src/webui/static/icons/reseticon.png b/src/webui/static/icons/reseticon.png new file mode 100644 index 00000000..c0622c6b Binary files /dev/null and b/src/webui/static/icons/reseticon.png differ