diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2018-08-20 15:22:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-20 15:22:48 +0200 |
commit | 080572993e891a76721f4f7a7b76c85bc0e4c65d (patch) | |
tree | 537005631ad8d10ae19e19a73c8d58b172b0bfad | |
parent | 6e10358e5d91ad2e47bb58b942318eca3a251a03 (diff) | |
parent | 36dfaf097a43b19b0b3119d174c7224c2332a65b (diff) | |
download | nextcloud-server-080572993e891a76721f4f7a7b76c85bc0e4c65d.tar.gz nextcloud-server-080572993e891a76721f4f7a7b76c85bc0e4c65d.zip |
Merge pull request #10723 from nextcloud/fix/10722/10716/header-fixes
Fixes more apps menu and settings/user menu positions
-rw-r--r-- | core/css/header.scss | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/core/css/header.scss b/core/css/header.scss index 7b7606a0de5..41ee0a63fbe 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -229,6 +229,7 @@ nav[role='navigation'] { width: $header-height; height: $header-height; margin-left: -$header-height; + position: relative; } .header-left #navigation { @@ -399,13 +400,14 @@ nav[role='navigation'] { display: block; } } + + #expanddiv:after { + right: 22px; + } } /* Settings menu */ #expanddiv { - &.menu { - right: 17px; - } a { display: inline-flex; align-items: center; @@ -455,6 +457,7 @@ nav[role='navigation'] { opacity: .6; } } + .app-loading { > svg { display: none; @@ -555,6 +558,10 @@ nav[role='navigation'] { li.hidden { display: none; } + + #more-apps { + z-index: 2; + } } /* Skip navigation links – show only on keyboard focus */ |