diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-09-17 18:16:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-17 18:16:47 +0200 |
commit | 0a558ffbc8a5da7b56d553cb1828497154e1fa43 (patch) | |
tree | b16cffaac599d7588a1291a32ac5960f245814bd /apps/files | |
parent | 85610d9b99602330664c3649501e740588a00e05 (diff) | |
parent | 2409240d3104a2b68de53ca5f3c9a4a6aca01140 (diff) | |
download | nextcloud-server-0a558ffbc8a5da7b56d553cb1828497154e1fa43.tar.gz nextcloud-server-0a558ffbc8a5da7b56d553cb1828497154e1fa43.zip |
Merge pull request #17162 from nextcloud/bugfix/noid/fix_recent-favorite_filename_ovelaping
Fix the recent/favorite/shared filename problem
Diffstat (limited to 'apps/files')
-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; |