2016-09-28 12:08:15 +00:00
|
|
|
#videoconference_page {
|
|
|
|
min-height: 100%;
|
2021-04-21 13:48:05 +00:00
|
|
|
position: relative;
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#layout_wrapper {
|
2022-03-29 09:01:48 +00:00
|
|
|
@include ltr;
|
2021-04-21 13:48:05 +00:00
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
2016-09-28 12:08:15 +00:00
|
|
|
}
|
|
|
|
|
2014-03-26 10:33:46 +00:00
|
|
|
#videospace {
|
|
|
|
display: block;
|
2018-05-11 18:34:03 +00:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2016-09-28 12:08:15 +00:00
|
|
|
min-height: 100%;
|
2014-03-26 10:33:46 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
2014-07-24 11:22:51 +00:00
|
|
|
overflow: hidden;
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
2018-02-13 00:29:29 +00:00
|
|
|
#largeVideoBackgroundContainer,
|
|
|
|
.large-video-background {
|
2017-06-09 19:22:07 +00:00
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2017-05-10 10:07:00 +00:00
|
|
|
width: 100%;
|
2018-02-13 00:29:29 +00:00
|
|
|
|
2019-06-13 01:18:33 +00:00
|
|
|
#largeVideoBackground {
|
|
|
|
min-height: 100%;
|
|
|
|
min-width: 100%;
|
2018-02-13 00:29:29 +00:00
|
|
|
}
|
2017-05-10 10:07:00 +00:00
|
|
|
}
|
2018-05-01 19:11:28 +00:00
|
|
|
#largeVideoBackgroundContainer {
|
|
|
|
filter: blur(40px);
|
|
|
|
}
|
2017-05-10 10:07:00 +00:00
|
|
|
|
2014-03-26 10:33:46 +00:00
|
|
|
.videocontainer {
|
|
|
|
position: relative;
|
2016-03-18 20:00:55 +00:00
|
|
|
text-align: center;
|
2021-12-15 13:18:41 +00:00
|
|
|
overflow: 'hidden';
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#localVideoWrapper {
|
|
|
|
display:inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flipVideoX {
|
|
|
|
transform: scale(-1, 1);
|
|
|
|
-moz-transform: scale(-1, 1);
|
|
|
|
-webkit-transform: scale(-1, 1);
|
|
|
|
-o-transform: scale(-1, 1);
|
|
|
|
}
|
|
|
|
|
2017-07-14 19:22:27 +00:00
|
|
|
#localVideoWrapper video,
|
|
|
|
#localVideoWrapper object {
|
2017-01-09 21:32:25 +00:00
|
|
|
border-radius: $borderRadius !important;
|
2015-08-25 12:17:07 +00:00
|
|
|
cursor: hand;
|
2016-03-03 23:38:40 +00:00
|
|
|
object-fit: cover;
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#largeVideo,
|
2015-08-18 10:26:50 +00:00
|
|
|
#largeVideoWrapper,
|
2014-03-26 10:33:46 +00:00
|
|
|
#largeVideoContainer {
|
|
|
|
overflow: hidden;
|
|
|
|
text-align: center;
|
2022-02-24 12:20:37 +00:00
|
|
|
|
|
|
|
&.transition {
|
|
|
|
transition: width 1s, height 1s, top 1s;
|
|
|
|
}
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
2018-05-11 18:34:03 +00:00
|
|
|
#largeVideoContainer {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2017-05-10 10:07:00 +00:00
|
|
|
#largeVideoWrapper {
|
|
|
|
box-shadow: 0 0 20px -2px #444;
|
|
|
|
}
|
|
|
|
|
2015-08-18 10:26:50 +00:00
|
|
|
#largeVideo,
|
|
|
|
#largeVideoWrapper
|
2014-11-26 14:36:42 +00:00
|
|
|
{
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
2021-04-16 09:43:34 +00:00
|
|
|
#sharedVideo video {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sharedVideo.disable-pointer {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2016-03-18 20:00:55 +00:00
|
|
|
#sharedVideo,
|
2014-03-26 10:33:46 +00:00
|
|
|
#etherpad,
|
2017-07-14 19:22:27 +00:00
|
|
|
#localVideoWrapper video,
|
|
|
|
#localVideoWrapper object,
|
2014-03-26 10:33:46 +00:00
|
|
|
#localVideoWrapper,
|
2015-08-18 10:26:50 +00:00
|
|
|
#largeVideoWrapper,
|
|
|
|
#largeVideoWrapper>video,
|
|
|
|
#largeVideoWrapper>object,
|
2015-07-10 09:57:20 +00:00
|
|
|
.videocontainer>video,
|
|
|
|
.videocontainer>object {
|
2014-03-26 10:33:46 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
2017-03-30 17:13:00 +00:00
|
|
|
z-index: $zindex1;
|
2014-03-26 10:33:46 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2016-09-22 16:00:11 +00:00
|
|
|
#etherpad {
|
2014-03-26 10:33:46 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#etherpad {
|
2017-03-30 17:13:00 +00:00
|
|
|
z-index: $zindex0;
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
2017-12-05 03:27:17 +00:00
|
|
|
#alwaysOnTop .displayname {
|
|
|
|
font-size: 15px;
|
|
|
|
position: inherit;
|
|
|
|
width: 100%;
|
|
|
|
left: 0px;
|
|
|
|
top: 0px;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2016-09-28 21:31:40 +00:00
|
|
|
/**
|
|
|
|
* Audio indicator on video thumbnails.
|
|
|
|
*/
|
2017-06-19 19:06:23 +00:00
|
|
|
.videocontainer>span.audioindicator,
|
|
|
|
.videocontainer>.audioindicator-container {
|
2016-09-28 21:31:40 +00:00
|
|
|
position: absolute;
|
|
|
|
display: inline-block;
|
|
|
|
left: 6px;
|
|
|
|
top: 50%;
|
2016-09-29 05:22:05 +00:00
|
|
|
margin-top: -17px;
|
2016-09-28 21:31:40 +00:00
|
|
|
width: 6px;
|
2016-09-29 05:22:05 +00:00
|
|
|
height: 35px;
|
2017-03-30 17:13:00 +00:00
|
|
|
z-index: $zindex2;
|
2016-09-28 21:31:40 +00:00
|
|
|
border: none;
|
|
|
|
|
|
|
|
.audiodot-top,
|
2016-09-29 05:22:05 +00:00
|
|
|
.audiodot-bottom,
|
|
|
|
.audiodot-middle {
|
2016-09-28 21:31:40 +00:00
|
|
|
opacity: 0;
|
|
|
|
display: inline-block;
|
2016-09-29 05:22:05 +00:00
|
|
|
@include circle(5px);
|
|
|
|
background: $audioLevelShadow;
|
2016-09-28 21:31:40 +00:00
|
|
|
margin: 1px 0 1px 0;
|
|
|
|
transition: opacity .25s ease-in-out;
|
|
|
|
-moz-transition: opacity .25s ease-in-out;
|
2016-09-29 05:22:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
span.audiodot-top::after,
|
|
|
|
span.audiodot-bottom::after,
|
|
|
|
span.audiodot-middle::after {
|
|
|
|
content: "";
|
|
|
|
display: inline-block;
|
|
|
|
width: 5px;
|
|
|
|
height: 5px;
|
|
|
|
border-radius: 50%;
|
|
|
|
-webkit-filter: blur(0.5px);
|
|
|
|
filter: blur(0.5px);
|
|
|
|
background: $audioLevelBg;
|
2016-09-28 21:31:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-26 10:33:46 +00:00
|
|
|
#reloadPresentation {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
color: #FFFFFF;
|
|
|
|
top: 0;
|
|
|
|
right:0;
|
|
|
|
padding: 10px 10px;
|
|
|
|
font-size: 11pt;
|
|
|
|
cursor: pointer;
|
|
|
|
background: rgba(0, 0, 0, 0.3);
|
|
|
|
border-radius: 5px;
|
|
|
|
background-clip: padding-box;
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
-webkit-background-clip: padding-box;
|
2017-03-30 17:13:00 +00:00
|
|
|
z-index: $reloadZ; /*The reload button should appear on top of the header!*/
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
2016-01-12 00:14:01 +00:00
|
|
|
#dominantSpeaker {
|
2014-12-10 09:52:40 +00:00
|
|
|
visibility: hidden;
|
2016-03-03 23:38:40 +00:00
|
|
|
width: 300px;
|
|
|
|
height: 300px;
|
2014-12-12 09:32:16 +00:00
|
|
|
margin: auto;
|
|
|
|
position: relative;
|
2019-11-15 14:55:21 +00:00
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
2014-12-12 09:32:16 +00:00
|
|
|
}
|
|
|
|
|
2014-08-22 15:37:11 +00:00
|
|
|
#mixedstream {
|
|
|
|
display:none !important;
|
|
|
|
}
|
2014-10-31 11:47:12 +00:00
|
|
|
|
2019-02-07 03:19:02 +00:00
|
|
|
#dominantSpeakerAvatarContainer,
|
2016-09-28 21:31:40 +00:00
|
|
|
.dynamic-shadow {
|
2016-03-03 23:38:40 +00:00
|
|
|
width: 200px;
|
|
|
|
height: 200px;
|
2016-09-28 21:31:40 +00:00
|
|
|
}
|
|
|
|
|
2019-02-07 03:19:02 +00:00
|
|
|
#dominantSpeakerAvatarContainer {
|
2016-03-03 23:38:40 +00:00
|
|
|
top: 50px;
|
2014-10-31 11:47:12 +00:00
|
|
|
margin: auto;
|
|
|
|
position: relative;
|
2019-02-07 03:19:02 +00:00
|
|
|
overflow: hidden;
|
2014-12-12 09:32:16 +00:00
|
|
|
visibility: inherit;
|
2019-02-07 03:19:02 +00:00
|
|
|
}
|
2014-10-31 11:47:12 +00:00
|
|
|
|
2016-09-28 21:31:40 +00:00
|
|
|
.dynamic-shadow {
|
|
|
|
border-radius: 50%;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
margin: -100px 0 0 -100px;
|
|
|
|
transition: box-shadow 0.3s ease;
|
|
|
|
}
|
|
|
|
|
2019-05-23 20:11:14 +00:00
|
|
|
.avatar-container {
|
2016-11-08 11:36:43 +00:00
|
|
|
@include maxSize(60px);
|
2016-10-27 13:09:27 +00:00
|
|
|
@include absoluteAligning();
|
2019-05-23 20:11:14 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2016-11-11 14:05:41 +00:00
|
|
|
height: 50%;
|
|
|
|
width: auto;
|
2020-01-24 16:28:47 +00:00
|
|
|
overflow: hidden;
|
2019-05-23 20:11:14 +00:00
|
|
|
|
|
|
|
.userAvatar {
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
width: 100%;
|
2020-01-24 16:28:47 +00:00
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
position: absolute;
|
2019-05-23 20:11:14 +00:00
|
|
|
}
|
2014-10-31 11:47:12 +00:00
|
|
|
}
|
2015-03-27 09:36:39 +00:00
|
|
|
|
2017-12-05 03:27:17 +00:00
|
|
|
#videoNotAvailableScreen {
|
|
|
|
text-align: center;
|
|
|
|
#avatarContainer {
|
2019-06-14 21:41:55 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
display: inline-block;
|
2017-12-05 03:27:17 +00:00
|
|
|
height: 50vh;
|
|
|
|
margin-top: 25vh;
|
2019-06-14 21:41:55 +00:00
|
|
|
overflow: hidden;
|
|
|
|
width: 50vh;
|
2017-12-05 03:27:17 +00:00
|
|
|
|
|
|
|
#avatar {
|
|
|
|
height: 100%;
|
2019-06-14 21:41:55 +00:00
|
|
|
object-fit: cover;
|
|
|
|
width: 100%;
|
2017-12-05 03:27:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-18 20:00:55 +00:00
|
|
|
.sharedVideoAvatar {
|
2020-01-24 16:28:47 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
top: 0px;
|
2016-03-18 20:00:55 +00:00
|
|
|
height: 100%;
|
2016-03-24 19:49:26 +00:00
|
|
|
width: 100%;
|
|
|
|
object-fit: cover;
|
2016-03-18 20:00:55 +00:00
|
|
|
}
|
|
|
|
|
2015-08-06 03:18:45 +00:00
|
|
|
.videoMessageFilter {
|
|
|
|
-webkit-filter: grayscale(.5) opacity(0.8);
|
|
|
|
filter: grayscale(.5) opacity(0.8);
|
|
|
|
}
|
|
|
|
|
2017-07-31 23:33:22 +00:00
|
|
|
#remotePresenceMessage,
|
2016-09-24 18:24:18 +00:00
|
|
|
#remoteConnectionMessage {
|
|
|
|
position: absolute;
|
|
|
|
width: auto;
|
2017-03-30 17:13:00 +00:00
|
|
|
z-index: $zindex2;
|
2016-09-24 18:24:18 +00:00
|
|
|
font-weight: 600;
|
|
|
|
font-size: 14px;
|
|
|
|
text-align: center;
|
|
|
|
color: #FFF;
|
2017-07-31 23:33:22 +00:00
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
}
|
|
|
|
#remotePresenceMessage .presence-label,
|
|
|
|
#remoteConnectionMessage {
|
2016-09-24 18:24:18 +00:00
|
|
|
opacity: .80;
|
|
|
|
text-shadow: 0px 0px 1px rgba(0,0,0,0.3),
|
|
|
|
0px 1px 1px rgba(0,0,0,0.3),
|
|
|
|
1px 0px 1px rgba(0,0,0,0.3),
|
|
|
|
0px 0px 1px rgba(0,0,0,0.3);
|
|
|
|
|
|
|
|
background: rgba(0,0,0,.5);
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 5px;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
2017-07-31 23:33:22 +00:00
|
|
|
#remoteConnectionMessage {
|
|
|
|
display: none;
|
|
|
|
}
|
2016-09-24 18:24:18 +00:00
|
|
|
|
2018-05-25 20:19:51 +00:00
|
|
|
.display-video {
|
|
|
|
.avatar-container {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
video {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-avatar-only {
|
|
|
|
.avatar-container {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
video {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
2018-06-25 19:57:49 +00:00
|
|
|
|
|
|
|
.presence-label {
|
|
|
|
color: $participantNameColor;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 100;
|
|
|
|
left: 0;
|
|
|
|
margin: 0 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
pointer-events: none;
|
|
|
|
right: 0;
|
|
|
|
text-align: center;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
top: calc(50% + 30px);
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 100%;
|
|
|
|
}
|