diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-10-30 16:26:42 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-10-30 16:26:42 -0400 |
commit | d693ce5324f6f3be8479ef083e4eaf3c705ef043 (patch) | |
tree | cb5c14a3b8b468301bca6bd888f1c0fe01d14273 /themes/base/jquery.ui.autocomplete.css | |
parent | a688e7c8d42d3d7737f2bab2fbe7c99b23f87a66 (diff) | |
download | jquery-ui-d693ce5324f6f3be8479ef083e4eaf3c705ef043.tar.gz jquery-ui-d693ce5324f6f3be8479ef083e4eaf3c705ef043.zip |
Autocomplete: Set initial left position for menu. Fixes #8749 - Autocomplete dropdown positioned incorrectly in IE.
Diffstat (limited to 'themes/base/jquery.ui.autocomplete.css')
-rw-r--r-- | themes/base/jquery.ui.autocomplete.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/themes/base/jquery.ui.autocomplete.css b/themes/base/jquery.ui.autocomplete.css index b9835baa1..39f9001a2 100644 --- a/themes/base/jquery.ui.autocomplete.css +++ b/themes/base/jquery.ui.autocomplete.css @@ -10,6 +10,7 @@ */ .ui-autocomplete { position: absolute; - top: 0; /* #8656 */ + top: 0; + left: 0; cursor: default; } |