| 1 |
/*! |
| 2 |
* jQuery UI Autocomplete 1.8.24 |
| 3 |
* |
| 4 |
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) |
| 5 |
* Dual licensed under the MIT or GPL Version 2 licenses. |
| 6 |
* http://jquery.org/license |
| 7 |
* |
| 8 |
* http://docs.jquery.com/UI/Autocomplete#theming |
| 9 |
*/ |
| 10 |
.ui-autocomplete { position: absolute; cursor: default; } |
| 11 |
|
| 12 |
/* workarounds */ |
| 13 |
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ |
| 14 |
|
| 15 |
/* |
| 16 |
* jQuery UI Menu 1.8.24 |
| 17 |
* |
| 18 |
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) |
| 19 |
* Dual licensed under the MIT or GPL Version 2 licenses. |
| 20 |
* http://jquery.org/license |
| 21 |
* |
| 22 |
* http://docs.jquery.com/UI/Menu#theming |
| 23 |
*/ |
| 24 |
.ui-menu { |
| 25 |
list-style:none; |
| 26 |
padding: 2px; |
| 27 |
margin: 0; |
| 28 |
display:block; |
| 29 |
float: left; |
| 30 |
} |
| 31 |
.ui-menu .ui-menu { |
| 32 |
margin-top: -3px; |
| 33 |
} |
| 34 |
.ui-menu .ui-menu-item { |
| 35 |
margin:0; |
| 36 |
padding: 0; |
| 37 |
zoom: 1; |
| 38 |
float: left; |
| 39 |
clear: left; |
| 40 |
width: 100%; |
| 41 |
} |
| 42 |
.ui-menu .ui-menu-item a { |
| 43 |
text-decoration:none; |
| 44 |
display:block; |
| 45 |
padding:.2em .4em; |
| 46 |
line-height:1.5; |
| 47 |
zoom:1; |
| 48 |
} |
| 49 |
.ui-menu .ui-menu-item a.ui-state-hover, |
| 50 |
.ui-menu .ui-menu-item a.ui-state-active { |
| 51 |
font-weight: normal; |
| 52 |
margin: -1px; |
| 53 |
} |
| 54 |
|