From 0cd32c8155d54ba95f231e5f7f8125925e54e697 Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Fri, 6 Apr 2018 09:19:32 -0700 Subject: [PATCH] fix(filmstrip-only): override Atlaskit background for transparency --- css/_base.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/css/_base.scss b/css/_base.scss index d3fd3e46e..4d24ffdda 100644 --- a/css/_base.scss +++ b/css/_base.scss @@ -28,6 +28,16 @@ body { } } +/** + * AtlasKitThemeProvider sets a background color on an app-wrapping div, thereby + * preventing transparency in filmstrip-only mode. The selector chosen to + * override this behavior is specific to where the AtlasKitThemeProvider might + * be placed within the app hierarchy. + */ +.filmstrip-only #react > .ckAJgx { + background: transparent; +} + p { margin: 0; }