]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
WEBUI: Changed icon
authorPiotr Kuchciak <piotr.kuchciak@gmail.com>
Thu, 23 Oct 2014 08:13:03 +0000 (10:13 +0200)
committerJaroslav Kysela <perex@perex.cz>
Thu, 23 Oct 2014 09:15:59 +0000 (11:15 +0200)
-Clean icon image cache
-Reset Icon

src/webui/static/app/chconf.js
src/webui/static/app/config.js
src/webui/static/app/ext.css
src/webui/static/icons/clean.png [new file with mode: 0644]
src/webui/static/icons/reseticon.png [new file with mode: 0644]

index 1fd5dee2706471130f6c8332f19cf6e4987a5ab2..895704060b860f978b70abb2fcfc3234fa308cd4 100644 (file)
@@ -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
             });
index 481febec132a8700e0f92c3323082f820448dfb2..3ba0bb4bf3688b15d3c5b3b3477d3b34c69d62e0 100644 (file)
@@ -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
     });
 
index e9f1b673b8e09cb14e41f4855a28d7962ed13a2d..29cd3c661fcadf93c660f0684468c2865a896780 100644 (file)
     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 (file)
index 0000000..d9f914a
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 (file)
index 0000000..c0622c6
Binary files /dev/null and b/src/webui/static/icons/reseticon.png differ