Browse Source

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.
master
Leonard Kim 7 years ago
parent
commit
deb58798ba
1 changed files with 2 additions and 3 deletions
  1. 2
    3
      css/filmstrip/_tile_view.scss

+ 2
- 3
css/filmstrip/_tile_view.scss View File

@@ -7,9 +7,7 @@
7 7
      * see.
8 8
      */
9 9
     .active-speaker {
10
-        border: $thumbnailVideoBorder solid $videoThumbnailSelected;
11
-        box-shadow: inset 0 0 3px $videoThumbnailSelected,
12
-        0 0 3px $videoThumbnailSelected;
10
+        box-shadow: 0 0 5px 3px $videoThumbnailSelected
13 11
     }
14 12
 
15 13
     #filmstripRemoteVideos {
@@ -84,6 +82,7 @@
84 82
         padding: 100px 0;
85 83
 
86 84
         .videocontainer {
85
+            border: 0;
87 86
             box-sizing: border-box;
88 87
             display: block;
89 88
             margin: 5px;

Loading…
Cancel
Save