aboutsummaryrefslogtreecommitdiffstats
path: root/themes/base/jquery.ui.autocomplete.css
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2010-02-16 01:38:23 +0000
committerRichard Worth <rdworth@gmail.com>2010-02-16 01:38:23 +0000
commit828bcdd2f0befbf450dcd1d7c387388acd7a191b (patch)
treec0b4c2cbbf17047a2ba101cd50e2ced4532dbdd8 /themes/base/jquery.ui.autocomplete.css
parentd4154562ea663926bbd5bbc3bc345c27250aaeb9 (diff)
downloadjquery-ui-828bcdd2f0befbf450dcd1d7c387388acd7a191b.tar.gz
jquery-ui-828bcdd2f0befbf450dcd1d7c387388acd7a191b.zip
fixed #5163 - themes: css files need to be renamed to be consistent with js file renames in 1.8a1
Diffstat (limited to 'themes/base/jquery.ui.autocomplete.css')
-rw-r--r--themes/base/jquery.ui.autocomplete.css34
1 files changed, 34 insertions, 0 deletions
diff --git a/themes/base/jquery.ui.autocomplete.css b/themes/base/jquery.ui.autocomplete.css
new file mode 100644
index 000000000..ebb59c545
--- /dev/null
+++ b/themes/base/jquery.ui.autocomplete.css
@@ -0,0 +1,34 @@
+/* Autocomplete
+----------------------------------*/
+.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 { width:1px; } /* without this, the menu expands to 100% in IE6 */
+
+/* Menu
+----------------------------------*/
+.ui-menu {
+ list-style:none;
+ padding: 2px;
+ margin: 0;
+ display:block;
+}
+.ui-menu .ui-menu {
+ margin-top: -3px;
+}
+.ui-menu .ui-menu-item {
+ margin:0;
+ padding: 0;
+ width: 100%;
+}
+.ui-menu .ui-menu-item a {
+ text-decoration:none;
+ display:block;
+ padding:.2em .4em;
+ line-height:1.5;
+}
+.ui-menu .ui-menu-item a.ui-state-hover,
+.ui-menu .ui-menu-item a.ui-state-active {
+ margin: -1px;
+}