summaryrefslogtreecommitdiffstats
path: root/skins
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-08-02 02:52:17 +0200
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-08-02 02:52:17 +0200
commit3cfa98677f31d4a6660c330fa9ec0d5206fb3565 (patch)
tree494c86d5ba256aa761a660bdf41d0051671822a8 /skins
parent16f1833e572297edd89faddb69364e09efecdfdb (diff)
downloadbugzilla-3cfa98677f31d4a6660c330fa9ec0d5206fb3565.tar.gz
bugzilla-3cfa98677f31d4a6660c330fa9ec0d5206fb3565.tar.xz
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
Diffstat (limited to 'skins')
-rw-r--r--skins/standard/global.css9
1 files changed, 6 insertions, 3 deletions
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;
}