diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-10-03 18:53:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-03 18:53:43 +0200 |
commit | 70f80e3aa21e6694d925a5bf0a840cd422699b3e (patch) | |
tree | e69ccb496016c0de7c3f7efa4f661b76f356ecb4 | |
parent | 42bd94261904574d807d9cf1917f6283b08287ac (diff) | |
parent | 600b0e7ef8a659e74e91521eb4dfbc69a52aad70 (diff) | |
download | nextcloud-server-70f80e3aa21e6694d925a5bf0a840cd422699b3e.tar.gz nextcloud-server-70f80e3aa21e6694d925a5bf0a840cd422699b3e.zip |
Merge pull request #6625 from nextcloud/improved-fallback-for-collapsible-button
Hide but leave the collapse button above link
-rw-r--r-- | core/css/apps.scss | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index 4b4e5088262..9978c380334 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -312,7 +312,12 @@ kbd { /* Fallback for old collapse button. TODO: to be removed. Leaved here for retro compatibility */ .collapse { - display: none; + opacity: 0; + position: absolute; + width: 44px; + height: 44px; + margin: 0; + z-index: 110; } &:after { position: absolute; |