]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
WEBUI EPG: Change text and icon for stop button
authorPiotr Kuchciak <piotr.kuchciak@gmail.com>
Fri, 7 Nov 2014 19:15:14 +0000 (20:15 +0100)
committerJaroslav Kysela <perex@perex.cz>
Mon, 10 Nov 2014 14:05:51 +0000 (15:05 +0100)
src/webui/static/app/epg.js
src/webui/static/app/ext.css
src/webui/static/icons/stop_rec.png [new file with mode: 0644]

index 54f2721d4b0af6fb39f03f8c560c72609453c23a..133ea9c14f70a3d21e59eb8e547d01450a6bd67f 100644 (file)
@@ -167,9 +167,9 @@ tvheadend.epgDetails = function(event) {
         if (recording) {
           buttons.push(new Ext.Button({
               handler: stopDVR,
-              iconCls: 'cancel',
+              iconCls: 'stopRec',
               tooltip: 'Stop recording of this program',
-              text: "Stop DVR"
+              text: "Stop record"
           }));
         }
 
@@ -214,8 +214,8 @@ tvheadend.epgDetails = function(event) {
         title: 'Broadcast Details',
         iconCls: 'broadcast_details',
         layout: 'fit',
-        width: 600,
-        height: 400,
+        width: 650,
+        height: 450,
         constrainHeader: true,
         buttons: buttons,
         buttonAlign: 'center',
index f9253d91765dae8291ba39c1250b434aa5295601..0716d8144d46d9caa46e040843c8405605031997 100644 (file)
     background-image: url(../icons/rec.png) !important;
 }
 
+.stopRec {
+    background-image: url(../icons/stop_rec.png) !important;
+}
+
 .info {
     background-image: url(../icons/information.png) !important;
 }
diff --git a/src/webui/static/icons/stop_rec.png b/src/webui/static/icons/stop_rec.png
new file mode 100644 (file)
index 0000000..87219a4
Binary files /dev/null and b/src/webui/static/icons/stop_rec.png differ