diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-03-17 18:44:18 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-03-18 13:31:16 +0100 |
commit | e5fd6816df55b8085bfef8891e16083dd4111bc1 (patch) | |
tree | 4fe06cfa2366b594a7c98c2783f647c68591a848 /apps | |
parent | ccc9db6c540c8f4e443ffbd2e618b90eb5addf50 (diff) | |
download | nextcloud-server-e5fd6816df55b8085bfef8891e16083dd4111bc1.tar.gz nextcloud-server-e5fd6816df55b8085bfef8891e16083dd4111bc1.zip |
fix position of 'Deleted files' sidebar entry, fix #10815
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.css | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 1d6b4ad9e07..d5f3d501d4b 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -105,8 +105,10 @@ /* move Deleted Files to bottom of sidebar */ .nav-trashbin { - position: absolute !important; - bottom: 0; + position: fixed !important; + bottom: 44px; + width: inherit !important; + background-color: #f5f5f5; } #filestable tbody tr { background-color:#fff; height:40px; } |