diff options
author | Julius Haertl <jus@bitgrid.net> | 2017-03-01 23:04:27 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2017-03-16 11:55:09 +0100 |
commit | a630e4629f2489e9d7678fbe6833cf926e2b968e (patch) | |
tree | bdca715c7274eb4323eabc9e2fda8fa535f8eaf8 /core/css/header.scss | |
parent | e3e4cb3e67fb4d1399b4a9cf229633144008fdcf (diff) | |
download | nextcloud-server-a630e4629f2489e9d7678fbe6833cf926e2b968e.tar.gz nextcloud-server-a630e4629f2489e9d7678fbe6833cf926e2b968e.zip |
Generate seperate menu list for header bar
Signed-off-by: Julius Haertl <jus@bitgrid.net>
Diffstat (limited to 'core/css/header.scss')
-rw-r--r-- | core/css/header.scss | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/core/css/header.scss b/core/css/header.scss index c67df9ba17b..99329ccd631 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -349,6 +349,9 @@ #apps { max-height: calc(100vh - 100px); overflow: auto; + .in-header { + display: none; + } } /* USER MENU -----------------------------------------------------------------*/ @@ -553,9 +556,15 @@ position: absolute; pointer-events: none; border-bottom-color: white; - border-width: 8px; + border-width: 10px; transform: translateX(-50%); left: 50%; - top: 17px; + top: 14px; z-index: 100; + display: block; +} + +// do not show active indicator when hovering other icons +#appmenu:hover li:not(:hover) a:before { + display:none; } |