2018-06-25 21:03:31 +00:00
|
|
|
/**
|
|
|
|
* Overrides for video containers that should not be centered aligned to avoid=
|
|
|
|
* clashing with the filmstrip.
|
|
|
|
*/
|
|
|
|
.vertical-filmstrip #etherpad,
|
2022-04-12 13:19:10 +00:00
|
|
|
.stage-filmstrip #etherpad,
|
|
|
|
.vertical-filmstrip #sharedvideo,
|
|
|
|
.stage-filmstrip #sharedvideo {
|
2018-06-25 21:03:31 +00:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2018-06-25 20:50:42 +00:00
|
|
|
/**
|
|
|
|
* Overrides for small videos in vertical filmstrip mode.
|
|
|
|
*/
|
2022-04-12 13:19:10 +00:00
|
|
|
.vertical-filmstrip .filmstrip__videos .videocontainer,
|
|
|
|
.stage-filmstrip .filmstrip__videos .videocontainer {
|
2021-09-21 07:40:46 +00:00
|
|
|
.self-view-mobile-portrait video {
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
2018-06-25 20:50:42 +00:00
|
|
|
}
|
2017-08-15 22:14:49 +00:00
|
|
|
|
2018-06-25 20:50:42 +00:00
|
|
|
/**
|
|
|
|
* Overrides for quality labels in filmstrip only mode. The styles adjust the
|
|
|
|
* labels' positioning as the filmstrip itself or filmstrip's remote videos
|
|
|
|
* appear and disappear.
|
|
|
|
*
|
|
|
|
* The class with-filmstrip is for when the filmstrip is visible.
|
|
|
|
* The class without-filmstrip is for when the filmstrip has been toggled to
|
|
|
|
* be hidden.
|
|
|
|
* The class opening is for when the filmstrip is transitioning from hidden
|
|
|
|
* to visible.
|
|
|
|
*/
|
2022-04-12 13:19:10 +00:00
|
|
|
.vertical-filmstrip .large-video-labels,
|
|
|
|
.stage-filmstrip .large-video-labels {
|
2018-06-25 20:50:42 +00:00
|
|
|
&.with-filmstrip {
|
|
|
|
right: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.with-filmstrip.opening {
|
|
|
|
transition: 0.9s;
|
|
|
|
transition-timing-function: ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.without-filmstrip {
|
|
|
|
transition: 1.2s ease-in-out;
|
|
|
|
transition-delay: 0.1s;
|
2017-08-15 22:14:49 +00:00
|
|
|
}
|
2017-05-17 22:40:41 +00:00
|
|
|
}
|
2021-09-21 07:40:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Overrides for self view when in portrait mode on mobile.
|
|
|
|
* This is done in order to keep the aspect ratio.
|
|
|
|
*/
|
2022-04-12 13:19:10 +00:00
|
|
|
.vertical-filmstrip .self-view-mobile-portrait #localVideo_container,
|
|
|
|
.stage-filmstrip .self-view-mobile-portrait #localVideo_container {
|
2021-09-21 07:40:46 +00:00
|
|
|
object-fit: contain;
|
|
|
|
}
|