PASTEDOWN
40
0
141 1.08 KB 44
141 1.08 KB 44
CyTube Cinema Mode User Style
By FloorbCreated: 2024-10-06 02:20:07
Updated: 2024-10-06 02:36:35
Expiry: Never
See the comments for what this does.
/* Floorb's CyTube MLPA cinema mode user style
* Created to avoid static UI elements that clutter up the UI when watching on the big screen,
* and more importantly to avoid burning them in to a CRT.
* Also shows the drink bar in cinema mode.
*/
/* Keep the drink bar visible */
body.cinemachat #drinkbarwrap {
position: relative;
z-index: 9999;
top: -55px;
}
/* Delet chat input */
body.cinemachat #chatwrap > form {
display: none;
}
/* Delet chat header */
body.cinemachat #chatheader {
display: none;
}
/* Get rid of static borders */
body.cinemachat #chatwrap #messagebuffer {
border: none;
height: 100% !important;
overflow: hidden; /* get rid of the scroll bar */
}
/* Get rid of static buttons */
body.cinemachat #cinematoggle, #cinemasizeinc, #cinemasizedec {
display: none;
}
/* Move the poll overlay to not conflict with the drink bar */
body.cinemachat:not(.synchtube) #pollwrap div.active:not(.dismissed) {
left: 5px !important;
top: 60px !important;
}