diff options
author | Byron Jones <glob@mozilla.com> | 2015-05-07 06:49:01 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-05-07 06:49:01 +0200 |
commit | 33a4bd46fd17ab28567cdeb2eb3733901f2a033e (patch) | |
tree | 2639f65e1e408482b8e1b65f73c2245ae58617ba /skins | |
parent | 7a75256f5daa3b81bea0c6d47b53d2409568d7fa (diff) | |
download | bugzilla-33a4bd46fd17ab28567cdeb2eb3733901f2a033e.tar.gz bugzilla-33a4bd46fd17ab28567cdeb2eb3733901f2a033e.tar.xz |
Bug 1159589: migrate autocomplete from yui to jquery
r=dylan,a=glob
Diffstat (limited to 'skins')
-rw-r--r-- | skins/standard/global.css | 28 | ||||
-rw-r--r-- | skins/standard/throbber.gif | bin | 0 -> 723 bytes |
2 files changed, 28 insertions, 0 deletions
diff --git a/skins/standard/global.css b/skins/standard/global.css index 25622a6a4..e00ddd819 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -1069,3 +1069,31 @@ table.field_value_explanation { } /* duplicates.cgi (end) */ + + +/* autocomplete */ + +.autocomplete-suggestions { + border: 1px solid #999; + background: #fff; + color: #000; + overflow: auto; + cursor: pointer; +} + +.autocomplete-suggestion { + padding: 2px 5px; + white-space: nowrap; + overflow: hidden; +} + +.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 Binary files differnew file mode 100644 index 000000000..bc4fa6561 --- /dev/null +++ b/skins/standard/throbber.gif |