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