forked from hummypkg/webif
tweaking VFD
git-svn-id: file:///root/webif/svn/pkg/webif/trunk@3876 2a923420-c742-0410-a762-8d5b09965624
This commit is contained in:
parent
44814fb791
commit
92a0cbd01b
@ -1,7 +1,7 @@
|
||||
Package: webif
|
||||
Priority: optional
|
||||
Section: web
|
||||
Version: 1.4.0-14
|
||||
Version: 1.4.0-15
|
||||
Architecture: mipsel
|
||||
Maintainer: af123@hpkg.tv
|
||||
Depends: tcpfix,webif-channelicons(>=1.1.25),lighttpd(>=1.4.39-1),jim(>=0.77),jim-oo(>=0.77),jim-sqlite3(>=0.76),jim-cgi(>=0.7-1),jim-binary(>=0.76),service-control(>=2.3),busybox(>=1.20.2-1),lsof(>=4.87),epg(>=1.2.5),hmt(>=2.0.10),ssmtp,cron-daemon(>=1.18.3-3),at(>=3.1.18),anacron,trm(>=1.1),openssl-command,nicesplice,id3v2,file,rsvsync(>=1.1.10),webif-charts(>=1.2-1),stripts(>=1.2.5-3),tmenu(>=1.21-2),ffmpeg,id3v2,multienv(>=1.6),tcpping(>=1.1),e2fsprogs,wireless-tools(>=29-1),dbupdate,recmon(>=2.0.7),hwctl,nugget(>=0.95),sqlite3(>=3.15.1)
|
||||
|
@ -5,11 +5,30 @@
|
||||
|
||||
/* The examples below can be uncommented if required. */
|
||||
|
||||
/* Hide the VFD display */
|
||||
/* Hide the Guidance icons on the schedule and EPG pages */
|
||||
/* img.guidance { display: none; } */
|
||||
|
||||
/* Hide the VFD display */
|
||||
/* #vfd { display: none; } */
|
||||
|
||||
/* Hide the Idle time */
|
||||
/* Set VFD to orange */
|
||||
/* #vfd { color: #ffa500; } */
|
||||
|
||||
/* Set VFD to orange with no black background */
|
||||
/* #vfd { color: #ffa500; background: transparent; } */
|
||||
|
||||
/* Move VFD left to align with Humax above */
|
||||
/* #vfd { left: 180px; } */
|
||||
|
||||
/* Hide the Idle time */
|
||||
/* #idletime { display: none; } */
|
||||
|
||||
/* Make the package screens more compact */
|
||||
/* table.avail td, table.inst td, table.upgr td { padding: 0 !important; } */
|
||||
|
||||
/* Shrink main menu icons */
|
||||
/* img.mmenu { width: 120px !important; height: 125px !important; } */
|
||||
|
||||
/* Wrap long lines in the queue screen log column */
|
||||
/* td.queuelog { white-space: normal !important; } */
|
||||
|
||||
|
34
webif/html/css/EXTRA.css.distrib
Normal file
34
webif/html/css/EXTRA.css.distrib
Normal file
@ -0,0 +1,34 @@
|
||||
/* This style sheet can be customised to change the look and feel of some
|
||||
* web interface elements.
|
||||
* It will not be overwritten on webif updates.
|
||||
*/
|
||||
|
||||
/* The examples below can be uncommented if required. */
|
||||
|
||||
/* Hide the Guidance icons on the schedule and EPG pages */
|
||||
/* img.guidance { display: none; } */
|
||||
|
||||
/* Hide the VFD display */
|
||||
/* #vfd { display: none; } */
|
||||
|
||||
/* Set VFD to orange */
|
||||
/* #vfd { color: #ffa500; } */
|
||||
|
||||
/* Set VFD to orange with no black background */
|
||||
/* #vfd { color: #ffa500; background: transparent; } */
|
||||
|
||||
/* Move VFD left to align with Humax above */
|
||||
/* #vfd { left: 180px; } */
|
||||
|
||||
/* Hide the Idle time */
|
||||
/* #idletime { display: none; } */
|
||||
|
||||
/* Make the package screens more compact */
|
||||
/* table.avail td, table.inst td, table.upgr td { padding: 0 !important; } */
|
||||
|
||||
/* Shrink main menu icons */
|
||||
/* img.mmenu { width: 120px !important; height: 125px !important; } */
|
||||
|
||||
/* Wrap long lines in the queue screen log column */
|
||||
/* td.queuelog { white-space: normal !important; } */
|
||||
|
@ -81,19 +81,16 @@ div.container .usb
|
||||
top: 8px;
|
||||
}
|
||||
|
||||
div.container .vfd
|
||||
#vfd
|
||||
{
|
||||
position: absolute;
|
||||
left: 200px;
|
||||
top: 55px;
|
||||
}
|
||||
|
||||
#vfd div
|
||||
{
|
||||
background: #444;
|
||||
color: #1bd1b0;
|
||||
font-size: 20px;
|
||||
padding: 5px;
|
||||
font-family: vfd, 'Lucida Console', Monaco, monospace;
|
||||
}
|
||||
|
||||
#idletime
|
||||
@ -698,9 +695,3 @@ a.breadcrumb:hover
|
||||
color: #008080;
|
||||
}
|
||||
|
||||
.vfd
|
||||
{
|
||||
font-family: vfd, 'Lucida Console', Monaco, monospace;
|
||||
color: #1bd1b0;
|
||||
}
|
||||
|
||||
|
@ -26,7 +26,7 @@ if ($('#vfd').length)
|
||||
function updatevfd()
|
||||
{
|
||||
$.get('/cgi-bin/vfd.jim', function(vfd) {
|
||||
$('#vfd div').html(vfd);
|
||||
$('#vfd').html(vfd);
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -5,10 +5,8 @@ source /mod/webif/lib/setup
|
||||
if {[file exists "/tmp/.vfd"]} {
|
||||
puts {
|
||||
<div id=vfd>
|
||||
<div class=vfd>
|
||||
Loading...
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user