diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-01 12:33:13 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-10-01 23:34:29 +0200 |
commit | 9cd048c092e7f366d527d04a358411f934efaa6a (patch) | |
tree | 11a1109bc7afec534fab5e9a35e1e005965cadbc /apps/files/css | |
parent | 28eaacd59fe67dda6ec7686dabecabff3bedae0f (diff) | |
download | nextcloud-server-9cd048c092e7f366d527d04a358411f934efaa6a.tar.gz nextcloud-server-9cd048c092e7f366d527d04a358411f934efaa6a.zip |
Reduce the min-width of the files table so it works on sharing pages on mobile
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.scss | 2 | ||||
-rw-r--r-- | apps/files/css/mobile.scss | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index bd57f1907f5..08f0ac1bcf2 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -49,7 +49,7 @@ #filestable { position: relative; width: 100%; - min-width: 500px; + min-width: 250px; } /* fit app list view heights */ diff --git a/apps/files/css/mobile.scss b/apps/files/css/mobile.scss index 16144c4b4bd..b661fc61d45 100644 --- a/apps/files/css/mobile.scss +++ b/apps/files/css/mobile.scss @@ -7,9 +7,8 @@ background-color: rgba(255, 255, 255, 1)!important; } -/* don’t require a minimum width for files table */ #body-user #filestable { - min-width: 300px; + min-width: 250px; } table th#headerSize, |