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.
pull/2281/head jitsi-meet_2694
virtuacoplenny 8 years ago committed by bbaldino
parent 9b67e796bd
commit 1984f8d0c0
  1. 6
      css/_vertical_filmstrip_overrides.scss

@ -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;
}
}
}

Loading…
Cancel
Save