diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js index 54f2721d..133ea9c1 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 f9253d91..0716d814 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 00000000..87219a49 Binary files /dev/null and b/src/webui/static/icons/stop_rec.png differ