Yesterday, 05:29 PM
Perfect! That solved my problem. Thank you very much, Ted.
For future reference in case anyone is interested: by setting the display mode to TV and adding the following custom CSS (though it could do with some work) to prevent the controls disappearing (Original source: Zedt.eu), the controls should be accessible to people with Tobii eye tracking products:
/* permanently show player controls */
.osdHeader:hover,
.videoOsdBottom:hover {
opacity: 1 !important;
}
.osdHeader,
.videoOsdBottom {
opacity: 1 !important;
}
/* fix for player controls overlapping 'next video' panel */
.upNextContainer {
z-index: 5;
}
For future reference in case anyone is interested: by setting the display mode to TV and adding the following custom CSS (though it could do with some work) to prevent the controls disappearing (Original source: Zedt.eu), the controls should be accessible to people with Tobii eye tracking products:
/* permanently show player controls */
.osdHeader:hover,
.videoOsdBottom:hover {
opacity: 1 !important;
}
.osdHeader,
.videoOsdBottom {
opacity: 1 !important;
}
/* fix for player controls overlapping 'next video' panel */
.upNextContainer {
z-index: 5;
}