WEBUI JS: Replace the zoom icon with the small blue triangle
This commit is contained in:
parent
8f7e6e565e
commit
9e007f5662
5 changed files with 7 additions and 11 deletions
|
@ -223,7 +223,7 @@ tvheadend.epgDetails = function(event) {
|
|||
};
|
||||
|
||||
tvheadend.epg = function() {
|
||||
var lookup = '<span class="x-zoom"> </span>';
|
||||
var lookup = '<span class="x-linked"> </span>';
|
||||
|
||||
var actions = new Ext.ux.grid.RowActions({
|
||||
id: 'details',
|
||||
|
|
|
@ -322,14 +322,11 @@
|
|||
background-image: url(../icons/film_edit.png) !important;
|
||||
}
|
||||
|
||||
.zoom {
|
||||
background-image: url(../icons/zoom.png) !important;
|
||||
}
|
||||
|
||||
.x-zoom {
|
||||
.x-linked {
|
||||
display: inline-block;
|
||||
background-image: url(../icons/zoom.png) !important;
|
||||
width: 16px;
|
||||
background-image: url(../icons/linked.gif) !important;
|
||||
background-repeat: no-repeat;
|
||||
width: 4px;
|
||||
}
|
||||
|
||||
.x-smallhdr {
|
||||
|
|
|
@ -63,7 +63,7 @@ tvheadend.status_subs = function(panel, index)
|
|||
|
||||
function renderBw(value, item, record) {
|
||||
var txt = parseInt(value / 125);
|
||||
return '<span class="x-zoom"> </span>' + txt;
|
||||
return '<span class="x-linked"> </span>' + txt;
|
||||
}
|
||||
|
||||
var subsCm = new Ext.grid.ColumnModel([
|
||||
|
@ -264,7 +264,7 @@ tvheadend.status_streams = function(panel, index)
|
|||
|
||||
function renderBw(value, item, record) {
|
||||
var txt = parseInt(value / 1024);
|
||||
return '<span class="x-zoom"> </span>' + txt;
|
||||
return '<span class="x-linked"> </span>' + txt;
|
||||
}
|
||||
|
||||
function renderBer(value, item, store) {
|
||||
|
|
BIN
src/webui/static/icons/linked.gif
Normal file
BIN
src/webui/static/icons/linked.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 76 B |
|
@ -1 +0,0 @@
|
|||
../../../../vendor/famfamsilk/zoom.png
|
Loading…
Add table
Reference in a new issue