diff --git a/src/webui/static/app/chconf.js b/src/webui/static/app/chconf.js index 1342e641..83952525 100644 --- a/src/webui/static/app/chconf.js +++ b/src/webui/static/app/chconf.js @@ -200,6 +200,7 @@ tvheadend.channel_tab = function(panel, index) comet: 'channel', titleS: 'Channel', titleP: 'Channels', + iconCls: 'channels', tabIndex: index, help: function() { new tvheadend.help('Channels', 'config_channels.html'); diff --git a/src/webui/static/app/cteditor.js b/src/webui/static/app/cteditor.js index 2757e931..9a81a91b 100644 --- a/src/webui/static/app/cteditor.js +++ b/src/webui/static/app/cteditor.js @@ -9,6 +9,7 @@ tvheadend.cteditor = function(panel, index) comet: 'channeltag', titleS: 'Channel Tag', titleP: 'Channel Tags', + iconCls: 'channelTags', tabIndex: index, add: { url: 'api/channeltag', diff --git a/src/webui/static/app/ext.css b/src/webui/static/app/ext.css index 8c987784..67d092c8 100644 --- a/src/webui/static/app/ext.css +++ b/src/webui/static/app/ext.css @@ -382,6 +382,14 @@ background-image: url(../icons/other_filters.png) !important; } +.channels { + background-image: url(../icons/channels.png) !important; +} + +.channelTags{ + background-image: url(../icons/channel_tags.png) !important; +} + .x-linked { display: inline-block; background-image: url(../icons/linked.gif) !important; diff --git a/src/webui/static/icons/channel_tags.png b/src/webui/static/icons/channel_tags.png new file mode 100644 index 00000000..74087dce Binary files /dev/null and b/src/webui/static/icons/channel_tags.png differ diff --git a/src/webui/static/icons/channels.png b/src/webui/static/icons/channels.png new file mode 100644 index 00000000..900b98b0 Binary files /dev/null and b/src/webui/static/icons/channels.png differ