2020-08-24 04:06:58 +02:00
|
|
|
video.video-js {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
min-height: 100%
|
|
|
|
}
|
|
|
|
|
2020-09-28 08:04:42 +02:00
|
|
|
/* show big play button when paused */
|
|
|
|
.vjs-has-started.vjs-paused .vjs-big-play-button{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-08-24 04:06:58 +02:00
|
|
|
.vjs-airplay .vjs-icon-placeholder::before {
|
|
|
|
content: url("../img/airplay.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-09-03 12:29:55 +02:00
|
|
|
/*
|
|
|
|
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.
|
2020-09-21 00:49:15 +02:00
|
|
|
Some context here:
|
|
|
|
https://github.com/owncast/owncast/issues/165
|
2020-09-03 12:29:55 +02:00
|
|
|
*/
|
2020-09-21 00:49:15 +02:00
|
|
|
video.vjs-tech:not([src]) {
|
2020-09-03 12:29:55 +02:00
|
|
|
display: none;
|
|
|
|
}
|