-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmod.autocomplete.css
106 lines (95 loc) · 3.04 KB
/
mod.autocomplete.css
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* This file is part of cbautocomplete2.
* Copyright © 2010-2013 stiftung kulturserver.de ggmbh <[email protected]>
*
* cbui is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* cbui is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with cbui. If not, see <http://www.gnu.org/licenses/>.
*/
.__AC_position {
background-image: url(pointer.gif);
background-position: center top;
background-repeat: no-repeat;
color: #000000;
font-family: Arial;
font-size: 11px;
padding-top: 11px;
position: absolute;
}
.__AC_layer {
background-color: #F7ECCF;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
position: relative;
padding: 15px 0px 10px 10px;
z-index: 1;
}
.__AC_data {
max-height: 200px;
overflow-y: auto;
padding-right: 10px;
}
.__AC_close {
background-image: url(close.gif);
cursor: pointer;
height: 11px;
position: absolute;
right: 2px;
top: 13px;
width: 11px;
z-index: 2;
}
.__AC_data div {
padding: 2px;
}
.__AC_data div:hover, .__AC_keyhover, .__AC_ie8HoverFix {
background-color: #F1851B;
cursor: pointer;
color: #ffffff;
}
input.__AC_invalidated {
background-color: #EBEBE9 !important;
color: #99A1AA !important;
background-image: url(invalidated.gif);
background-position: right center;
background-repeat: no-repeat;
font-style: normal !important;
}
input.__AC_editing {
background-color: #F7ECCF !important;
color: #D95E28 !important;
background-image: url(editing.gif);
background-position: right center;
background-repeat: no-repeat;
font-style: normal !important;
}
input.__AC_validating, div.__AC_validating {
background-color: #F7ECCF !important;
color: #D95E28 !important;
background-image: url(validating.gif);
background-position: right center;
background-repeat: no-repeat;
font-style: normal !important;
}
input.__AC_validated {
background-color: #EDF4D8 !important;
color: #42443F !important;
background-image: url(validated.gif);
background-position: right center;
background-repeat: no-repeat;
font-style: normal !important;
}
input.__AC_freetext {
background-color: #ECEDE1 !important;
color: #3F3F3F !important;
font-style: normal !important;
}