diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-11-21 13:34:31 +0100 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-11-27 16:10:48 +0100 |
commit | 457a7d4baaf6a6e493dd604907d4c73890946f13 (patch) | |
tree | a771eb96747ddf1ec56884227c1616ebef14f5a2 | |
parent | 5b7b0536346a4a6608e0b294b6784ac5ff3b142a (diff) | |
download | nextcloud-server-457a7d4baaf6a6e493dd604907d4c73890946f13.tar.gz nextcloud-server-457a7d4baaf6a6e493dd604907d4c73890946f13.zip |
always show app navigation scrollbar when too many apps in there
-rw-r--r-- | core/css/styles.css | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 5c0aa1fedc2..e1e97ba74b9 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -568,14 +568,13 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } width: 80px; margin-top:45px; z-index: 75; - background:#383c43 url('../img/noise.png') repeat; - overflow:hidden; box-sizing:border-box; -moz-box-sizing:border-box; + height: 100%; + background: #383c43 url('../img/noise.png') repeat; + overflow-y: auto; + -moz-box-sizing:border-box; box-sizing:border-box; /* prevent ugly selection effect on accidental selection */ -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } -#navigation:hover { - overflow-y: auto; /* show scrollbar only on hover */ -} #apps { height: 100%; } |