From f8b984852ae27f14a5f44e651193f00977737ab1 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 26 May 2015 23:59:57 +0800 Subject: Bug 1146782: backport bug 1159589 to bmo (migrate autocomplete from yui to jquery) --- skins/standard/global.css | 41 ++++++++++++++++++++++++++++++----------- skins/standard/throbber.gif | Bin 0 -> 723 bytes 2 files changed, 30 insertions(+), 11 deletions(-) create mode 100644 skins/standard/throbber.gif (limited to 'skins/standard') diff --git a/skins/standard/global.css b/skins/standard/global.css index 0cfec436f..940a4add7 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -668,17 +668,6 @@ input.required, select.required, span.required_explanation { background-color: #FFEBEB; } -/* jquery-ui overrides */ - -.ui-autocomplete { - /* set a max height for autocomplete lists */ - overflow-y: auto; - overflow-x: hidden; - max-height: 500px; - /* hovering over the bottom item increases the height by 1px, resulting in a scrollbar */ - padding-bottom: 1px !important; -} - /* always use our font and size */ .ui-widget { font-family: inherit !important; @@ -689,3 +678,33 @@ input.required, select.required, span.required_explanation { .ui-menu .ui-menu-item { font-weight: normal !important; } + +/* autocomplete */ + +.autocomplete-suggestions { + border: 1px solid #999; + background: #fff; + color: #000; + overflow-x: hidden; + overflow-y: auto; + cursor: pointer; +} + +.autocomplete-suggestion { + padding: 2px 5px; + white-space: nowrap; + overflow: hidden; + width: 100%; + margin-right: 1.5em; +} + +.autocomplete-selected { + background: #426fd9; + color: #FFF +} + +.autocomplete-running { + background-image: url("throbber.gif") !important; + background-repeat: no-repeat !important; + background-position: right 8px center !important; +} diff --git a/skins/standard/throbber.gif b/skins/standard/throbber.gif new file mode 100644 index 000000000..bc4fa6561 Binary files /dev/null and b/skins/standard/throbber.gif differ -- cgit v1.2.3-24-g4f1b