From 4adf4fcc4a284f1fff6ce842959954367e2fdc22 Mon Sep 17 00:00:00 2001 From: azivner Date: Sun, 3 Sep 2017 18:53:28 -0400 Subject: [PATCH] added scrollbar to the autocomplete --- static/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/static/style.css b/static/style.css index 9ac84598c..c652d192e 100644 --- a/static/style.css +++ b/static/style.css @@ -44,3 +44,9 @@ span.fancytree-node.fancytree-folder > span.fancytree-icon { background-image: url("icons/folder.png"); } +.ui-autocomplete { + max-height: 300px; + overflow-y: auto; + /* prevent horizontal scrollbar */ + overflow-x: hidden; +} \ No newline at end of file