From 3cfa98677f31d4a6660c330fa9ec0d5206fb3565 Mon Sep 17 00:00:00 2001 From: Max Kanat-Alexander Date: Sun, 1 Aug 2010 17:52:17 -0700 Subject: Bug 578572: Make the user autocomplete and keyword autocomplete behave similarly, and fix a race condition in user autocomplete where sometimes an older result would appear after a newer result, overriding the newer result. r=pyrzak, a=mkanat --- skins/standard/global.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'skins') diff --git a/skins/standard/global.css b/skins/standard/global.css index c5dd62156..4f2709e10 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -518,16 +518,19 @@ input.required, select.required, span.required_explanation { width:auto !important; } .yui-skin-sam .yui-ac-container { left:0px !important; } .yui-skin-sam .yui-ac { display: inline-block; } +#bugzilla-body .yui-ac-content { + max-height: 19em; + overflow: auto; + overflow-x: hidden; +} #keyword_container { padding-bottom: 2em; padding-top: .2em; } + #keyword_container .yui-ac-content { - max-height: 19em; - overflow: auto; - overflow-x: hidden; margin-left: -1px; } -- cgit v1.2.3-24-g4f1b