diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-07-01 21:48:06 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-07-01 21:48:06 +0200 |
commit | 32d2457e5810a9838258aadc051a53964b5a3233 (patch) | |
tree | 44674f0f2654a31567e6c312e5680c6dff0ad107 /apps/files | |
parent | 19a6dc5420d3a27c50590b2f060700edff2ef73e (diff) | |
download | nextcloud-server-32d2457e5810a9838258aadc051a53964b5a3233.tar.gz nextcloud-server-32d2457e5810a9838258aadc051a53964b5a3233.zip |
Fix files list scroll behavior
View container height needs to be accurate and span over the whole
scroll container for infinite scrolling to work properly.
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/css/files.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 89130e47fd3..3eec7ba9054 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -89,7 +89,7 @@ /* fit app list view heights */ .app-files #app-content>.viewcontainer { - height: 100%; + min-height: 100%; } /* move Deleted Files to bottom of sidebar */ |