Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI: change icon watch TV, Auto Record, add icon for HELP
Please add icon help for all button for all tabs because i am beginner
and i dont know how...
  • Loading branch information
pepsonEL authored and perexg committed Oct 10, 2014
1 parent 0d1f128 commit 089159f
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/webui/static/app/config.js
Expand Up @@ -216,6 +216,7 @@ tvheadend.miscconf = function(panel, index) {

var helpButton = new Ext.Button({
text: 'Help',
iconCls: 'help',
handler: function() {
new tvheadend.help('General Configuration', 'config_misc.html');
}
Expand Down
5 changes: 3 additions & 2 deletions src/webui/static/app/epg.js
Expand Up @@ -703,7 +703,7 @@ tvheadend.epg = function() {

tvheadend.autorecButton = new Ext.Button({
text: 'Create AutoRec',
iconCls: 'wand',
iconCls: 'autoRec',
tooltip: 'Create an automatic recording entry that will '
+ 'record all future programmes that matches '
+ 'the current query.',
Expand All @@ -723,7 +723,7 @@ tvheadend.epg = function() {
'->',
{
text: 'Watch TV',
iconCls: 'eye',
iconCls: 'watchTv',
handler: function() {
new tvheadend.VideoPlayer();
}
Expand All @@ -733,6 +733,7 @@ tvheadend.epg = function() {
'-',
{
text: 'Help',
iconCls: 'help',
handler: function() {
new tvheadend.help('Electronic Program Guide', 'epg.html');
}
Expand Down
12 changes: 12 additions & 0 deletions src/webui/static/app/ext.css
Expand Up @@ -390,6 +390,18 @@
background-image: url(../icons/channel_tags.png) !important;
}

.help{
background-image: url(../icons/help.png) !important;
}

.watchTv{
background-image: url(../icons/watch_tv.png) !important;
}

.autoRec{
background-image: url(../icons/auto_rec.png) !important;
}

.x-linked {
display: inline-block;
background-image: url(../icons/linked.gif) !important;
Expand Down
Binary file added src/webui/static/icons/auto_rec.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/webui/static/icons/help.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/webui/static/icons/watch_tv.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 089159f

Please sign in to comment.