diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-04 15:47:43 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2015-08-07 01:22:44 +0200 |
commit | 3c36813ea70a82eadf77e9b86ae261320364d489 (patch) | |
tree | 6ec3c036ccdbef26ef56dc7106458d5dfdaeffd2 /core | |
parent | 781ba420c95576ead4e8275b05fb72ea72b0d9c6 (diff) | |
download | nextcloud-server-3c36813ea70a82eadf77e9b86ae261320364d489.tar.gz nextcloud-server-3c36813ea70a82eadf77e9b86ae261320364d489.zip |
fix right sidebar position and first style
Diffstat (limited to 'core')
-rw-r--r-- | core/css/apps.css | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/core/css/apps.css b/core/css/apps.css index bbeb4444991..091bb2c22fc 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -425,13 +425,12 @@ sibling containers properly. Compare Files app for example. */ #app-sidebar { - position: absolute; - top: 0; + position: fixed; + top: 45px; right: 0; left: auto; bottom: 0; - width: 30%; - min-width: 300px; + width: 300px; display: block; background: #eee; -webkit-transition: margin-right 300ms; @@ -441,14 +440,11 @@ overflow-x: hidden; overflow-y: auto; visibility: visible; - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - box-shadow: 0 2px 3px rgba(50, 50, 50, .4); z-index: 500; } #app-sidebar ~ .with-app-sidebar { - width: 70%; + width: 73%; } #app-sidebar.disappear { @@ -639,4 +635,3 @@ em { .tabsContainer .tab { padding: 15px; } - |