From: Jaroslav Kysela Date: Tue, 1 Dec 2015 21:38:03 +0000 (+0100) Subject: WEBUI: channels replace bullet_add with world_add in channel number operations, cosmetics X-Git-Tag: v4.2.1~1415 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0479755722027a989f98ab09424a3afbe7b18a2b;p=thirdparty%2Ftvheadend.git WEBUI: channels replace bullet_add with world_add in channel number operations, cosmetics --- diff --git a/src/webui/static/app/chconf.js b/src/webui/static/app/chconf.js index 31c8e6692..73527ec3c 100644 --- a/src/webui/static/app/chconf.js +++ b/src/webui/static/app/chconf.js @@ -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({ diff --git a/src/webui/static/app/ext.css b/src/webui/static/app/ext.css index 40fcbffa4..e90dfa14b 100644 --- a/src/webui/static/app/ext.css +++ b/src/webui/static/app/ext.css @@ -168,10 +168,6 @@ background-image: url(../icons/find.png) !important; } -.chnumops { - background-image: url(../icons/brick.png) !important; -} - .uilevel { background-image: url(../icons/application_form.png) !important; } @@ -380,19 +376,23 @@ 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 index 1695294ac..000000000 --- a/src/webui/static/icons/bullet_add.png +++ /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 index 000000000..531741ed3 --- /dev/null +++ b/src/webui/static/icons/world_add.png @@ -0,0 +1 @@ +../../../../vendor/famfamsilk/world_add.png \ No newline at end of file