diff options
author | Marius Blüm <marius@lineone.io> | 2017-02-04 21:00:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-04 21:00:40 +0100 |
commit | 9ce8437b8b5b3295f10670ee2b1c70cac4dfc0cd (patch) | |
tree | 23a8ad272662b5b2fa74ff9fe666138adb013924 /apps | |
parent | 03bbda913dc5f9a4fcacb39e0ba854bd1eab8851 (diff) | |
parent | e0e5b32f944bc922b7049f1a19a65ce3241c805c (diff) | |
download | nextcloud-server-9ce8437b8b5b3295f10670ee2b1c70cac4dfc0cd.tar.gz nextcloud-server-9ce8437b8b5b3295f10670ee2b1c70cac4dfc0cd.zip |
Merge pull request #3353 from nextcloud/mobile-view-files-fix
Fix files mobile view
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/mobile.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index 4a37bf15a4b..4a5abd2b73c 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -1,4 +1,7 @@ -@media only screen and (max-width: 768px) { +/* 938 = table min-width(688) + app-navigation width: 250 + 769 = size where app-navigation (768) is hidden +1 + 688 = table min-width */ +@media only screen and (max-width: 938px) and (min-width: 769px), only screen and (max-width: 688px) { .app-files #app-content.dir-drop{ background-color: rgba(255, 255, 255, 1)!important; |