From bd7abc2d0ab88eaed5dc985446e91e9a499a29d5 Mon Sep 17 00:00:00 2001
From: pgys <info@pexlab.space>
Date: Sat, 29 Oct 2016 13:12:28 +0200
Subject: [PATCH] restricted the height of the settings area in
 core/css/apps.css to max 80%

Signed-off-by: pgys <info@pexlab.space>
---
 core/css/apps.css | 3 +++
 1 file changed, 3 insertions(+)

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;
-- 
GitLab