diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-06-06 12:28:28 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-06-06 12:28:28 +0200 |
commit | ecdfea241f7e6837189549686fe3401888a27b77 (patch) | |
tree | 4dd4cd9c54355a302036c24fcf53fb28b60db055 /core/css/mobile.css | |
parent | b5b4350adadb7b89c06ba37fa072c2cf26102355 (diff) | |
download | nextcloud-server-ecdfea241f7e6837189549686fe3401888a27b77.tar.gz nextcloud-server-ecdfea241f7e6837189549686fe3401888a27b77.zip |
fix left padding of controls bar for apps without navigation
Diffstat (limited to 'core/css/mobile.css')
-rw-r--r-- | core/css/mobile.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/core/css/mobile.css b/core/css/mobile.css index 9dad72a0286..2e515957c80 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -109,9 +109,14 @@ #controls { min-width: initial !important; left: 0 !important; - padding-left: 44px !important; + padding-left: 0; padding-right: 0 !important; } +/* position controls for apps with app-navigation */ +#app-navigation+#app-content #controls { + padding-left: 44px; +} + /* .viewer-mode is when text editor, PDF viewer, etc is open */ #body-user .app-files.viewer-mode #controls { padding-left: 0 !important; |