diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-01-11 21:01:54 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-01-11 21:01:54 +0100 |
commit | 67c4f3d07caff2bb06fcb02f116fd3b435a313fd (patch) | |
tree | 6fe084eeec53c5537d2cfaf30bb9124acd36d5aa | |
parent | dda4b3b27244bef4244e928f327bc673dccf535e (diff) | |
download | nextcloud-server-67c4f3d07caff2bb06fcb02f116fd3b435a313fd.tar.gz nextcloud-server-67c4f3d07caff2bb06fcb02f116fd3b435a313fd.zip |
App-navigation action layout fix
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-rw-r--r-- | core/css/apps.scss | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index b0e8f834322..ce14d654b0e 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -240,10 +240,10 @@ em { right: 0; z-index: 105; ul { - display: block !important; + display: flex !important; + align-items: flex-end; } li { - float: left; width: 44px !important; height: 44px; line-height: 44px; @@ -253,13 +253,11 @@ em { display: inline-block; } .app-navigation-entry-utils button { - height: 38px; - width: 38px; - line-height: 38px; - float: left; + height: 100%; + width: 100%; + margin: 0; } .app-navigation-entry-utils-menu-button { - display: none; button { border: 0; opacity: .5; @@ -555,7 +553,9 @@ em { &:after { bottom: 100%; - right: 6px; + /* Min-width of popover is 36px and arrow width is 20px + wich leaves us 8px right and 8px left */ + right: 8px; /* change this to adjust the arrow position */ border: solid transparent; content: ' '; |