]> source.dussan.org Git - nextcloud-server.git/commitdiff
Added min width to files table
authorVincent Petry <pvince81@owncloud.com>
Thu, 21 Nov 2013 13:45:24 +0000 (14:45 +0100)
committerVincent Petry <pvince81@owncloud.com>
Thu, 21 Nov 2013 13:45:24 +0000 (14:45 +0100)
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.

apps/files/css/files.css

index 5ad9e389c0a57bc4ad8848429fd9e822cc3a82bc..e96fa648157a6c71aff35089036e0879c85c4c33 100644 (file)
@@ -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);