EXTRA.css - Please post tweaks here (with screengrabs)

I don't see 'ENC' flags in the WebIf EPG, is it possible for you to post a screen capture?

If Auto-Unprotect is doing it's job, the ENC flag on Hi-Def programmes should be removed from all screens
It's nothing to do with Auto-Unprotect. A program that hasn't been transmitted yet can't be encrypted. As MymsMan has already stated, this 'Enc' flag was a recent addition to the EPG screens by af123, and simply denotes that the broadcaster has specified that recordings made of that content should be encrypted by a Freeview compliant PVR.
This was the topic of the recent thread HERE about encryption being applied to some SD broadcasts from the BBC, and is a means to identify such broadcasts.
 
Last edited:
I'm not sure why, but I have checked recordings that I have not scheduled (as your example), and recordings that I have scheduled to record and neither show the ENC flag i.e. :-

Not Scheduled for recording
not-scheduled.jpg

Scheduled for recording
not-scheduled.jpg
EDIT
I'm guessing this was due to my not running Webif 1.2.6-1, epg 1.2.1 or auto-unprotect 2.0.2

I'm now running all of the above and it is clear af123 has added the ENC flag to all BBC HD (and BBC SD marked for encryption) programmes in the EPG, most of the non BBC HD channels are also ENCed but Al Jazera HD, QVC HD, RT HD etc. are not
 

Attachments

  • sheduled.jpg
    sheduled.jpg
    48.9 KB · Views: 13
Last edited:
We're not using Auto-Unprotect.

I'm not bothered about keeping the ENC flag on any stations it just that so far I've only seen it on the HD channels, but as you can see it is against every program which I thought was the case anyway.

2016 01 16 - Humax HDR Fox T2 (humax).png

EDIT:

I had to remove the line
img[src^="/images/749_1_26_Video_Encryption"] { display: none; }

to get these to show up again.
 
If you update to webif 1.2.6-2 then you can hide the Enc icons from just the EPG with:

Code:
img.epgenc { display: none; }
 
The edits I have to EXTRA.css look like they aren't working.

I have lines to disable displaying of the Genre, Enc and Guidance icons but all are now showing on the WebIF EPG again.
 
No just double checked and it is still there:

Code:
/* 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.
*/

img.epgenc { display: none; }

img[src^="/img/Guidance"] { display: none; }

img.genre { display: none; }
 
I edited EXTRA.css via Webif
HTML:
/* Set VFD to mauve */

#vfd { color: #990066; }
I saved the file, refreshed the page, no change.

I made the file executable, no change.

I cleared the Site Data in my Chrome browser, no change.
I rebooted the HDR T2, no change.
I telnetted in to see if the file had changed, and it had.

Code:
humax# ls -l
-rwxr-xr-x    1 root     root           995 Mar 18 08:59 EXTRA.css
-rw-------    1 root     root           999 Mar  2 23:39 EXTRA.css.distrib

What am I doing wrong?
 
What am I doing wrong?
I don't know - that's working for me (if a bit hard to read!)

Screenshot%202017-03-18%2010.33.57.png


Show us your whole EXTRA.css file.
 
Code:
/* 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 mauve */
#vfd { color: #990066; }

/* Set VFD to orange with no black background */
/* #vfd { color: #990066; 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; } */

If it's working for you, I'm guessing it's some strange caching with Chrome.

Thanks for the reply.
 
Done. No change.

It's no big deal, just slightly puzzling.

[Edit] It's Chrome caching.

It worked in Microsoft Edge.
(First time I've launched that!)

[Another Edit] Weird.

Changed it to yellow.

Changes are immediate in Edge.
Non-existent in Chrome.
 
Last edited:
Yeah... try:

Code:
#vfd { color: #990066 !important; }

Edit: Don't use this
 
Last edited:
That didn't work.

I'm also using the Stylish extension...

Ah, that was it.

I put the code in Stylish and it worked.

Stylish shouldn't have blocked it, as #vfd wasn't in it.
 
Some changes I`ve done to sort things that bug me:

Adding to EXTRA.css or appending to style.css

Stop epg and file browser list jumping when load has finished:

Code:
div div#spinner {
    position: absolute;
  top: 120px;
  left: 82px;
}

If this effects anything I`ve not spotted please reply
Edit: change for file browser does effect other areas so removed, I have changes to fix that but that involves other files so I will post in a new thread

Change EPG grid height (adjust for your screen height) when using Grid EPG Fixed Scrolling?

Code:
div div#xepg {height: 850px !important; }

Restyle warning box (don't like the default colours) and fix for warning too wide on popup, and stop warning box overlaying drop down menu

Code:
.warningbox {
z-index: 20 !important;
max-width: 98%;
color: darkred  !important;
background: #FFF733 !important;
}
.ui-dialog {
  opacity: 0.92 !important;
}

warning box.png
 
Last edited:
If this effects anything I`ve not spotted please reply
Edit: change for file browser does effect other areas so removed, I have changes to fix that but that involves other files so I will post in a new thread
Affect! Effect means something else.
 
Back
Top