2016-09-28 12:08:15 +00:00
|
|
|
#videoconference_page {
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
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;
|
2016-11-01 13:17:44 +00:00
|
|
|
|
2016-11-03 10:13:03 +00:00
|
|
|
&__background {
|
2016-11-01 13:17:44 +00:00
|
|
|
@include topLeft();
|
2017-01-09 21:32:25 +00:00
|
|
|
background-color: black;
|
2017-01-26 23:04:29 +00:00
|
|
|
border-radius: $borderRadius;
|
2016-11-01 13:17:44 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2014-03-26 10:33:46 +00:00
|
|
|
|
2016-11-11 15:09:07 +00:00
|
|
|
/**
|
|
|
|
* The toolbar of the video thumbnail.
|
|
|
|
*/
|
|
|
|
&__toolbar,
|
|
|
|
&__toptoolbar {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
2017-08-15 22:14:49 +00:00
|
|
|
pointer-events: none;
|
|
|
|
z-index: $zindex10;
|
2016-11-11 15:09:07 +00:00
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box; // Includes the padding in the 100% width.
|
2017-08-15 22:14:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* FIXME (lenny): Disabling pointer-events is a pretty big sin that
|
|
|
|
* sidesteps the problems. There are z-index wars occurring within
|
|
|
|
* videocontainer and AtlasKit Tooltips rely on their parent z-indexe
|
|
|
|
* being higher than whatever they need to appear over. So set a higher
|
|
|
|
* z-index for the tooltip containers but make any empty space not block
|
|
|
|
* mouse overs for various mouseover triggers.
|
|
|
|
*/
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
* {
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.indicator-container {
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
2016-11-11 15:09:07 +00:00
|
|
|
}
|
2016-11-11 14:05:41 +00:00
|
|
|
|
2016-11-11 15:09:07 +00:00
|
|
|
&__toolbar {
|
|
|
|
bottom: 0;
|
|
|
|
height: $thumbnailToolbarHeight;
|
2017-08-14 15:02:58 +00:00
|
|
|
padding: 0 5px 0 5px;
|
2016-11-11 15:09:07 +00:00
|
|
|
}
|
2016-11-11 14:05:41 +00:00
|
|
|
|
2016-11-11 15:09:07 +00:00
|
|
|
&__toptoolbar {
|
2017-08-14 15:02:58 +00:00
|
|
|
$toolbarIconMargin: 5px;
|
2016-11-11 15:09:07 +00:00
|
|
|
top: 0;
|
|
|
|
padding-bottom: 0;
|
2017-08-14 15:02:58 +00:00
|
|
|
/**
|
|
|
|
* Override text-align center as icons need to be left justified.
|
|
|
|
*/
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Intentionally use margin on the icon itself as AtlasKit InlineDialog
|
|
|
|
* positioning depends on the trigger (indicator icon).
|
|
|
|
*/
|
|
|
|
.indicator {
|
2017-09-26 16:55:09 +00:00
|
|
|
margin-left: 5px;
|
2017-08-14 15:02:58 +00:00
|
|
|
margin-top: $toolbarIconMargin;
|
|
|
|
}
|
|
|
|
|
2017-08-15 22:14:49 +00:00
|
|
|
.indicator-container:nth-child(1) .indicator {
|
2017-08-14 15:02:58 +00:00
|
|
|
margin-left: $toolbarIconMargin;
|
|
|
|
}
|
2016-11-11 14:05:41 +00:00
|
|
|
|
2017-08-15 22:14:49 +00:00
|
|
|
.indicator-container {
|
2017-08-14 15:02:58 +00:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
|
|
|
|
.popover-trigger {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-19 20:20:13 +00:00
|
|
|
.connection-indicator,
|
2017-08-15 22:14:49 +00:00
|
|
|
.indicator {
|
2016-11-11 14:05:41 +00:00
|
|
|
position: relative;
|
2016-11-11 15:09:07 +00:00
|
|
|
font-size: 8px;
|
|
|
|
text-align: center;
|
|
|
|
line-height: $thumbnailIndicatorSize;
|
|
|
|
padding: 0;
|
|
|
|
@include circle($thumbnailIndicatorSize);
|
|
|
|
box-sizing: border-box;
|
2017-03-30 17:13:00 +00:00
|
|
|
z-index: $zindex3;
|
2016-11-11 15:09:07 +00:00
|
|
|
background: $dominantSpeakerBg;
|
|
|
|
color: $thumbnailPictogramColor;
|
|
|
|
border: $thumbnailIndicatorBorder solid $thumbnailPictogramColor;
|
|
|
|
|
|
|
|
.indicatoricon {
|
2016-11-14 10:45:28 +00:00
|
|
|
@include absoluteAligning();
|
2016-11-11 14:05:41 +00:00
|
|
|
}
|
|
|
|
|
2016-11-11 15:09:07 +00:00
|
|
|
.connection {
|
|
|
|
position: relative;
|
2016-11-14 10:45:28 +00:00
|
|
|
display: inline-block;
|
2016-11-11 15:09:07 +00:00
|
|
|
margin: 0 auto;
|
2016-11-14 10:45:28 +00:00
|
|
|
left: 0;
|
|
|
|
@include transform(translate(0, -50%));
|
2016-11-11 15:09:07 +00:00
|
|
|
|
2017-09-26 16:55:09 +00:00
|
|
|
&_empty,
|
|
|
|
&_lost
|
2016-11-11 15:09:07 +00:00
|
|
|
{
|
|
|
|
color: #8B8B8B;/*#FFFFFF*/
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
&_full
|
|
|
|
{
|
|
|
|
@include topLeft();
|
|
|
|
color: #FFFFFF;/*#15A1ED*/
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2017-05-25 13:48:06 +00:00
|
|
|
|
|
|
|
&_ninja
|
|
|
|
{
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
2016-11-11 15:09:07 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 16:55:09 +00:00
|
|
|
.icon-gsm-bars {
|
2017-08-14 15:02:58 +00:00
|
|
|
cursor: pointer;
|
2016-11-11 15:09:07 +00:00
|
|
|
font-size: 1em;
|
2016-11-11 14:05:41 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-26 16:55:09 +00:00
|
|
|
|
|
|
|
.hide-connection-indicator {
|
|
|
|
display: none;
|
|
|
|
}
|
2016-11-11 15:09:07 +00:00
|
|
|
}
|
2016-11-11 14:05:41 +00:00
|
|
|
|
2016-11-11 15:09:07 +00:00
|
|
|
&__hoverOverlay {
|
2017-01-09 21:32:25 +00:00
|
|
|
background: rgba(0,0,0,.6);
|
|
|
|
border-radius: $borderRadius;
|
2020-01-24 16:28:47 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
2016-11-11 15:09:07 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
visibility: hidden;
|
2017-03-30 17:13:00 +00:00
|
|
|
z-index: $zindex2;
|
2016-11-11 15:09:07 +00:00
|
|
|
}
|
2020-03-11 09:45:42 +00:00
|
|
|
|
|
|
|
&.shift-right {
|
|
|
|
&#largeVideoContainer {
|
|
|
|
margin-left: $sidebarWidth;
|
|
|
|
width: calc(100% - #{$sidebarWidth});
|
|
|
|
}
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-09-18 21:35:35 +00:00
|
|
|
/**
|
|
|
|
* Positions video thumbnail display name and editor.
|
|
|
|
*/
|
2017-12-05 03:27:17 +00:00
|
|
|
#alwaysOnTop .displayname,
|
2016-09-18 21:35:35 +00:00
|
|
|
.videocontainer .displayname,
|
|
|
|
.videocontainer .editdisplayname {
|
2016-09-15 02:20:54 +00:00
|
|
|
display: inline-block;
|
2014-03-26 10:33:46 +00:00
|
|
|
position: absolute;
|
2016-10-20 19:28:10 +00:00
|
|
|
left: 10%;
|
|
|
|
width: 80%;
|
|
|
|
top: 50%;
|
2016-10-26 09:51:51 +00:00
|
|
|
@include transform(translateY(-40%));
|
2016-09-15 02:20:54 +00:00
|
|
|
color: $participantNameColor;
|
2014-06-12 18:35:42 +00:00
|
|
|
text-align: center;
|
2014-03-26 10:33:46 +00:00
|
|
|
text-overflow: ellipsis;
|
2016-09-15 02:20:54 +00:00
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 100;
|
2014-03-26 10:33:46 +00:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
2016-09-18 21:35:35 +00:00
|
|
|
line-height: $thumbnailToolbarHeight;
|
2017-03-30 17:13:00 +00:00
|
|
|
z-index: $zindex2;
|
2016-09-15 02:20:54 +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-18 21:35:35 +00:00
|
|
|
/**
|
|
|
|
* Positions video thumbnail display name editor.
|
|
|
|
*/
|
|
|
|
.videocontainer .editdisplayname {
|
2016-09-15 02:20:54 +00:00
|
|
|
outline: none;
|
|
|
|
border: none;
|
|
|
|
background: none;
|
|
|
|
box-shadow: none;
|
|
|
|
padding: 0;
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 21:35:35 +00:00
|
|
|
#localVideoContainer .displayname:hover {
|
2014-03-26 10:33:46 +00:00
|
|
|
cursor: text;
|
|
|
|
}
|
|
|
|
|
2016-09-18 21:35:35 +00:00
|
|
|
.videocontainer .displayname {
|
2014-03-31 12:49:33 +00:00
|
|
|
pointer-events: none;
|
2017-01-09 21:32:25 +00:00
|
|
|
padding: 0 3px 0 3px;
|
2014-03-31 12:49:33 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 21:35:35 +00:00
|
|
|
.videocontainer .editdisplayname {
|
2014-06-12 18:35:42 +00:00
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2014-03-31 12:49:33 +00:00
|
|
|
#localDisplayName {
|
|
|
|
pointer-events: auto !important;
|
|
|
|
}
|
|
|
|
|
2014-03-26 10:33:46 +00:00
|
|
|
.videocontainer>a.displayname {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
color: #FFFFFF;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 3px 5px;
|
|
|
|
font-size: 9pt;
|
|
|
|
cursor: pointer;
|
2017-03-30 17:13:00 +00:00
|
|
|
z-index: $zindex2;
|
2014-03-26 10:33:46 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 21:35:35 +00:00
|
|
|
/**
|
|
|
|
* Video thumbnail toolbar icon.
|
|
|
|
*/
|
|
|
|
.videocontainer .toolbar-icon {
|
2014-04-07 10:16:49 +00:00
|
|
|
font-size: 8pt;
|
2014-06-18 11:42:31 +00:00
|
|
|
text-align: center;
|
2016-09-18 21:35:35 +00:00
|
|
|
text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.7);
|
|
|
|
color: #FFFFFF;
|
|
|
|
width: 12px;
|
|
|
|
line-height: $thumbnailToolbarHeight;
|
|
|
|
height: $thumbnailToolbarHeight;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
margin: 0px 5px 0px 0px;
|
2014-04-07 10:16:49 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 21:35:35 +00:00
|
|
|
/**
|
|
|
|
* Toolbar icon internal i elements (font icons).
|
|
|
|
*/
|
2019-08-30 16:39:06 +00:00
|
|
|
.toolbar-icon>div {
|
|
|
|
height: $thumbnailToolbarHeight;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2016-09-18 21:35:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Toolbar icons positioned on the right.
|
|
|
|
*/
|
2017-08-15 22:14:49 +00:00
|
|
|
.moderator-icon {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
float: right;
|
|
|
|
margin: 0px 0px 0px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar-icon {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2014-04-07 10:16:49 +00:00
|
|
|
}
|
|
|
|
|
2017-07-10 22:29:44 +00:00
|
|
|
.raisehandindicator {
|
2016-10-26 03:05:32 +00:00
|
|
|
background: $raiseHandBg;
|
|
|
|
}
|
|
|
|
|
2017-06-19 20:20:13 +00:00
|
|
|
.connection-indicator {
|
2017-09-26 16:55:09 +00:00
|
|
|
background: $connectionIndicatorBg;
|
|
|
|
|
|
|
|
&.status-high {
|
|
|
|
background: green;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.status-med {
|
|
|
|
background: #FFD740;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.status-lost {
|
|
|
|
background: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.status-low {
|
|
|
|
background: #BF2117;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.status-other {
|
|
|
|
background: $connectionIndicatorBg;
|
|
|
|
}
|
2016-10-26 03:05:32 +00:00
|
|
|
}
|
|
|
|
|
2017-08-14 15:02:58 +00:00
|
|
|
.remote-video-menu-trigger,
|
2016-10-26 03:05:32 +00:00
|
|
|
.remotevideomenu
|
|
|
|
{
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
right: 0;
|
2017-08-15 22:14:49 +00:00
|
|
|
z-index: $zindex2;
|
2016-10-26 03:05:32 +00:00
|
|
|
width: 18px;
|
|
|
|
height: 13px;
|
|
|
|
color: #FFF;
|
2017-07-12 22:12:35 +00:00
|
|
|
font-size: 10pt;
|
2019-03-11 15:56:36 +00:00
|
|
|
margin-right: $remoteVideoMenuIconMargin;
|
2017-07-12 22:12:35 +00:00
|
|
|
|
|
|
|
>i{
|
|
|
|
cursor: hand;
|
|
|
|
}
|
2015-11-23 23:30:09 +00:00
|
|
|
}
|
2017-08-14 15:02:58 +00:00
|
|
|
.remote-video-menu-trigger {
|
|
|
|
margin-top: 7px;
|
|
|
|
}
|
2015-11-23 23:30:09 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-07-22 13:12:48 +00:00
|
|
|
.audiolevel {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
2017-03-30 17:13:00 +00:00
|
|
|
z-index: $zindex0;
|
2016-02-26 23:19:03 +00:00
|
|
|
border-radius:1px;
|
2014-11-28 14:02:48 +00:00
|
|
|
pointer-events: none;
|
2014-07-22 13:12:48 +00:00
|
|
|
}
|
2014-08-22 15:37:11 +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-avatar-with-name {
|
|
|
|
.avatar-container {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.displayNameContainer {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.videocontainer__hoverOverlay {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
video {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-name-on-black {
|
|
|
|
.avatar-container {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.displayNameContainer {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.videocontainer__hoverOverlay {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
video {
|
2018-05-25 20:22:39 +00:00
|
|
|
opacity: 0.2;
|
|
|
|
visibility: visible;
|
2018-05-25 20:19:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-video {
|
|
|
|
.avatar-container {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.displayNameContainer {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.videocontainer__hoverOverlay {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
video {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-name-on-video {
|
|
|
|
.avatar-container {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.displayNameContainer {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.videocontainer__hoverOverlay {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
video {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-avatar-only {
|
|
|
|
.avatar-container {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.displayNameContainer {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.videocontainer__hoverOverlay {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
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%;
|
|
|
|
}
|