diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-08-30 14:51:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-30 14:51:09 +0200 |
commit | cdc4eee27826650c22e84552ecc449e2aa3c0ab1 (patch) | |
tree | b5efbbcbdc835f90d0107cebfddc727c40e88aa1 /core | |
parent | 4da9a15b32f6dfe862f7d481e018f978f50bf55c (diff) | |
parent | 10d51c3440689de1e1ca335f46bc9f265de9fe0b (diff) | |
download | nextcloud-server-cdc4eee27826650c22e84552ecc449e2aa3c0ab1.tar.gz nextcloud-server-cdc4eee27826650c22e84552ecc449e2aa3c0ab1.zip |
Merge pull request #10853 from nextcloud/apps-menu-fix-mobile
Fix apps menu on mobile
Diffstat (limited to 'core')
-rw-r--r-- | core/css/header.scss | 5 | ||||
-rw-r--r-- | core/css/mobile.scss | 1 |
2 files changed, 3 insertions, 3 deletions
diff --git a/core/css/header.scss b/core/css/header.scss index 3b3a87ec714..df20ec47d4b 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -116,6 +116,7 @@ height: 100%; position: absolute; left: 12px; + top: 1px; img { opacity: 0; @@ -229,14 +230,14 @@ nav[role='navigation'] { position: relative; } -.header-left #navigation { +#header .header-left > nav > #navigation { position: relative; left: 25px; /* half the togglemenu */ transform: translateX(-50%); width: 160px; } -.header-left #navigation, +#header .header-left > nav > #navigation, .ui-datepicker, .ui-timepicker.ui-widget { background-color: var(--color-main-background); diff --git a/core/css/mobile.scss b/core/css/mobile.scss index 6f061abc75c..44660e44c33 100644 --- a/core/css/mobile.scss +++ b/core/css/mobile.scss @@ -132,7 +132,6 @@ } @media only screen and (max-width: 480px) { - #header .header-left > nav > .menu, #header .header-right > div > .menu { max-width: calc(100vw - 10px); position: fixed; |