diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-10-25 21:09:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-25 21:09:59 +0200 |
commit | a03f6c36a63bd68a09ef8f9bfe47d1e1346cc29b (patch) | |
tree | 1a92331f9439e420f0a736c6a00b49c5ff47a6e6 | |
parent | 5359ea90d8812414a84b4d04fbff115fffae3467 (diff) | |
parent | fffbcc6b1bf800924e9a4844a4458ea0e6f8cb2b (diff) | |
download | nextcloud-server-a03f6c36a63bd68a09ef8f9bfe47d1e1346cc29b.tar.gz nextcloud-server-a03f6c36a63bd68a09ef8f9bfe47d1e1346cc29b.zip |
Merge pull request #17676 from nextcloud/backport/17469/stable17
[stable17] fix filename overlapping on mobile
-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, |