diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-01-24 18:20:52 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-01-24 18:20:52 +0100 |
commit | c767ebcc03c604f3141af4c286ad099fdf64c561 (patch) | |
tree | eef961f142547bbac4f6fde4285d7fb0eb71ea96 | |
parent | 617aa3cf29955a23eed2ececc8e1876d77002223 (diff) | |
download | nextcloud-server-c767ebcc03c604f3141af4c286ad099fdf64c561.tar.gz nextcloud-server-c767ebcc03c604f3141af4c286ad099fdf64c561.zip |
fix multiselect bar being too short on big displays
-rw-r--r-- | apps/files/css/files.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 74e625f371d..1c48d61c4e8 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -103,7 +103,7 @@ table td { } table th#headerName { position: relative; - width: 100em; /* not really sure why this works better than 100% … table styling */ + width: 9999px; /* not really sure why this works better than 100% … table styling */ padding: 0; } #headerName-container { @@ -145,6 +145,7 @@ table.multiselect thead th { } table.multiselect #headerName { position: relative; + width: 9999px; /* when we use 100%, the styling breaks on mobile … table styling */ } table td.selection, table th.selection, table td.fileaction { width:2em; text-align:center; } table td.filename a.name { |