diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-07-27 19:43:47 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-07-27 19:43:51 +0200 |
commit | 3de1eb480e6b19ea8fbff39ff9a129f09404c277 (patch) | |
tree | 081e57d2032acd4f6c747a77f4ea86bd09151cb5 /core/css/mobile.scss | |
parent | e3d1353dc64cac14fd474939c30fdb4bc7c0f700 (diff) | |
download | nextcloud-server-3de1eb480e6b19ea8fbff39ff9a129f09404c277.tar.gz nextcloud-server-3de1eb480e6b19ea8fbff39ff9a129f09404c277.zip |
Mobile fixes and list fixes
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/css/mobile.scss')
-rw-r--r-- | core/css/mobile.scss | 35 |
1 files changed, 10 insertions, 25 deletions
diff --git a/core/css/mobile.scss b/core/css/mobile.scss index 93e2909a510..13fa2eea9d2 100644 --- a/core/css/mobile.scss +++ b/core/css/mobile.scss @@ -35,19 +35,16 @@ /* full width for message list on mobile */ .app-content-list { - width: 100%; background: var(--color-main-background); - position: relative; - z-index: 100; - } - - /* since list and content are only displayed full window size - * we don't ant inner scrolling - */ - #app-content-wrapper { - .app-content-list, - .app-content-detail { - max-height: unset; + flex: 1 1 100%; + + .app-content-detail { + display: none; + } + &.showdetails { + display: none; + + .app-content-detail { + display: initial; + } } } @@ -59,7 +56,7 @@ #app-navigation-toggle-back { position: fixed; display: inline-block !important; - top: 45px; + top: $header-height; left: 0; width: 44px; height: 44px; @@ -73,18 +70,11 @@ transform: translateX(-100%); } - /* end of media query */ -} - /* allow horizontal scrollbar in settings - otherwise user management is not usable on mobile */ - #body-settings #app-content { - overflow-x: auto !important; } #app-navigation-toggle { position: fixed; display: inline-block !important; - top: $header-height; left: 0; width: 44px; height: 44px; @@ -132,11 +122,6 @@ max-width: 80%; } - /* fix controls bar jumping when navigation is slid out */ - .snapjs-left #app-navigation-toggle, - .snapjs-left #controls { - top: 0; - } .snapjs-left table.multiselect thead { top: 44px; } |