From 16b6c8a0cef5f7dae81640e9ddb1c1f612fd2229 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Tue, 23 Aug 2016 05:45:53 -0400 Subject: [PATCH] Fix missing min-height on ui-autocomplete lists (T1428) --- skins/larry/styles.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/skins/larry/styles.css b/skins/larry/styles.css index a5cd2d6b8..adc74a7cf 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -745,6 +745,12 @@ a.iconlink.upload { background: linear-gradient(to bottom, #eee 0%, #dcdcdc 100%); } +.ui-autocomplete { + max-height: 160px; + overflow-x: hidden; + overflow-y: auto; +} + /*** basic page layout ***/ @@ -3089,4 +3095,4 @@ ul.toolbarmenu li span.copy { _:not(), _:-moz-handler-blocked, .mozilla .mce-btn-small i { line-height: 20px !important; -} \ No newline at end of file +}