use flexbox instead of moving video

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2016-11-17 03:57:10 +01:00
Родитель b1b12db4ac
Коммит b604f12289
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -61,7 +61,8 @@
#videos {
position: absolute;
width: 100%;
bottom: 0;
height: 100%;
top: 0;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
@ -69,8 +70,8 @@
display: flex;
-webkit-justify-content: space-around;
justify-content: space-around;
-webkit-align-items: stretch;
align-items: stretch;
-webkit-align-items: flex-end;
align-items: flex-end;
}
.videoContainer {
@ -81,8 +82,6 @@
-webkit-flex: auto;
-ms-flex: auto;
flex: auto;
-webkit-align-self: stretch;
align-self: stretch;
}
#videos .videoContainer {
padding: 0 2%;
@ -154,6 +153,7 @@ video {
text-overflow: ellipsis;
}
.videoView .nameIndicator {
width: 100%;
padding: 0;
}