diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2016-11-02 08:45:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-02 08:45:05 +0100 |
commit | 19af06cdea5719226d851bf4ad531220d2d37bed (patch) | |
tree | 9f46ca3ffdfaa575035802fc7e979c2445fae47b | |
parent | 122fbf0092b569d2cfb54c5d7320dc87b6f1472a (diff) | |
parent | bd7abc2d0ab88eaed5dc985446e91e9a499a29d5 (diff) | |
download | nextcloud-server-19af06cdea5719226d851bf4ad531220d2d37bed.tar.gz nextcloud-server-19af06cdea5719226d851bf4ad531220d2d37bed.zip |
Merge pull request #1951 from nextcloud/settingsmaxheight
restricted the height of the settings area in core/css/apps.css
-rw-r--r-- | core/css/apps.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/css/apps.css b/core/css/apps.css index 178f8662811..440b188dc19 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -463,8 +463,11 @@ #app-settings { position: fixed; width: 250px; /* change to 100% when layout positions are absolute */ + max-height: 80%; bottom: 0; z-index: 140; + overflow-x: hidden; + overflow-y: scroll; } #app-settings.opened #app-settings-content { display: block; |