diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-07-16 12:21:40 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2015-08-07 01:22:43 +0200 |
commit | deb9d4d7788948db627c4b18cd646e39e7190827 (patch) | |
tree | d49889e060e42270e612ee14e1961966aa527f67 /apps/files/css | |
parent | d0f73d78f3de2546de80246c8343f6b64e37e5d7 (diff) | |
download | nextcloud-server-deb9d4d7788948db627c4b18cd646e39e7190827.tar.gz nextcloud-server-deb9d4d7788948db627c4b18cd646e39e7190827.zip |
Right sidebar now has its own scrollbar
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/detailsView.css | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/apps/files/css/detailsView.css b/apps/files/css/detailsView.css index 5b9b51a16d3..8d412a83667 100644 --- a/apps/files/css/detailsView.css +++ b/apps/files/css/detailsView.css @@ -1,21 +1,23 @@ .app-files .detailsView.disappear { - margin-right: -350px; + margin-right: -359px; } .app-files .detailsView { - position: absolute; + position: fixed; width: 350px; - top: 0; - right: 0; + top: 44px; /* main header's height */ + right: 9px; left: auto; - min-height: 100%; + bottom: 0; background-color: white; -webkit-transition: margin-right 300ms; -moz-transition: margin-right 300ms; -o-transition: margin-right 300ms; transition: margin-right 300ms; + overflow-x: hidden; + overflow-y: auto; } .app-files .detailsView { |