From e56da452fc6e8615eb65ec0484877442ef322ac8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Mon, 15 Jan 2018 12:17:20 +0100 Subject: [PATCH] statusbar: Fix status text still showing when statusbar is hidden (Maybe we can use `display: none;` here instead? I am not sure how that would interact with the animation though.) --- src/scss/_statusbar.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scss/_statusbar.scss b/src/scss/_statusbar.scss index e91f0df33..192fe6e1f 100644 --- a/src/scss/_statusbar.scss +++ b/src/scss/_statusbar.scss @@ -13,6 +13,7 @@ } .uppy-StatusBar[aria-hidden=true] { + overflow-y: hidden; height: 0; }