diff --git a/src/webui/static/app/dvr.js b/src/webui/static/app/dvr.js index b0e18f28..e01c6a2c 100644 --- a/src/webui/static/app/dvr.js +++ b/src/webui/static/app/dvr.js @@ -129,7 +129,7 @@ tvheadend.dvr_upcoming = function(panel, index) { builder: function() { return new Ext.Toolbar.Button({ tooltip: 'Abort the selected recording', - iconCls: 'cancel', + iconCls: 'abort', text: 'Abort', disabled: true }); @@ -220,7 +220,7 @@ tvheadend.dvr_finished = function(panel, index) { builder: function() { return new Ext.Toolbar.Button({ tooltip: 'Download the selected recording', - iconCls: 'save', + iconCls: 'download', text: 'Download', disabled: true }); @@ -302,7 +302,7 @@ tvheadend.dvr_failed = function(panel, index) { builder: function() { return new Ext.Toolbar.Button({ tooltip: 'Download the selected recording', - iconCls: 'save', + iconCls: 'download', text: 'Download', disabled: true }); diff --git a/src/webui/static/app/ext.css b/src/webui/static/app/ext.css index 0716d814..1066cbba 100644 --- a/src/webui/static/app/ext.css +++ b/src/webui/static/app/ext.css @@ -482,6 +482,14 @@ background-image: url(../icons/time_schedules.png) !important; } +.download{ + background-image: url(../icons/download.png) !important; +} + +.abort{ + background-image: url(../icons/abort.png) !important; +} + .x-linked { display: inline-block; background-image: url(../icons/linked.gif) !important; diff --git a/src/webui/static/icons/abort.png b/src/webui/static/icons/abort.png new file mode 100644 index 00000000..f0098916 Binary files /dev/null and b/src/webui/static/icons/abort.png differ diff --git a/src/webui/static/icons/download.png b/src/webui/static/icons/download.png new file mode 100644 index 00000000..f0e6ceb5 Binary files /dev/null and b/src/webui/static/icons/download.png differ diff --git a/src/webui/static/icons/upcoming_rec.png b/src/webui/static/icons/upcoming_rec.png index e54d0f26..e6ba349d 100644 Binary files a/src/webui/static/icons/upcoming_rec.png and b/src/webui/static/icons/upcoming_rec.png differ