From: Piotr Kuchciak Date: Sat, 8 Nov 2014 13:59:23 +0000 (+0100) Subject: WEBUI: Cosmetic change icon X-Git-Tag: v4.1~795 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56b0012f4a8173462b8276d86b93cd7ca4b4a66d;p=thirdparty%2Ftvheadend.git WEBUI: Cosmetic change icon -DVR changed icon download http://www.softicons.com/business-icons/flatastic-icons-part-4-by-custom-icon-design/download-icon -upcoming/current rec changed icon http://www.softicons.com/system-icons/oxygen-icons-by-oxygen/actions-view-calendar-upcoming-days-icon -changed icon Abort for round style http://www.softicons.com/toolbar-icons/flatastic-icons-part-1-by-custom-icon-design/delete-circle-icon --- diff --git a/src/webui/static/app/dvr.js b/src/webui/static/app/dvr.js index b0e18f282..e01c6a2c5 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 0716d8144..1066cbba4 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 000000000..f00989160 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 000000000..f0e6ceb5b 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 e54d0f26b..e6ba349d2 100644 Binary files a/src/webui/static/icons/upcoming_rec.png and b/src/webui/static/icons/upcoming_rec.png differ