Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI: channels replace bullet_add with world_add in channel number o…
…perations, cosmetics
  • Loading branch information
perexg committed Dec 1, 2015
1 parent 418e81c commit 0479755
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions src/webui/static/app/chconf.js
Expand Up @@ -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({
Expand Down
18 changes: 9 additions & 9 deletions src/webui/static/app/ext.css
Expand Up @@ -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;
}
Expand Down Expand Up @@ -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;
}

Expand Down
1 change: 0 additions & 1 deletion src/webui/static/icons/bullet_add.png

This file was deleted.

1 change: 1 addition & 0 deletions src/webui/static/icons/world_add.png

0 comments on commit 0479755

Please sign in to comment.