diff options
author | Greta Doci <gretadoci@gmail.com> | 2019-10-08 17:50:58 +0200 |
---|---|---|
committer | Greta Doci <gretadoci@gmail.com> | 2019-10-08 17:50:58 +0200 |
commit | e4ab1461ffc3c2686c47547b230a20c564e09f92 (patch) | |
tree | e7103fe490c33fd379a8612993ed4e8cc338378b | |
parent | b7803665c1c030378511161dd51c10ac17e6cf6b (diff) | |
download | nextcloud-server-e4ab1461ffc3c2686c47547b230a20c564e09f92.tar.gz nextcloud-server-e4ab1461ffc3c2686c47547b230a20c564e09f92.zip |
fix filename overlapping on mobile ref #17364
Signed-off-by: Greta Doci <gretadoci@gmail.com>
-rw-r--r-- | apps/files/css/mobile.scss | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files/css/mobile.scss b/apps/files/css/mobile.scss index aaf3dd1fa79..aca131d36f8 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 + 769 = size where app-navigation (768) 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, |