diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2010-02-02 14:04:50 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2010-02-02 14:04:50 +0000 |
commit | df391a998fe3af2fe950e7c07921f70c02e8d541 (patch) | |
tree | 7b958e3bbb46ae91ca43591305deb5269e71b7ff /themes | |
parent | d549ba6d43072f65c56159a136ad4c077d859d36 (diff) | |
download | jquery-ui-df391a998fe3af2fe950e7c07921f70c02e8d541.tar.gz jquery-ui-df391a998fe3af2fe950e7c07921f70c02e8d541.zip |
Fix for #5120 - create menu only once and return that element from the widget method, put ui-autocomplete class on menu
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base/ui.autocomplete.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/base/ui.autocomplete.css b/themes/base/ui.autocomplete.css index f42a05a4c..03ad7d007 100644 --- a/themes/base/ui.autocomplete.css +++ b/themes/base/ui.autocomplete.css @@ -1,10 +1,10 @@ /* Autocomplete ----------------------------------*/ -.ui-autocomplete-menu { position: absolute; cursor: default; } +.ui-autocomplete { position: absolute; cursor: default; } .ui-autocomplete-loading { background: white url('images/ui-anim.basic.16x16.gif') right center no-repeat; } /* workarounds */ -* html .ui-autocomplete-menu { width:1px; } /* without this, the menu expands to 100% in IE6 */ +* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ /* Menu ----------------------------------*/ |