diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-01 12:33:13 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-02 20:30:57 +0200 |
commit | 0bad377f4cf7351994dc37b8e3043cdb2fd82ee1 (patch) | |
tree | b0fa242302452967acbe9cdffb13fdfc40b2e98f | |
parent | 27323c977f0da690fd02396a42ac70bfdd38d6d3 (diff) | |
download | nextcloud-server-0bad377f4cf7351994dc37b8e3043cdb2fd82ee1.tar.gz nextcloud-server-0bad377f4cf7351994dc37b8e3043cdb2fd82ee1.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>
-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 ac755700294..d4741d9a190 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; } #filestable tbody tr { 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, |