diff options
-rw-r--r-- | core/css/apps.scss | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index 1027ae44e91..9680ddb198c 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -113,16 +113,13 @@ kbd { } } &.open > ul { - max-height: 2000px; + display: block; } /* Second level nesting for lists */ > ul { flex: 1 0 100%; padding-left: 44px; width: inherit; - max-height: 0; - overflow: hidden; - transition: all 500ms ease-in-out; > li { display: inline-flex; flex-wrap: wrap; @@ -224,6 +221,9 @@ kbd { } .collapsible { border-width: 0 1 0 0 !important; + > ul { + display: none; + } > .collapse { position: absolute; height: 44px; |