From 217cdd1e44afd01c7573d0c06fdc28495abfd5a9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Fri, 29 Jan 2010 01:53:54 +0000 Subject: [PATCH] Autocomplete: prevent the menu from expanding to 100% width in IE6. Fixes #5105 - Autocomplete menu not visible in IE6. --- themes/base/ui.autocomplete.css | 3 +++ 1 file changed, 3 insertions(+) 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 { -- 2.39.5