]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
WEBUI JS: Replace the zoom icon with the small blue triangle
authorJaroslav Kysela <perex@perex.cz>
Mon, 29 Sep 2014 13:43:41 +0000 (15:43 +0200)
committerJaroslav Kysela <perex@perex.cz>
Mon, 29 Sep 2014 13:43:41 +0000 (15:43 +0200)
src/webui/static/app/epg.js
src/webui/static/app/ext.css
src/webui/static/app/status.js
src/webui/static/icons/linked.gif [new file with mode: 0644]
src/webui/static/icons/zoom.png [deleted symlink]

index d362d5f0b511b63ec8e1f36e0ed248ee6ed52aea..957288208366a20d68fa753cf42c987de542f04c 100644 (file)
@@ -223,7 +223,7 @@ tvheadend.epgDetails = function(event) {
 };
 
 tvheadend.epg = function() {
-    var lookup = '<span class="x-zoom">&nbsp;</span>';
+    var lookup = '<span class="x-linked">&nbsp;</span>';
 
     var actions = new Ext.ux.grid.RowActions({
         id: 'details',
index f52231b62ca94801030f36901e30e4f2ac5b192f..3c438d94e2c8540e700b533833b09c9e3691f7f5 100644 (file)
     background-image: url(../icons/film_edit.png) !important;
 }
 
-.zoom {
-    background-image: url(../icons/zoom.png) !important;
-}
-
-.x-zoom {
+.x-linked {
     display: inline-block;
-    background-image: url(../icons/zoom.png) !important;
-    width: 16px;
+    background-image: url(../icons/linked.gif) !important;
+    background-repeat: no-repeat;
+    width: 4px;
 }
 
 .x-smallhdr {
index 846285925a87aed38d7b5e970e2b45b5aaabaf14..b8a11ce2e7544274d5829ace7898726f56bad6c2 100644 (file)
@@ -63,7 +63,7 @@ tvheadend.status_subs = function(panel, index)
 
         function renderBw(value, item, record) {
             var txt = parseInt(value / 125);
-            return '<span class="x-zoom">&nbsp;</span>' + txt;
+            return '<span class="x-linked">&nbsp;</span>' + txt;
         }
 
         var subsCm = new Ext.grid.ColumnModel([
@@ -264,7 +264,7 @@ tvheadend.status_streams = function(panel, index)
 
         function renderBw(value, item, record) {
             var txt = parseInt(value / 1024);
-            return '<span class="x-zoom">&nbsp;</span>' + txt;
+            return '<span class="x-linked">&nbsp;</span>' + txt;
         }
 
         function renderBer(value, item, store) {
diff --git a/src/webui/static/icons/linked.gif b/src/webui/static/icons/linked.gif
new file mode 100644 (file)
index 0000000..f1eeedf
Binary files /dev/null and b/src/webui/static/icons/linked.gif differ
diff --git a/src/webui/static/icons/zoom.png b/src/webui/static/icons/zoom.png
deleted file mode 120000 (symlink)
index 634d463..0000000
+++ /dev/null
@@ -1 +0,0 @@
-../../../../vendor/famfamsilk/zoom.png
\ No newline at end of file