diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-01-29 01:53:54 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-01-29 01:53:54 +0000 |
commit | 217cdd1e44afd01c7573d0c06fdc28495abfd5a9 (patch) | |
tree | 9bd83706a3b26fac6061a96a74d32fc1a6e190c5 /themes | |
parent | 5ef97d7a13e5f4d633097c56ceaf0e4aa516b0e3 (diff) | |
download | jquery-ui-217cdd1e44afd01c7573d0c06fdc28495abfd5a9.tar.gz jquery-ui-217cdd1e44afd01c7573d0c06fdc28495abfd5a9.zip |
Autocomplete: prevent the menu from expanding to 100% width in IE6.
Fixes #5105 - Autocomplete menu not visible in IE6.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base/ui.autocomplete.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/themes/base/ui.autocomplete.css b/themes/base/ui.autocomplete.css index 0f487c9de..e9b5f8712 100644 --- a/themes/base/ui.autocomplete.css +++ b/themes/base/ui.autocomplete.css @@ -5,6 +5,9 @@ .ui-autocomplete-loading { background: white url('images/ui-anim.basic.16x16.gif') right center no-repeat; } .ui-autocomplete-over { background-color: #0A246A; color: white; } +/* workarounds */ +* html .ui-autocomplete-menu { width:1px; } /* without this, the menu expands to 100% in IE6 */ + /* Menu ----------------------------------*/ .ui-menu { |