]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
WEBUI: Cosmetic change icon
authorPiotr Kuchciak <piotr.kuchciak@gmail.com>
Sat, 8 Nov 2014 13:59:23 +0000 (14:59 +0100)
committerJaroslav Kysela <perex@perex.cz>
Mon, 10 Nov 2014 14:05:51 +0000 (15:05 +0100)
-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

src/webui/static/app/dvr.js
src/webui/static/app/ext.css
src/webui/static/icons/abort.png [new file with mode: 0644]
src/webui/static/icons/download.png [new file with mode: 0644]
src/webui/static/icons/upcoming_rec.png

index b0e18f282a169446a4f340f2423ddb3b7ee07ae8..e01c6a2c511ba1dd00d31b2b7702233c60138b63 100644 (file)
@@ -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
             });
index 0716d8144d46d9caa46e040843c8405605031997..1066cbba4d96b1f642f2d85182fd8c64fa760a60 100644 (file)
     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 (file)
index 0000000..f009891
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 (file)
index 0000000..f0e6ceb
Binary files /dev/null and b/src/webui/static/icons/download.png differ
index e54d0f26b0a53945250990cf336a475f7c853595..e6ba349d2be303fc65c682b80d9b14f10a2dc649 100644 (file)
Binary files a/src/webui/static/icons/upcoming_rec.png and b/src/webui/static/icons/upcoming_rec.png differ