From: Piotr Kuchciak Date: Fri, 7 Nov 2014 19:15:14 +0000 (+0100) Subject: WEBUI EPG: Change text and icon for stop button X-Git-Tag: v4.1~796 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36a60f8f9ee971eb8a9c91ac0f317722e7d8d71e;p=thirdparty%2Ftvheadend.git WEBUI EPG: Change text and icon for stop button --- diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js index 54f2721d4..133ea9c14 100644 --- a/src/webui/static/app/epg.js +++ b/src/webui/static/app/epg.js @@ -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', diff --git a/src/webui/static/app/ext.css b/src/webui/static/app/ext.css index f9253d917..0716d8144 100644 --- a/src/webui/static/app/ext.css +++ b/src/webui/static/app/ext.css @@ -198,6 +198,10 @@ 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 index 000000000..87219a49d Binary files /dev/null and b/src/webui/static/icons/stop_rec.png differ