no submit
[emels.git] / emels / static / django_extensions / css / jquery.autocomplete.css
1 /**
2  * @fileOverview CSS for jquery-autocomplete, the jQuery Autocompleter
3  * @author <a href="mailto:dylan@dyve.net">Dylan Verheul</a>
4  * @license MIT | GPL | Apache 2.0, see LICENSE.txt
5  * @see https://github.com/dyve/jquery-autocomplete
6  */
7 .acResults {
8         padding: 0px;
9         border: 1px solid WindowFrame;
10         background-color: Window;
11         overflow: hidden;
12 }
13
14 .acResults ul {
15         margin: 0px;
16         padding: 0px;
17         list-style-position: outside;
18         list-style: none;
19 }
20
21 .acResults ul li {
22         margin: 0px;
23         padding: 2px 5px;
24         cursor: pointer;
25         display: block;
26         font: menu;
27         font-size: 12px;
28         overflow: hidden;
29 }
30
31 .acLoading {
32         background : url('../img/indicator.gif') right center no-repeat;
33 }
34
35 .acSelect {
36         background-color: Highlight;
37         color: HighlightText;
38 }