owncast/webroot/styles/video.css
Gabe Kangas c713e216d3
Allow selection of different stream variants in the player (#815)
* WIP video quality selector

* The quality selector works even though it is not pretty

* Support getting and setting variant name. Closes #743

* Sort video qualities

* Fix odd looking selected states of menubutton items

* Fix comment
2021-03-11 12:51:43 -08:00

57 lines
1.1 KiB
CSS

video.video-js {
width: 100%;
height: 100%;
display: block;
min-height: 100%
}
/* show big play button when paused */
.vjs-has-started.vjs-paused .vjs-big-play-button{
display: block;
}
.vjs-airplay .vjs-icon-placeholder::before {
content: url("../img/airplay.png");
}
.vjs-quality-selector .vjs-icon-placeholder::before {
content: url("../img/video-settings.png");
}
.vjs-big-play-button {
z-index: 100;
}
/*
videojs hack!!
for some reason, there are cases where a <video class="vjs-tech"> element gets embedded twice.
we only want the first one. the second obstructs the layout.
Some context here:
https://github.com/owncast/owncast/issues/165
*/
video.vjs-tech:not([src]) {
display: none;
}
#oc-custom-poster {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
}
/* Animation time for crossfading between poster thumbs */
.custom-thumbnail-image {
background-size: contain;
background-repeat: no-repeat;
background-position: center;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
overflow: hidden;
transition: opacity 2s;
}