From ce36b13aafd5c346fe9f701ba6819a948e3e8630 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6=20=28skjnldsv=29?= Date: Wed, 13 Sep 2017 16:10:20 +0200 Subject: [PATCH] Max height to 9999 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ (skjnldsv) --- core/css/apps.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/css/apps.scss b/core/css/apps.scss index 15736f0880..0e7dccf7b8 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -120,7 +120,7 @@ kbd { opacity: 0; max-height: 0; /* bezier override the hide/slow effect due to the 2000 max-height */ - transition: max-height 500ms cubic-bezier(0, 1, 0, 1), + transition: max-height 1000ms cubic-bezier(0, 1, 0, 1), opacity 250ms ease-in-out; } } @@ -129,9 +129,9 @@ kbd { flex: 1 0 100%; padding-left: 44px; width: inherit; - transition: max-height 1000ms ease-in-out, + transition: max-height 2000ms ease-in-out, opacity 250ms ease-in-out; - max-height: 2000px; + max-height: 9999px; opacity: 1; > li { display: inline-flex;