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:
parent
9b67e796bd
commit
1984f8d0c0
|
@ -260,10 +260,12 @@
|
||||||
* being to remove the hacks as the spec is supported.
|
* being to remove the hacks as the spec is supported.
|
||||||
*/
|
*/
|
||||||
@mixin undoColumnReverseVideos() {
|
@mixin undoColumnReverseVideos() {
|
||||||
|
.vertical-filmstrip {
|
||||||
#remoteVideos #filmstripRemoteVideos #filmstripRemoteVideosContainer {
|
#remoteVideos #filmstripRemoteVideos #filmstripRemoteVideosContainer {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/** Firefox detection hack **/
|
/** Firefox detection hack **/
|
||||||
@-moz-document url-prefix() {
|
@-moz-document url-prefix() {
|
||||||
|
|
Loading…
Reference in New Issue