fix(vertical-filmstrip): scope previous Firefox scroll fixes (#2276)

In aa93a783, remote videos not scrolling on Firefox, IE, and
Edge was worked around using CSS. The CSS selector is too vague
and also catches horizontal filmstrip. The selector should
apply to vertical filmstrip only.
This commit is contained in:
virtuacoplenny 2017-12-11 11:03:24 -08:00 committed by bbaldino
parent 9b67e796bd
commit 1984f8d0c0
1 changed files with 4 additions and 2 deletions

View File

@ -260,8 +260,10 @@
* being to remove the hacks as the spec is supported.
*/
@mixin undoColumnReverseVideos() {
#remoteVideos #filmstripRemoteVideos #filmstripRemoteVideosContainer {
flex-direction:column;
.vertical-filmstrip {
#remoteVideos #filmstripRemoteVideos #filmstripRemoteVideosContainer {
flex-direction: column;
}
}
}