diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-09-13 16:10:20 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-09-21 14:00:35 +0200 |
commit | ce36b13aafd5c346fe9f701ba6819a948e3e8630 (patch) | |
tree | ead257334d61b3d1215257b8e68fff50f3f1632f /core | |
parent | e2c65cfee583b85bed9dfc50d6f9a723f814a399 (diff) | |
download | nextcloud-server-ce36b13aafd5c346fe9f701ba6819a948e3e8630.tar.gz nextcloud-server-ce36b13aafd5c346fe9f701ba6819a948e3e8630.zip |
Max height to 9999
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/css/apps.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index 15736f08802..0e7dccf7b8d 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; |