浏览代码

Merge pull request #814 from BeatC/fix-video-preview-when-resize

Fix problem with last video preview
master
yanas 8 年前
父节点
当前提交
238e1f1bea
共有 1 个文件被更改,包括 9 次插入3 次删除
  1. 9
    3
      css/videolayout_default.css

+ 9
- 3
css/videolayout_default.css 查看文件

8
 }
8
 }
9
 
9
 
10
 #remoteVideos {
10
 #remoteVideos {
11
-    display:block;
11
+    display: -webkit-box;
12
+    display: -moz-box;
13
+    display: -ms-flexbox;
14
+    display: -webkit-flex;
15
+    display: flex;
16
+    flex-direction: row;
17
+    flex-wrap: nowrap;
18
+    justify-content: flex-end;
19
+
12
     position:absolute;
20
     position:absolute;
13
     text-align:right;
21
     text-align:right;
14
     height:196px;
22
     height:196px;
30
 
38
 
31
 .videocontainer {
39
 .videocontainer {
32
     position: relative;
40
     position: relative;
33
-    margin-left: auto;
34
-    margin-right: auto;
35
     text-align: center;
41
     text-align: center;
36
 }
42
 }
37
 
43
 

正在加载...
取消
保存