diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-11-21 14:45:24 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-11-21 14:45:24 +0100 |
commit | 14ad1ebf533eb211426ad24b862538059b3bfefa (patch) | |
tree | d0b886797282c3f70c1b7f820a9a4e3e662acf42 /apps | |
parent | 391f267d380f0d098d730d3bc74633192cc13570 (diff) | |
download | nextcloud-server-14ad1ebf533eb211426ad24b862538059b3bfefa.tar.gz nextcloud-server-14ad1ebf533eb211426ad24b862538059b3bfefa.zip |
Added min width to files table
Having a too small widths for the files table doesn't make sense as it
overlaps file actions with the files themselves and make them
unclickable, especially when viewed on mobile phone.
The compromise that this fix introduces is to have a minimum width that
will trigger horizontal scrolling, which will at least make it possible
to click files on mobile phones.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 5ad9e389c0a..e96fa648157 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -65,6 +65,9 @@ top: 44px; width: 100%; } +#filestable, #controls { + min-width: 680px; +} #filestable tbody tr { background-color:#fff; height:2.5em; } #filestable tbody tr:hover, tbody tr:active { background-color: rgb(240,240,240); |