blob: 379b5be9645e9ca6d37289c1870200419d483e8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
.results_on_deck .ui-icon-trash {
float: left;
cursor: pointer;
}
.results_on_deck {
padding: 0.25em 0;
}
form .aligned .results_on_deck {
padding-left: 38px;
margin-left: 7em;
}
.results_on_deck > div {
margin-bottom: 0.5em;
}
.ui-autocomplete-loading {
background: url('../images/loading-indicator.gif') no-repeat;
background-origin: content-box;
background-position: right;
}
ul.ui-autocomplete {
/*
this is the dropdown menu.
if max-width is not set and you are using django-admin
then the dropdown is the width of your whole page body (totally wrong).
this sets max-width at 60% which is graceful at full page or in a popup
or on a small width window.
fixed width is harder see http://stackoverflow.com/questions/4607164/changing-width-of-jquery-ui-autocomplete-widgets-individually
*/
max-width: 60%;
margin: 0;
padding: 0;
position: absolute;
}
ul.ui-autocomplete li {
list-style-type: none;
padding: 0;
}
ul.ui-autocomplete li a {
display: block;
padding: 2px 3px;
cursor: pointer;
}
.results_on_deck .ajax-label{
line-height: 18px;
}
|