diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-06-06 10:04:19 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-06-06 10:04:28 +0200 |
commit | b2bae9313d3467f945ef02a3091d8cbf52c1382a (patch) | |
tree | 47274d30bb73788ebbe2b647a4ec50103657b875 /core/css/mobile.css | |
parent | d764aaa42738daa82fd2e197d02de3226017c7d9 (diff) | |
download | nextcloud-server-b2bae9313d3467f945ef02a3091d8cbf52c1382a.tar.gz nextcloud-server-b2bae9313d3467f945ef02a3091d8cbf52c1382a.zip |
Fixed viewer mode for sidebar swipe
Diffstat (limited to 'core/css/mobile.css')
-rw-r--r-- | core/css/mobile.css | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/core/css/mobile.css b/core/css/mobile.css index 4f149796a7e..98033528210 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -109,13 +109,20 @@ opacity: 1; } - /* fix controls bar for apps which don't use the standard */ #body-user .app-files #controls, #user-controls { left: 0 !important; padding-left: 44px !important; } +/* .viewer-mode is when text editor, PDF viewer, etc is open */ +#body-user .app-files.viewer-mode #controls { + padding-left: 0 !important; +} +.app-files.viewer-mode #app-navigation-toggle { + display: none !important; +} + table.multiselect thead { left: 0 !important; } |