diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2015-07-23 18:29:45 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2015-08-07 01:22:43 +0200 |
commit | f508cf40da93eba05a17b4ffa834a125dbdb2bcb (patch) | |
tree | de8272b93088bf8a8e57871405790e6185a7e35f /apps/files/css | |
parent | 734c6b0b6f10cb8cb39773e1c93088c24c9f50af (diff) | |
download | nextcloud-server-f508cf40da93eba05a17b4ffa834a125dbdb2bcb.tar.gz nextcloud-server-f508cf40da93eba05a17b4ffa834a125dbdb2bcb.zip |
sidebar shall not overlap but shrink the contnet
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/detailsView.css | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/apps/files/css/detailsView.css b/apps/files/css/detailsView.css index 51aaf393751..ec0d5ac2110 100644 --- a/apps/files/css/detailsView.css +++ b/apps/files/css/detailsView.css @@ -1,14 +1,18 @@ .app-files .detailsView.disappear { - margin-right: -359px; + visibility: hidden; +} + +.with-sidebar { + width: 80%; } .app-files .detailsView { - position: fixed; - width: 350px; + position: absolute; + width: 20%; top: 44px; /* main header's height */ - right: 9px; + right: 0; left: auto; bottom: 0; background-color: white; @@ -18,6 +22,7 @@ transition: margin-right 300ms; overflow-x: hidden; overflow-y: auto; + visibility: visible; } .app-files .detailsView { |