fix(filmstrip-only): hide video label, always show remote thumbnails
This commit is contained in:
parent
a2ebc169e4
commit
27f968e753
|
@ -1843,7 +1843,8 @@ export default {
|
||||||
// non-participants displaying video, such as with video sharing.
|
// non-participants displaying video, such as with video sharing.
|
||||||
const remoteVideosCount = APP.UI.getRemoteVideosCount();
|
const remoteVideosCount = APP.UI.getRemoteVideosCount();
|
||||||
|
|
||||||
const shouldShowRemoteThumbnails = APP.UI.isPinned(localUserId)
|
const shouldShowRemoteThumbnails = interfaceConfig.filmStripOnly
|
||||||
|
|| APP.UI.isPinned(localUserId)
|
||||||
|| remoteVideosCount > 1
|
|| remoteVideosCount > 1
|
||||||
|| remoteParticipantsCount !== remoteVideosCount;
|
|| remoteParticipantsCount !== remoteVideosCount;
|
||||||
|
|
||||||
|
|
|
@ -495,6 +495,11 @@
|
||||||
0px 0px 1px rgba(0,0,0,0.3);
|
0px 0px 1px rgba(0,0,0,0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.filmstrip-only {
|
||||||
|
#videoResolutionLabel {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
.video-state-indicator {
|
.video-state-indicator {
|
||||||
background: $videoStateIndicatorBackground;
|
background: $videoStateIndicatorBackground;
|
||||||
color: $videoStateIndicatorColor;
|
color: $videoStateIndicatorColor;
|
||||||
|
|
Loading…
Reference in New Issue