diff options
author | Greta Doci <gretadoci@gmail.com> | 2019-09-16 17:12:10 +0200 |
---|---|---|
committer | Greta Doci <gretadoci@gmail.com> | 2019-09-16 17:12:10 +0200 |
commit | 2409240d3104a2b68de53ca5f3c9a4a6aca01140 (patch) | |
tree | 04473876dcca95a52d0aedec854e8e1997a6d7a6 /apps | |
parent | 5083c9c198773a09859db227803983eab2d14cce (diff) | |
download | nextcloud-server-2409240d3104a2b68de53ca5f3c9a4a6aca01140.tar.gz nextcloud-server-2409240d3104a2b68de53ca5f3c9a4a6aca01140.zip |
Fix the recent/favorite/shared filename problem
Signed-off-by: Greta Doci <gretadoci@gmail.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/mobile.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/css/mobile.scss b/apps/files/css/mobile.scss index 111909bf957..aaf3dd1fa79 100644 --- a/apps/files/css/mobile.scss +++ b/apps/files/css/mobile.scss @@ -2,7 +2,7 @@ $breakpoint-mobile +1 = size where app-navigation is hidden +1 688 = table min-width */ $min-table-width: 688px; -@media only screen and (max-width: $min-table-width + $navigation-width) and (min-width: $breakpoint-mobile + 1), only screen and (max-width: $min-table-width) { +@media only screen and (max-width: $min-table-width + $navigation-width) and (min-width: $breakpoint-mobile -1), only screen and (max-width: $min-table-width) { .app-files #app-content.dir-drop{ background-color: rgba(255, 255, 255, 1)!important; |