This repository has been archived by the owner on Jun 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathjquery.geocodify.css
67 lines (62 loc) · 1.72 KB
/
jquery.geocodify.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
input.geocodify {
width: 345px;
font-size: 16px;
line-height: 20px;
border: 1px solid #ccc;
outline: none;
vertical-align: top;
padding: 9px 5px;
margin: 0;
position: relative;
z-index: 9002;
color: black;
font-family: inherit;
box-sizing:inherit;
text-align: start;
direction: ltr;
}
input.geocodify:focus {
border: 1px solid #2262CC;
}
.geocodify-dropdown {
position: absolute;
display:block;
z-index: 9003;
width: 355px;
margin: 0 !important;
padding: 5px 0 !important;
background-color: white;
border-top-color: #D9D9D9;
border: 1px solid #ccc;
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
max-height: 250px;
overflow-x: hidden;
overflow-y: auto;
}
.geocodify-dropdown ul {
margin: 0 !important;
padding: 0 !important;
}
.geocodify-dropdown li {
display: block;
padding: 5px 0 5px 8px !important;
cursor: pointer;
margin: 0 !important;
list-style-type: none;
text-align: left;
font-size: 16px;
font-family: inherit;
}
.selected {
color: white;
background-color: #2262CC;
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
background-image: -o-linear-gradient(top, #0088cc, #0077b3);
background-image: linear-gradient(to bottom, #0088cc, #0077b3);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)
}