diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2019-10-25 14:59:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-25 14:59:35 +0200 |
commit | 6d9bcb71e755ea3479277b839f20e526bca84d9c (patch) | |
tree | d78f1456e106eb14ba0803ff98e67c16138c970c /apps/files | |
parent | a1cc2b21cc4e8abc0aa04938429e73b7b1f66fef (diff) | |
parent | c0cf9d53d96888678d0db05fa725e6feb31df6dc (diff) | |
download | nextcloud-server-6d9bcb71e755ea3479277b839f20e526bca84d9c.tar.gz nextcloud-server-6d9bcb71e755ea3479277b839f20e526bca84d9c.zip |
fix filename overlapping on mobile (#17469)
fix filename overlapping on mobile
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/css/mobile.scss | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/apps/files/css/mobile.scss b/apps/files/css/mobile.scss index aaf3dd1fa79..3ba5f1e0d8d 100644 --- a/apps/files/css/mobile.scss +++ b/apps/files/css/mobile.scss @@ -1,8 +1,8 @@ -/* 938 = table min-width(688) + app-navigation width: 250 - $breakpoint-mobile +1 = size where app-navigation is hidden +1 - 688 = table min-width */ +/* 938 = table min-width(688) + app-navigation width: 250\ + $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; @@ -10,6 +10,7 @@ $min-table-width: 688px; #body-user #filestable { min-width: 250px; + display: initial; } table th#headerSize, |