diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2017-10-12 20:01:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-12 20:01:51 +0200 |
commit | fadd33040cb6b4af5b8cd93604e4866ef4545016 (patch) | |
tree | da4377632eafeda467633b5cdb7063cac68ec56d | |
parent | af4810d5e53626a43349a15aeb34933756377824 (diff) | |
parent | cd4629b2aee460f5f52e382021ad5766180842d6 (diff) | |
download | nextcloud-server-fadd33040cb6b4af5b8cd93604e4866ef4545016.tar.gz nextcloud-server-fadd33040cb6b4af5b8cd93604e4866ef4545016.zip |
Merge pull request #6818 from nextcloud/allow-div-on-nav-edit-entry-instead-of-form
Allow div instead of forms on editable nav entries
-rw-r--r-- | core/css/apps.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index 9978c380334..07e445a0e73 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -423,7 +423,8 @@ kbd { position: absolute; background-color: $color-main-background; z-index: -1; - form { + form, + div { display: inline-flex; width: 100%; } |