From 10f1c34a7540ec209b4a71657a25eb4740c432fc Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Fri, 6 May 2016 11:38:36 -0500 Subject: [PATCH] Tweak styles for jQuery UI selectmenu dropdowns Give max height so that we get a scroll bar out of the deal, instead of an endless list. --- tailbone/static/css/base.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tailbone/static/css/base.css b/tailbone/static/css/base.css index f939d915..fff3719c 100644 --- a/tailbone/static/css/base.css +++ b/tailbone/static/css/base.css @@ -91,3 +91,11 @@ ul.error { ul.error li { list-style-type: none; } + +/****************************** + * jQuery UI tweaks + ******************************/ + +ul.ui-menu { + max-height: 30em; +}