]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
WEBUI: channels replace bullet_add with world_add in channel number operations, cosmetics
authorJaroslav Kysela <perex@perex.cz>
Tue, 1 Dec 2015 21:38:03 +0000 (22:38 +0100)
committerJaroslav Kysela <perex@perex.cz>
Tue, 1 Dec 2015 21:38:21 +0000 (22:38 +0100)
src/webui/static/app/chconf.js
src/webui/static/app/ext.css
src/webui/static/icons/bullet_add.png [deleted symlink]
src/webui/static/icons/world_add.png [new symlink]

index 31c8e6692e8828853987eaef140c890248e2e78a..73527ec3c9c787cc5b940f33585a2aacc1c8dea2 100644 (file)
@@ -142,25 +142,25 @@ tvheadend.channel_tab = function(panel, index)
             m.add({
                 name: 'lowno',
                 tooltip: _('Assign lowest free channel number'),
-                iconCls: 'bullet_add',
+                iconCls: 'chnumops_low',
                 text: _('Assign Number')
             });
             m.add({
                 name: 'noup',
                 tooltip: _('Move channel one number up'),
-                iconCls: 'arrow_up',
+                iconCls: 'chnumops_up',
                 text: _('Number Up')
             });
             m.add({
                 name: 'nodown',
                 tooltip: _('Move channel one number down'),
-                iconCls: 'arrow_down',
+                iconCls: 'chnumops_down',
                 text: _('Number Down')
             });
             m.add({
                 name: 'swap',
                 tooltip: _('Swap the numbers for the two selected channels'),
-                iconCls: 'arrow_switch',
+                iconCls: 'chnumops_swap',
                 text: _('Swap Numbers')
             });
             return new Ext.Toolbar.Button({
index 40fcbffa48421504462efe97f80b5317dbe1c6fc..e90dfa14b6b9ef5bbf04fd9609649f0baf581706 100644 (file)
     background-image: url(../icons/find.png) !important;
 }
 
-.chnumops {
-    background-image: url(../icons/brick.png) !important;
-}
-
 .uilevel {
     background-image: url(../icons/application_form.png) !important;
 }
     background-image: url(../icons/arrow_branch.png) !important;
 }
 
-.bullet_add {
-    background-image: url(../icons/bullet_add.png) !important;
+.chnumops {
+    background-image: url(../icons/brick.png) !important;
+}
+
+.chnumops_low {
+    background-image: url(../icons/world_add.png) !important;
 }
 
-.arrow_up {
+.chnumops_up {
     background-image: url(../icons/arrow_up.png) !important;
 }
 
-.arrow_down {
+.chnumops_down {
     background-image: url(../icons/arrow_down.png) !important;
 }
 
-.arrow_switch {
+.chnumops_swap {
     background-image: url(../icons/arrow_switch.png) !important;
 }
 
diff --git a/src/webui/static/icons/bullet_add.png b/src/webui/static/icons/bullet_add.png
deleted file mode 120000 (symlink)
index 1695294..0000000
+++ /dev/null
@@ -1 +0,0 @@
-../../../../vendor/famfamsilk/bullet_add.png
\ No newline at end of file
diff --git a/src/webui/static/icons/world_add.png b/src/webui/static/icons/world_add.png
new file mode 120000 (symlink)
index 0000000..531741e
--- /dev/null
@@ -0,0 +1 @@
+../../../../vendor/famfamsilk/world_add.png
\ No newline at end of file