mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
22 lines
464 B
CSS
22 lines
464 B
CSS
video.video-js {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
min-height: 100%
|
|
}
|
|
|
|
.vjs-airplay .vjs-icon-placeholder::before {
|
|
content: url("../img/airplay.png");
|
|
}
|
|
|
|
|
|
/*
|
|
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;
|
|
}
|