fix(vertical-filmstrip): enable hardware acceleration for icons

Icons on the thumbnails can flicker when scrolling through videos.
To give rendering a bit more power, and thereby help with rendering
icons without flickering, force hardware acceleration.
This commit is contained in:
Leonard Kim 2017-06-30 16:39:45 -07:00 committed by yanas
parent a97d02e0fd
commit ae67b2b28e
1 changed files with 6 additions and 1 deletions

View File

@ -65,7 +65,7 @@
left: 0;
top: auto;
right: auto;
transform: rotate(-90deg);
transform: translate3d(0,0,0) rotate(-90deg);
}
#remoteVideos {
@ -74,6 +74,11 @@
}
.videocontainer {
&__toolbar,
&__toptoolbar {
transform: translate3d(0,0,0);
}
/**
* Move status icons to the bottom right of the thumbnail.
*/