fix(tile-view): stop using border on active-speaker, shadow only
The border changes the tile sizing, due to box-sizing, and that messes with the video aspect ratio.
This commit is contained in:
parent
07ccb0a386
commit
deb58798ba
|
@ -7,9 +7,7 @@
|
||||||
* see.
|
* see.
|
||||||
*/
|
*/
|
||||||
.active-speaker {
|
.active-speaker {
|
||||||
border: $thumbnailVideoBorder solid $videoThumbnailSelected;
|
box-shadow: 0 0 5px 3px $videoThumbnailSelected
|
||||||
box-shadow: inset 0 0 3px $videoThumbnailSelected,
|
|
||||||
0 0 3px $videoThumbnailSelected;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#filmstripRemoteVideos {
|
#filmstripRemoteVideos {
|
||||||
|
@ -84,6 +82,7 @@
|
||||||
padding: 100px 0;
|
padding: 100px 0;
|
||||||
|
|
||||||
.videocontainer {
|
.videocontainer {
|
||||||
|
border: 0;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
display: block;
|
display: block;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
|
|
Loading…
Reference in New Issue