2022-01-19 17:24:11 +01:00
|
|
|
#remote-participant {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2022-07-05 12:03:35 +02:00
|
|
|
.container {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2022-10-24 17:08:32 +02:00
|
|
|
.withCaptions {
|
|
|
|
height: calc(100% - var(--ov-captions-height, 250px)) !important;
|
2022-07-05 12:03:35 +02:00
|
|
|
}
|
2022-01-19 17:24:11 +01:00
|
|
|
|
2022-02-24 10:21:58 +01:00
|
|
|
.layout {
|
|
|
|
position: relative;
|
2022-01-19 17:24:11 +01:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
min-width: 350px !important;
|
2022-02-24 10:21:58 +01:00
|
|
|
min-height: 100%;
|
2022-01-19 17:24:11 +01:00
|
|
|
width: inherit;
|
2022-02-24 10:21:58 +01:00
|
|
|
height: -webkit-fill-available;
|
|
|
|
height: -moz-available;
|
2022-01-19 17:24:11 +01:00
|
|
|
}
|
|
|
|
|
2022-07-05 12:03:35 +02:00
|
|
|
.OT_root,
|
|
|
|
.OT_root * {
|
2022-01-19 17:24:11 +01:00
|
|
|
color: #ffffff;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
font-size: 100%;
|
|
|
|
vertical-align: baseline;
|
2022-07-05 12:03:35 +02:00
|
|
|
}
|
2022-01-19 17:24:11 +01:00
|
|
|
|
|
|
|
|
2022-07-05 12:03:35 +02:00
|
|
|
.OT_publisher,
|
|
|
|
.OT_subscriber {
|
2022-01-19 17:24:11 +01:00
|
|
|
position: relative;
|
2022-02-24 13:02:00 +01:00
|
|
|
min-width: 0px;
|
|
|
|
min-height: 0px;
|
2022-07-05 12:03:35 +02:00
|
|
|
padding: 3px;
|
2022-02-24 13:02:00 +01:00
|
|
|
transition-duration: 0.1s;
|
|
|
|
transition-timing-function: ease-in-out;
|
2022-07-05 12:03:35 +02:00
|
|
|
}
|
2022-01-19 17:24:11 +01:00
|
|
|
|
2022-07-05 12:03:35 +02:00
|
|
|
.OT_publisher .OT_video-element,
|
|
|
|
.OT_subscriber .OT_video-element {
|
2022-01-19 17:24:11 +01:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
-webkit-transform-origin: 0 0;
|
|
|
|
transform-origin: 0 0;
|
2022-07-05 12:03:35 +02:00
|
|
|
}
|