2016-11-03 15:07:48 +00:00
|
|
|
%align-right {
|
|
|
|
@include flex();
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
2018-06-25 21:44:05 +00:00
|
|
|
.horizontal-filmstrip .filmstrip {
|
2016-11-03 15:07:48 +00:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
2016-11-03 15:54:23 +00:00
|
|
|
padding: 10px 5px;
|
2016-11-03 15:07:48 +00:00
|
|
|
@extend %align-right;
|
2018-06-22 22:12:23 +00:00
|
|
|
transition: bottom .3s;
|
2017-08-15 22:14:49 +00:00
|
|
|
z-index: $filmstripVideosZ;
|
2016-11-03 15:07:48 +00:00
|
|
|
|
2018-06-22 22:12:23 +00:00
|
|
|
&.reduce-height {
|
|
|
|
bottom: $newToolbarSizeWithPadding;
|
|
|
|
}
|
|
|
|
|
2016-11-03 15:07:48 +00:00
|
|
|
&__videos {
|
|
|
|
@extend %align-right;
|
|
|
|
position:relative;
|
|
|
|
padding: 0;
|
2017-04-06 18:09:05 +00:00
|
|
|
/* The filmstrip should not be covered by the left toolbar. */
|
2016-11-03 14:18:28 +00:00
|
|
|
bottom: 0;
|
|
|
|
width:auto;
|
|
|
|
overflow: visible !important;
|
|
|
|
|
2017-05-26 18:54:33 +00:00
|
|
|
&#remoteVideos {
|
|
|
|
border: $thumbnailsBorder solid transparent;
|
|
|
|
padding-left: $defaultToolbarSize + 5;
|
2017-10-24 18:49:40 +00:00
|
|
|
transition: bottom 2s;
|
2017-10-03 16:30:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The local video identifier.
|
|
|
|
*/
|
|
|
|
&#filmstripLocalVideo {
|
2018-03-20 19:28:09 +00:00
|
|
|
align-self: flex-end;
|
2017-10-24 19:00:22 +00:00
|
|
|
display: block;
|
2017-10-03 16:30:42 +00:00
|
|
|
}
|
2017-05-17 21:05:48 +00:00
|
|
|
|
2016-11-03 14:18:28 +00:00
|
|
|
&.hidden {
|
2018-06-22 22:12:23 +00:00
|
|
|
bottom: calc(-196px - #{$newToolbarSizeWithPadding});
|
2016-11-03 14:18:28 +00:00
|
|
|
}
|
|
|
|
|
2017-05-17 21:05:48 +00:00
|
|
|
.remote-videos-container {
|
|
|
|
display: flex;
|
|
|
|
}
|
2016-11-03 14:18:28 +00:00
|
|
|
}
|
2017-04-06 18:09:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Style the filmstrip videos in filmstrip-only mode.
|
|
|
|
*/
|
|
|
|
&__videos-filmstripOnly {
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
2017-10-24 18:49:40 +00:00
|
|
|
|
|
|
|
.filmstrip__videos {
|
|
|
|
&#filmstripLocalVideo {
|
|
|
|
bottom: 0px;
|
|
|
|
}
|
|
|
|
}
|
2017-04-06 18:09:05 +00:00
|
|
|
}
|
2017-05-19 00:40:14 +00:00
|
|
|
|
|
|
|
.remote-videos-container {
|
|
|
|
transition: opacity 1s;
|
2017-08-14 18:45:17 +00:00
|
|
|
}
|
2017-05-19 00:40:14 +00:00
|
|
|
|
2017-08-14 18:45:17 +00:00
|
|
|
&.hide-videos {
|
|
|
|
.remote-videos-container {
|
2017-05-19 00:40:14 +00:00
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
2017-01-06 01:18:07 +00:00
|
|
|
}
|