-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathInputfieldGeocoder.css
More file actions
111 lines (88 loc) · 1.98 KB
/
InputfieldGeocoder.css
File metadata and controls
111 lines (88 loc) · 1.98 KB
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
107
108
109
110
111
.InputfieldGeocoder {
--input-height: 40px;
--padding: 20px;
}
.AdminThemeDefault .InputfieldGeocoder {
--input-height: 27px;
--padding: 15px;
}
.AdminThemeReno .InputfieldGeocoder {
--input-height: 34.6562px;
--padding: 15.2px;
}
/* same for all themes */
.InputfieldGeocoder .InputfieldText .InputfieldContent { padding-bottom: 0; }
/* query field */
.InputfieldGeocoder .InputfieldText {
position: relative;
}
.InputfieldGeocoder .InputfieldText > .InputfieldContent { padding: 0!important; }
.InputfieldGeocoder .InputfieldText .description {
margin-top: 0;
}
.InputfieldGeocoder .InputfieldText input {
padding-left: 28px!important;
padding-right: 28px!important;
}
/* the status >> */
.InputfieldGeocoder .InputfieldText .InputfieldGeocoderAutocompleteStatus
{
position: absolute;
left: 6px;
bottom: 0;
opacity: .5;
height: var(--input-height);
display: flex;
align-items: center;
text-align: center;
}
/* Latlng display */
.InputfieldGeocoder .InputfieldText .InputfieldGeocoderLatlng {
position: absolute;
display: flex;
align-items: center;
right: 32px;
bottom: 0;
height: var(--input-height);
opacity: .5;
pointer-events: none;
touch-action: none;
user-select: none;
}
/* clear button*/
.InputfieldGeocoder .InputfieldText .InputfieldGeocoderAutocompleteClear {
position: absolute;
display: none;
appearance: none;
-webkit-appearance: none;
background-color: transparent;
border: none;
cursor: pointer;
opacity: .5;
right: 0;
bottom: 0;
height: var(--input-height);
}
.InputfieldGeocoder .InputfieldText .InputfieldGeocoderAutocompleteClear:hover { opacity: 1; }
.InputfieldGeocoderAutocompleteNote {
display: none;
}
/* Preview */
.InputfieldGeocoderPreview {
z-index: 1;
padding-bottom: 50%;
aspect-ratio: 2/1;
margin-top: var(--padding);
}
@media (min-width: 600px) {
.InputfieldGeocoderPreview {
padding-bottom: 33.333%;
aspect-ratio: 3/1;
}
}
/* Popup */
.leaflet-popup-content .uk-spinner {
display: block;
width: 30px;
margin: auto;
}