diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-11-24 15:02:56 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-11-24 15:02:56 -0800 |
commit | 60e2ee631a9853a80506d547630e58a6efeace01 (patch) | |
tree | b24dbb3e0e3d868c357d2402e2f12a93b510ea0a /core | |
parent | 1a6907913924dc4d95e21da16054597bd95fe219 (diff) | |
parent | ae6610f0ea6c46910c131116a8a84ae1567ca175 (diff) | |
download | nextcloud-server-60e2ee631a9853a80506d547630e58a6efeace01.tar.gz nextcloud-server-60e2ee631a9853a80506d547630e58a6efeace01.zip |
Merge pull request #5998 from owncloud/navigation-fix
Doesn't Cut the top arrow from navigation
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index f2561dd4620..938b522a90f 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -561,12 +561,13 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } /* NAVIGATION ------------------------------------------------------------- */ #navigation { - position: fixed; - float: left; + position: absolute; + top: 0; + bottom: 0; + left: 0; width: 80px; - padding-top: 3.5em; + margin-top:45px; z-index: 75; - height: 100%; background:#383c43 url('../img/noise.png') repeat; overflow:hidden; box-sizing:border-box; -moz-box-sizing:border-box; /* prevent ugly selection effect on accidental selection */ @@ -627,7 +628,7 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } margin: 0 auto -72px; } #apps-management, #navigation .push { - height: 70px; + height: 72px; } #apps-management { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; |