source: trunk/themes/default/js/ui/theme/jquery.ui.autocomplete.css @ 9172

Last change on this file since 9172 was 9172, checked in by patdenice, 13 years ago

Update jQuery to 1.5 and jQuery UI to 1.8.9

File size: 1.1 KB
Line 
1/*
2 * jQuery UI Autocomplete 1.8.9
3 *
4 * Copyright 2011, 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.9
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}
Note: See TracBrowser for help on using the repository browser.