renusify 1.4.3 → 1.4.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/app/index.vue +1 -10
- package/components/chip/style.scss +0 -1
- package/components/codeEditor/highlightHtml.vue +8 -2
- package/components/codeEditor/index.vue +13 -55
- package/components/codeEditor/mixin.js +18 -4
- package/components/form/camInput.vue +6 -2
- package/components/form/input.vue +2 -2
- package/components/form/inputTel/assets/flags.png +0 -0
- package/components/form/inputTel/assets/flags@2x.png +0 -0
- package/components/form/mask-input.vue +2 -2
- package/components/form/select.vue +1 -1
- package/components/form/text-area.vue +1 -2
- package/components/form/text-editor/index.vue +0 -1
- package/components/form/timepicker/index.vue +18 -16
- package/components/form/unit-input.vue +1 -0
- package/components/formCreator/index.vue +7 -20
- package/components/index.js +1 -1
- package/components/infinite/index.vue +9 -6
- package/components/map/images/destination.png +0 -0
- package/components/map/images/layers.png +0 -0
- package/components/map/images/marker-icon.png +0 -0
- package/components/map/images/origin.png +0 -0
- package/components/map/images/point.png +0 -0
- package/components/map/index.vue +52 -20
- package/components/map/leaflet.css +511 -397
- package/components/map/route.vue +570 -560
- package/components/map/select.vue +64 -48
- package/components/message/index.vue +22 -21
- package/components/modal/index.vue +20 -7
- package/components/modal/style.scss +17 -14
- package/components/{app/notify → notify}/index.vue +21 -29
- package/components/{app/notify → notify}/notification.vue +10 -10
- package/components/notify/notify.js +27 -0
- package/components/searchBox/index.vue +30 -12
- package/components/slider/index.vue +1 -0
- package/components/table/crud/header.vue +55 -34
- package/components/table/crud/index.vue +4 -4
- package/components/table/index.vue +366 -367
- package/components/table/style.scss +1 -4
- package/components/tabs/index.vue +9 -23
- package/components/timeAgo/index.vue +4 -1
- package/components/tour/index.vue +237 -222
- package/components/tree/index.vue +135 -136
- package/components/tree/tree-element.vue +17 -3
- package/directive/index.js +1 -2
- package/directive/mask/index.js +1 -4
- package/directive/skeleton/index.js +27 -0
- package/directive/skeleton/style.scss +37 -0
- package/index.js +14 -9
- package/package.json +1 -1
- package/style/transitions.scss +6 -116
- package/tools/helper.js +20 -0
- package/components/app/notify/notify.js +0 -28
|
@@ -10,39 +10,46 @@
|
|
|
10
10
|
.leaflet-zoom-box,
|
|
11
11
|
.leaflet-image-layer,
|
|
12
12
|
.leaflet-layer {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
position: absolute;
|
|
14
|
+
left: 0;
|
|
15
|
+
top: 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
17
18
|
.leaflet-container {
|
|
18
|
-
|
|
19
|
-
|
|
19
|
+
overflow: hidden;
|
|
20
|
+
}
|
|
21
|
+
|
|
20
22
|
.leaflet-tile,
|
|
21
23
|
.leaflet-marker-icon,
|
|
22
24
|
.leaflet-marker-shadow {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
-webkit-user-select: none;
|
|
26
|
+
-moz-user-select: none;
|
|
27
|
+
user-select: none;
|
|
28
|
+
-webkit-user-drag: none;
|
|
29
|
+
}
|
|
30
|
+
|
|
28
31
|
/* Prevents IE11 from highlighting tiles in blue */
|
|
29
32
|
.leaflet-tile::selection {
|
|
30
|
-
|
|
33
|
+
background: transparent;
|
|
31
34
|
}
|
|
35
|
+
|
|
32
36
|
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
|
|
33
37
|
.leaflet-safari .leaflet-tile {
|
|
34
|
-
|
|
35
|
-
|
|
38
|
+
image-rendering: -webkit-optimize-contrast;
|
|
39
|
+
}
|
|
40
|
+
|
|
36
41
|
/* hack that prevents hw layers "stretching" when loading new tiles */
|
|
37
42
|
.leaflet-safari .leaflet-tile-container {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
43
|
+
width: 1600px;
|
|
44
|
+
height: 1600px;
|
|
45
|
+
-webkit-transform-origin: 0 0;
|
|
46
|
+
}
|
|
47
|
+
|
|
42
48
|
.leaflet-marker-icon,
|
|
43
49
|
.leaflet-marker-shadow {
|
|
44
|
-
|
|
45
|
-
|
|
50
|
+
display: block;
|
|
51
|
+
}
|
|
52
|
+
|
|
46
53
|
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
|
|
47
54
|
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
|
|
48
55
|
.leaflet-container .leaflet-overlay-pane svg,
|
|
@@ -51,184 +58,238 @@
|
|
|
51
58
|
.leaflet-container .leaflet-tile-pane img,
|
|
52
59
|
.leaflet-container img.leaflet-image-layer,
|
|
53
60
|
.leaflet-container .leaflet-tile {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
61
|
+
max-width: none !important;
|
|
62
|
+
max-height: none !important;
|
|
63
|
+
}
|
|
57
64
|
|
|
58
65
|
.leaflet-container.leaflet-touch-zoom {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
66
|
+
-ms-touch-action: pan-x pan-y;
|
|
67
|
+
touch-action: pan-x pan-y;
|
|
68
|
+
}
|
|
69
|
+
|
|
62
70
|
.leaflet-container.leaflet-touch-drag {
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
71
|
+
-ms-touch-action: pinch-zoom;
|
|
72
|
+
/* Fallback for FF which doesn't support pinch-zoom */
|
|
73
|
+
touch-action: none;
|
|
74
|
+
touch-action: pinch-zoom;
|
|
67
75
|
}
|
|
76
|
+
|
|
68
77
|
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
|
|
69
|
-
|
|
70
|
-
|
|
78
|
+
-ms-touch-action: none;
|
|
79
|
+
touch-action: none;
|
|
71
80
|
}
|
|
81
|
+
|
|
72
82
|
.leaflet-container {
|
|
73
|
-
|
|
83
|
+
-webkit-tap-highlight-color: transparent;
|
|
74
84
|
}
|
|
85
|
+
|
|
75
86
|
.leaflet-container a {
|
|
76
|
-
|
|
87
|
+
-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
|
|
77
88
|
}
|
|
89
|
+
|
|
78
90
|
.leaflet-tile {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
91
|
+
filter: inherit;
|
|
92
|
+
visibility: hidden;
|
|
93
|
+
}
|
|
94
|
+
|
|
82
95
|
.leaflet-tile-loaded {
|
|
83
|
-
|
|
84
|
-
|
|
96
|
+
visibility: inherit;
|
|
97
|
+
}
|
|
98
|
+
|
|
85
99
|
.leaflet-zoom-box {
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
100
|
+
width: 0;
|
|
101
|
+
height: 0;
|
|
102
|
+
-moz-box-sizing: border-box;
|
|
103
|
+
box-sizing: border-box;
|
|
104
|
+
z-index: 800;
|
|
105
|
+
}
|
|
106
|
+
|
|
92
107
|
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
|
|
93
108
|
.leaflet-overlay-pane svg {
|
|
94
|
-
|
|
95
|
-
|
|
109
|
+
-moz-user-select: none;
|
|
110
|
+
}
|
|
96
111
|
|
|
97
|
-
.leaflet-pane
|
|
112
|
+
.leaflet-pane {
|
|
113
|
+
z-index: 400;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.leaflet-tile-pane {
|
|
117
|
+
z-index: 200;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.leaflet-overlay-pane {
|
|
121
|
+
z-index: 400;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.leaflet-shadow-pane {
|
|
125
|
+
z-index: 500;
|
|
126
|
+
}
|
|
98
127
|
|
|
99
|
-
.leaflet-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
.leaflet-tooltip-pane
|
|
104
|
-
|
|
128
|
+
.leaflet-marker-pane {
|
|
129
|
+
z-index: 600;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.leaflet-tooltip-pane {
|
|
133
|
+
z-index: 650;
|
|
134
|
+
}
|
|
105
135
|
|
|
106
|
-
.leaflet-
|
|
107
|
-
|
|
136
|
+
.leaflet-popup-pane {
|
|
137
|
+
z-index: 700;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.leaflet-map-pane canvas {
|
|
141
|
+
z-index: 100;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.leaflet-map-pane svg {
|
|
145
|
+
z-index: 200;
|
|
146
|
+
}
|
|
108
147
|
|
|
109
148
|
.leaflet-vml-shape {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
149
|
+
width: 1px;
|
|
150
|
+
height: 1px;
|
|
151
|
+
}
|
|
152
|
+
|
|
113
153
|
.lvml {
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
154
|
+
behavior: url(#default#VML);
|
|
155
|
+
display: inline-block;
|
|
156
|
+
position: absolute;
|
|
157
|
+
}
|
|
118
158
|
|
|
119
159
|
|
|
120
160
|
/* control positioning */
|
|
121
161
|
|
|
122
162
|
.leaflet-control {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
163
|
+
position: relative;
|
|
164
|
+
z-index: 800;
|
|
165
|
+
pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
|
|
166
|
+
pointer-events: auto;
|
|
167
|
+
}
|
|
168
|
+
|
|
128
169
|
.leaflet-top,
|
|
129
170
|
.leaflet-bottom {
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
171
|
+
position: absolute;
|
|
172
|
+
z-index: 1000;
|
|
173
|
+
pointer-events: none;
|
|
174
|
+
}
|
|
175
|
+
|
|
134
176
|
.leaflet-top {
|
|
135
|
-
|
|
136
|
-
|
|
177
|
+
top: 0;
|
|
178
|
+
}
|
|
179
|
+
|
|
137
180
|
.leaflet-right {
|
|
138
|
-
|
|
139
|
-
|
|
181
|
+
right: 0;
|
|
182
|
+
}
|
|
183
|
+
|
|
140
184
|
.leaflet-bottom {
|
|
141
|
-
|
|
142
|
-
|
|
185
|
+
bottom: 0;
|
|
186
|
+
}
|
|
187
|
+
|
|
143
188
|
.leaflet-left {
|
|
144
|
-
|
|
145
|
-
|
|
189
|
+
left: 0;
|
|
190
|
+
}
|
|
191
|
+
|
|
146
192
|
.leaflet-control {
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
193
|
+
float: left;
|
|
194
|
+
clear: both;
|
|
195
|
+
}
|
|
196
|
+
|
|
150
197
|
.leaflet-right .leaflet-control {
|
|
151
|
-
|
|
152
|
-
|
|
198
|
+
float: right;
|
|
199
|
+
}
|
|
200
|
+
|
|
153
201
|
.leaflet-top .leaflet-control {
|
|
154
|
-
|
|
155
|
-
|
|
202
|
+
margin-top: 10px;
|
|
203
|
+
}
|
|
204
|
+
|
|
156
205
|
.leaflet-bottom .leaflet-control {
|
|
157
|
-
|
|
158
|
-
|
|
206
|
+
margin-bottom: 10px;
|
|
207
|
+
}
|
|
208
|
+
|
|
159
209
|
.leaflet-left .leaflet-control {
|
|
160
|
-
|
|
161
|
-
|
|
210
|
+
margin-left: 10px;
|
|
211
|
+
}
|
|
212
|
+
|
|
162
213
|
.leaflet-right .leaflet-control {
|
|
163
|
-
|
|
164
|
-
|
|
214
|
+
margin-right: 10px;
|
|
215
|
+
}
|
|
165
216
|
|
|
166
217
|
|
|
167
218
|
/* zoom and fade animations */
|
|
168
219
|
|
|
169
220
|
.leaflet-fade-anim .leaflet-tile {
|
|
170
|
-
|
|
171
|
-
|
|
221
|
+
will-change: opacity;
|
|
222
|
+
}
|
|
223
|
+
|
|
172
224
|
.leaflet-fade-anim .leaflet-popup {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
225
|
+
opacity: 0;
|
|
226
|
+
-webkit-transition: opacity 0.2s linear;
|
|
227
|
+
-moz-transition: opacity 0.2s linear;
|
|
228
|
+
transition: opacity 0.2s linear;
|
|
229
|
+
}
|
|
230
|
+
|
|
178
231
|
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
|
|
179
|
-
|
|
180
|
-
|
|
232
|
+
opacity: 1;
|
|
233
|
+
}
|
|
234
|
+
|
|
181
235
|
.leaflet-zoom-animated {
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
236
|
+
-webkit-transform-origin: 0 0;
|
|
237
|
+
-ms-transform-origin: 0 0;
|
|
238
|
+
transform-origin: 0 0;
|
|
239
|
+
}
|
|
240
|
+
|
|
186
241
|
.leaflet-zoom-anim .leaflet-zoom-animated {
|
|
187
|
-
|
|
188
|
-
|
|
242
|
+
will-change: transform;
|
|
243
|
+
}
|
|
244
|
+
|
|
189
245
|
.leaflet-zoom-anim .leaflet-zoom-animated {
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
246
|
+
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
|
|
247
|
+
-moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
|
|
248
|
+
transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
|
|
249
|
+
}
|
|
250
|
+
|
|
194
251
|
.leaflet-zoom-anim .leaflet-tile,
|
|
195
252
|
.leaflet-pan-anim .leaflet-tile {
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
253
|
+
-webkit-transition: none;
|
|
254
|
+
-moz-transition: none;
|
|
255
|
+
transition: none;
|
|
256
|
+
}
|
|
200
257
|
|
|
201
258
|
.leaflet-zoom-anim .leaflet-zoom-hide {
|
|
202
|
-
|
|
203
|
-
|
|
259
|
+
visibility: hidden;
|
|
260
|
+
}
|
|
204
261
|
|
|
205
262
|
|
|
206
263
|
/* cursors */
|
|
207
264
|
|
|
208
265
|
.leaflet-interactive {
|
|
209
|
-
|
|
210
|
-
|
|
266
|
+
cursor: pointer;
|
|
267
|
+
}
|
|
268
|
+
|
|
211
269
|
.leaflet-grab {
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
270
|
+
cursor: -webkit-grab;
|
|
271
|
+
cursor: -moz-grab;
|
|
272
|
+
cursor: grab;
|
|
273
|
+
}
|
|
274
|
+
|
|
216
275
|
.leaflet-crosshair,
|
|
217
276
|
.leaflet-crosshair .leaflet-interactive {
|
|
218
|
-
|
|
219
|
-
|
|
277
|
+
cursor: crosshair;
|
|
278
|
+
}
|
|
279
|
+
|
|
220
280
|
.leaflet-popup-pane,
|
|
221
281
|
.leaflet-control {
|
|
222
|
-
|
|
223
|
-
|
|
282
|
+
cursor: auto;
|
|
283
|
+
}
|
|
284
|
+
|
|
224
285
|
.leaflet-dragging .leaflet-grab,
|
|
225
286
|
.leaflet-dragging .leaflet-grab .leaflet-interactive,
|
|
226
287
|
.leaflet-dragging .leaflet-marker-draggable {
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
288
|
+
cursor: move;
|
|
289
|
+
cursor: -webkit-grabbing;
|
|
290
|
+
cursor: -moz-grabbing;
|
|
291
|
+
cursor: grabbing;
|
|
292
|
+
}
|
|
232
293
|
|
|
233
294
|
/* marker & overlays interactivity */
|
|
234
295
|
.leaflet-marker-icon,
|
|
@@ -236,405 +297,458 @@
|
|
|
236
297
|
.leaflet-image-layer,
|
|
237
298
|
.leaflet-pane > svg path,
|
|
238
299
|
.leaflet-tile-container {
|
|
239
|
-
|
|
240
|
-
|
|
300
|
+
pointer-events: none;
|
|
301
|
+
}
|
|
241
302
|
|
|
242
303
|
.leaflet-marker-icon.leaflet-interactive,
|
|
243
304
|
.leaflet-image-layer.leaflet-interactive,
|
|
244
305
|
.leaflet-pane > svg path.leaflet-interactive,
|
|
245
306
|
svg.leaflet-image-layer.leaflet-interactive path {
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
307
|
+
pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
|
|
308
|
+
pointer-events: auto;
|
|
309
|
+
}
|
|
249
310
|
|
|
250
311
|
/* visual tweaks */
|
|
251
312
|
|
|
252
313
|
.leaflet-container {
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
314
|
+
background: #ddd;
|
|
315
|
+
outline: 0;
|
|
316
|
+
}
|
|
317
|
+
|
|
256
318
|
.leaflet-container a {
|
|
257
|
-
|
|
258
|
-
|
|
319
|
+
color: #0078A8;
|
|
320
|
+
}
|
|
321
|
+
|
|
259
322
|
.leaflet-container a.leaflet-active {
|
|
260
|
-
|
|
261
|
-
|
|
323
|
+
outline: 2px solid orange;
|
|
324
|
+
}
|
|
325
|
+
|
|
262
326
|
.leaflet-zoom-box {
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
327
|
+
border: 2px dotted #38f;
|
|
328
|
+
background: rgba(255, 255, 255, 0.5);
|
|
329
|
+
}
|
|
266
330
|
|
|
267
331
|
|
|
268
332
|
/* general typography */
|
|
269
333
|
.leaflet-container {
|
|
270
|
-
|
|
271
|
-
|
|
334
|
+
font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
335
|
+
}
|
|
272
336
|
|
|
273
337
|
|
|
274
338
|
/* general toolbar styles */
|
|
275
339
|
|
|
276
340
|
.leaflet-bar {
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
341
|
+
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
|
|
342
|
+
border-radius: 4px;
|
|
343
|
+
}
|
|
344
|
+
|
|
280
345
|
.leaflet-bar a,
|
|
281
346
|
.leaflet-bar a:hover {
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
347
|
+
background-color: #fff;
|
|
348
|
+
border-bottom: 1px solid #ccc;
|
|
349
|
+
width: 26px;
|
|
350
|
+
height: 26px;
|
|
351
|
+
line-height: 26px;
|
|
352
|
+
display: block;
|
|
353
|
+
text-align: center;
|
|
354
|
+
text-decoration: none;
|
|
355
|
+
color: black;
|
|
356
|
+
}
|
|
357
|
+
|
|
292
358
|
.leaflet-bar a,
|
|
293
359
|
.leaflet-control-layers-toggle {
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
360
|
+
background-position: 50% 50%;
|
|
361
|
+
background-repeat: no-repeat;
|
|
362
|
+
display: block;
|
|
363
|
+
}
|
|
364
|
+
|
|
298
365
|
.leaflet-bar a:hover {
|
|
299
|
-
|
|
300
|
-
|
|
366
|
+
background-color: #f4f4f4;
|
|
367
|
+
}
|
|
368
|
+
|
|
301
369
|
.leaflet-bar a:first-child {
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
370
|
+
border-top-left-radius: 4px;
|
|
371
|
+
border-top-right-radius: 4px;
|
|
372
|
+
}
|
|
373
|
+
|
|
305
374
|
.leaflet-bar a:last-child {
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
375
|
+
border-bottom-left-radius: 4px;
|
|
376
|
+
border-bottom-right-radius: 4px;
|
|
377
|
+
border-bottom: none;
|
|
378
|
+
}
|
|
379
|
+
|
|
310
380
|
.leaflet-bar a.leaflet-disabled {
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
381
|
+
cursor: default;
|
|
382
|
+
background-color: #f4f4f4;
|
|
383
|
+
color: #bbb;
|
|
384
|
+
}
|
|
315
385
|
|
|
316
386
|
.leaflet-touch .leaflet-bar a {
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
387
|
+
width: 30px;
|
|
388
|
+
height: 30px;
|
|
389
|
+
line-height: 30px;
|
|
390
|
+
}
|
|
391
|
+
|
|
321
392
|
.leaflet-touch .leaflet-bar a:first-child {
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
393
|
+
border-top-left-radius: 2px;
|
|
394
|
+
border-top-right-radius: 2px;
|
|
395
|
+
}
|
|
396
|
+
|
|
325
397
|
.leaflet-touch .leaflet-bar a:last-child {
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
398
|
+
border-bottom-left-radius: 2px;
|
|
399
|
+
border-bottom-right-radius: 2px;
|
|
400
|
+
}
|
|
329
401
|
|
|
330
402
|
/* zoom control */
|
|
331
403
|
|
|
332
404
|
.leaflet-control-zoom-in,
|
|
333
405
|
.leaflet-control-zoom-out {
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
406
|
+
font: bold 18px 'Lucida Console', Monaco, monospace;
|
|
407
|
+
text-indent: 1px;
|
|
408
|
+
}
|
|
337
409
|
|
|
338
|
-
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out
|
|
339
|
-
|
|
340
|
-
|
|
410
|
+
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
|
|
411
|
+
font-size: 22px;
|
|
412
|
+
}
|
|
341
413
|
|
|
342
414
|
|
|
343
415
|
/* layers control */
|
|
344
416
|
|
|
345
417
|
.leaflet-control-layers {
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
418
|
+
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
|
|
419
|
+
background: #fff;
|
|
420
|
+
border-radius: 5px;
|
|
421
|
+
}
|
|
422
|
+
|
|
350
423
|
.leaflet-control-layers-toggle {
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
424
|
+
background-image: var(--map-image-layers);
|
|
425
|
+
width: 36px;
|
|
426
|
+
height: 36px;
|
|
427
|
+
}
|
|
428
|
+
|
|
355
429
|
.leaflet-retina .leaflet-control-layers-toggle {
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
430
|
+
background-image: var(--map-image-layers);
|
|
431
|
+
background-size: 26px 26px;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.leaflet-marker-icon {
|
|
435
|
+
width: 50px;
|
|
436
|
+
height: 50px;
|
|
437
|
+
}
|
|
438
|
+
|
|
359
439
|
.leaflet-touch .leaflet-control-layers-toggle {
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
440
|
+
width: 44px;
|
|
441
|
+
height: 44px;
|
|
442
|
+
}
|
|
443
|
+
|
|
363
444
|
.leaflet-control-layers .leaflet-control-layers-list,
|
|
364
445
|
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
|
|
365
|
-
|
|
366
|
-
|
|
446
|
+
display: none;
|
|
447
|
+
}
|
|
448
|
+
|
|
367
449
|
.leaflet-control-layers-expanded .leaflet-control-layers-list {
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
450
|
+
display: block;
|
|
451
|
+
position: relative;
|
|
452
|
+
}
|
|
453
|
+
|
|
371
454
|
.leaflet-control-layers-expanded {
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
455
|
+
padding: 6px 10px 6px 6px;
|
|
456
|
+
color: #333;
|
|
457
|
+
background: #fff;
|
|
458
|
+
}
|
|
459
|
+
|
|
376
460
|
.leaflet-control-layers-scrollbar {
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
461
|
+
overflow-y: scroll;
|
|
462
|
+
overflow-x: hidden;
|
|
463
|
+
padding-right: 5px;
|
|
464
|
+
}
|
|
465
|
+
|
|
381
466
|
.leaflet-control-layers-selector {
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
467
|
+
margin-top: 2px;
|
|
468
|
+
position: relative;
|
|
469
|
+
top: 1px;
|
|
470
|
+
}
|
|
471
|
+
|
|
386
472
|
.leaflet-control-layers label {
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
.leaflet-control-layers-separator {
|
|
390
|
-
height: 0;
|
|
391
|
-
border-top: 1px solid #ddd;
|
|
392
|
-
margin: 5px -10px 5px -6px;
|
|
393
|
-
}
|
|
473
|
+
display: block;
|
|
474
|
+
}
|
|
394
475
|
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
476
|
+
.leaflet-control-layers-separator {
|
|
477
|
+
height: 0;
|
|
478
|
+
border-top: 1px solid #ddd;
|
|
479
|
+
margin: 5px -10px 5px -6px;
|
|
480
|
+
}
|
|
399
481
|
|
|
400
482
|
|
|
401
483
|
/* attribution and scale controls */
|
|
402
484
|
|
|
403
485
|
.leaflet-container .leaflet-control-attribution {
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
486
|
+
background: #fff;
|
|
487
|
+
background: rgba(255, 255, 255, 0.7);
|
|
488
|
+
margin: 0;
|
|
489
|
+
}
|
|
490
|
+
|
|
408
491
|
.leaflet-control-attribution,
|
|
409
492
|
.leaflet-control-scale-line {
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
493
|
+
padding: 0 5px;
|
|
494
|
+
color: #333;
|
|
495
|
+
}
|
|
496
|
+
|
|
413
497
|
.leaflet-control-attribution a {
|
|
414
|
-
|
|
415
|
-
|
|
498
|
+
text-decoration: none;
|
|
499
|
+
}
|
|
500
|
+
|
|
416
501
|
.leaflet-control-attribution a:hover {
|
|
417
|
-
|
|
418
|
-
|
|
502
|
+
text-decoration: underline;
|
|
503
|
+
}
|
|
504
|
+
|
|
419
505
|
.leaflet-container .leaflet-control-attribution,
|
|
420
506
|
.leaflet-container .leaflet-control-scale {
|
|
421
|
-
|
|
422
|
-
|
|
507
|
+
font-size: 11px;
|
|
508
|
+
}
|
|
509
|
+
|
|
423
510
|
.leaflet-left .leaflet-control-scale {
|
|
424
|
-
|
|
425
|
-
|
|
511
|
+
margin-left: 5px;
|
|
512
|
+
}
|
|
513
|
+
|
|
426
514
|
.leaflet-bottom .leaflet-control-scale {
|
|
427
|
-
|
|
428
|
-
|
|
515
|
+
margin-bottom: 5px;
|
|
516
|
+
}
|
|
517
|
+
|
|
429
518
|
.leaflet-control-scale-line {
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
519
|
+
border: 2px solid #777;
|
|
520
|
+
border-top: none;
|
|
521
|
+
line-height: 1.1;
|
|
522
|
+
padding: 2px 5px 1px;
|
|
523
|
+
font-size: 11px;
|
|
524
|
+
white-space: nowrap;
|
|
525
|
+
overflow: hidden;
|
|
526
|
+
-moz-box-sizing: border-box;
|
|
527
|
+
box-sizing: border-box;
|
|
528
|
+
|
|
529
|
+
background: #fff;
|
|
530
|
+
background: rgba(255, 255, 255, 0.5);
|
|
531
|
+
}
|
|
532
|
+
|
|
443
533
|
.leaflet-control-scale-line:not(:first-child) {
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
534
|
+
border-top: 2px solid #777;
|
|
535
|
+
border-bottom: none;
|
|
536
|
+
margin-top: -2px;
|
|
537
|
+
}
|
|
538
|
+
|
|
448
539
|
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
|
|
449
|
-
|
|
450
|
-
|
|
540
|
+
border-bottom: 2px solid #777;
|
|
541
|
+
}
|
|
451
542
|
|
|
452
543
|
.leaflet-touch .leaflet-control-attribution,
|
|
453
544
|
.leaflet-touch .leaflet-control-layers,
|
|
454
545
|
.leaflet-touch .leaflet-bar {
|
|
455
|
-
|
|
456
|
-
|
|
546
|
+
box-shadow: none;
|
|
547
|
+
}
|
|
548
|
+
|
|
457
549
|
.leaflet-touch .leaflet-control-layers,
|
|
458
550
|
.leaflet-touch .leaflet-bar {
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
551
|
+
border: 2px solid rgba(0, 0, 0, 0.2);
|
|
552
|
+
background-clip: padding-box;
|
|
553
|
+
}
|
|
462
554
|
|
|
463
555
|
|
|
464
556
|
/* popup */
|
|
465
557
|
|
|
466
558
|
.leaflet-popup {
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
559
|
+
position: absolute;
|
|
560
|
+
text-align: center;
|
|
561
|
+
margin-bottom: 20px;
|
|
562
|
+
}
|
|
563
|
+
|
|
471
564
|
.leaflet-popup-content-wrapper {
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
565
|
+
padding: 1px;
|
|
566
|
+
text-align: left;
|
|
567
|
+
border-radius: 12px;
|
|
568
|
+
}
|
|
569
|
+
|
|
476
570
|
.leaflet-popup-content {
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
571
|
+
margin: 13px 19px;
|
|
572
|
+
line-height: 1.4;
|
|
573
|
+
}
|
|
574
|
+
|
|
480
575
|
.leaflet-popup-content p {
|
|
481
|
-
|
|
482
|
-
|
|
576
|
+
margin: 18px 0;
|
|
577
|
+
}
|
|
578
|
+
|
|
483
579
|
.leaflet-popup-tip-container {
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
580
|
+
width: 40px;
|
|
581
|
+
height: 20px;
|
|
582
|
+
position: absolute;
|
|
583
|
+
left: 50%;
|
|
584
|
+
margin-left: -20px;
|
|
585
|
+
overflow: hidden;
|
|
586
|
+
pointer-events: none;
|
|
587
|
+
}
|
|
588
|
+
|
|
492
589
|
.leaflet-popup-tip {
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
590
|
+
width: 17px;
|
|
591
|
+
height: 17px;
|
|
592
|
+
padding: 1px;
|
|
496
593
|
|
|
497
|
-
|
|
594
|
+
margin: -10px auto 0;
|
|
595
|
+
|
|
596
|
+
-webkit-transform: rotate(45deg);
|
|
597
|
+
-moz-transform: rotate(45deg);
|
|
598
|
+
-ms-transform: rotate(45deg);
|
|
599
|
+
transform: rotate(45deg);
|
|
600
|
+
}
|
|
498
601
|
|
|
499
|
-
-webkit-transform: rotate(45deg);
|
|
500
|
-
-moz-transform: rotate(45deg);
|
|
501
|
-
-ms-transform: rotate(45deg);
|
|
502
|
-
transform: rotate(45deg);
|
|
503
|
-
}
|
|
504
602
|
.leaflet-popup-content-wrapper,
|
|
505
603
|
.leaflet-popup-tip {
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
604
|
+
background: white;
|
|
605
|
+
color: #333;
|
|
606
|
+
box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
|
|
607
|
+
}
|
|
608
|
+
|
|
510
609
|
.leaflet-container a.leaflet-popup-close-button {
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
610
|
+
position: absolute;
|
|
611
|
+
top: 0;
|
|
612
|
+
right: 0;
|
|
613
|
+
padding: 4px 4px 0 0;
|
|
614
|
+
border: none;
|
|
615
|
+
text-align: center;
|
|
616
|
+
width: 18px;
|
|
617
|
+
height: 14px;
|
|
618
|
+
font: 16px/14px Tahoma, Verdana, sans-serif;
|
|
619
|
+
color: #c3c3c3;
|
|
620
|
+
text-decoration: none;
|
|
621
|
+
font-weight: bold;
|
|
622
|
+
background: transparent;
|
|
623
|
+
}
|
|
624
|
+
|
|
525
625
|
.leaflet-container a.leaflet-popup-close-button:hover {
|
|
526
|
-
|
|
527
|
-
|
|
626
|
+
color: #999;
|
|
627
|
+
}
|
|
628
|
+
|
|
528
629
|
.leaflet-popup-scrolled {
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
630
|
+
overflow: auto;
|
|
631
|
+
border-bottom: 1px solid #ddd;
|
|
632
|
+
border-top: 1px solid #ddd;
|
|
633
|
+
}
|
|
533
634
|
|
|
534
635
|
.leaflet-oldie .leaflet-popup-content-wrapper {
|
|
535
|
-
|
|
536
|
-
|
|
636
|
+
-ms-zoom: 1;
|
|
637
|
+
}
|
|
638
|
+
|
|
537
639
|
.leaflet-oldie .leaflet-popup-tip {
|
|
538
|
-
|
|
539
|
-
|
|
640
|
+
width: 24px;
|
|
641
|
+
margin: 0 auto;
|
|
642
|
+
|
|
643
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
|
|
644
|
+
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
|
|
645
|
+
}
|
|
540
646
|
|
|
541
|
-
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
|
|
542
|
-
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
|
|
543
|
-
}
|
|
544
647
|
.leaflet-oldie .leaflet-popup-tip-container {
|
|
545
|
-
|
|
546
|
-
|
|
648
|
+
margin-top: -1px;
|
|
649
|
+
}
|
|
547
650
|
|
|
548
651
|
.leaflet-oldie .leaflet-control-zoom,
|
|
549
652
|
.leaflet-oldie .leaflet-control-layers,
|
|
550
653
|
.leaflet-oldie .leaflet-popup-content-wrapper,
|
|
551
654
|
.leaflet-oldie .leaflet-popup-tip {
|
|
552
|
-
|
|
553
|
-
|
|
655
|
+
border: 1px solid #999;
|
|
656
|
+
}
|
|
554
657
|
|
|
555
658
|
|
|
556
659
|
/* div icon */
|
|
557
660
|
|
|
558
661
|
.leaflet-div-icon {
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
662
|
+
background: #fff;
|
|
663
|
+
border: 1px solid #666;
|
|
664
|
+
}
|
|
562
665
|
|
|
563
666
|
|
|
564
667
|
/* Tooltip */
|
|
565
668
|
/* Base styles for the element that has a tooltip */
|
|
566
669
|
.leaflet-tooltip {
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
670
|
+
position: absolute;
|
|
671
|
+
padding: 6px;
|
|
672
|
+
background-color: #fff;
|
|
673
|
+
border: 1px solid #fff;
|
|
674
|
+
border-radius: 3px;
|
|
675
|
+
color: #222;
|
|
676
|
+
white-space: nowrap;
|
|
677
|
+
-webkit-user-select: none;
|
|
678
|
+
-moz-user-select: none;
|
|
679
|
+
-ms-user-select: none;
|
|
680
|
+
user-select: none;
|
|
681
|
+
pointer-events: none;
|
|
682
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
|
|
683
|
+
}
|
|
684
|
+
|
|
581
685
|
.leaflet-tooltip.leaflet-clickable {
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
686
|
+
cursor: pointer;
|
|
687
|
+
pointer-events: auto;
|
|
688
|
+
}
|
|
689
|
+
|
|
585
690
|
.leaflet-tooltip-top:before,
|
|
586
691
|
.leaflet-tooltip-bottom:before,
|
|
587
692
|
.leaflet-tooltip-left:before,
|
|
588
693
|
.leaflet-tooltip-right:before {
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
694
|
+
position: absolute;
|
|
695
|
+
pointer-events: none;
|
|
696
|
+
border: 6px solid transparent;
|
|
697
|
+
background: transparent;
|
|
698
|
+
content: "";
|
|
699
|
+
}
|
|
595
700
|
|
|
596
701
|
/* Directions */
|
|
597
702
|
|
|
598
703
|
.leaflet-tooltip-bottom {
|
|
599
|
-
|
|
704
|
+
margin-top: 6px;
|
|
600
705
|
}
|
|
706
|
+
|
|
601
707
|
.leaflet-tooltip-top {
|
|
602
|
-
|
|
708
|
+
margin-top: -6px;
|
|
603
709
|
}
|
|
710
|
+
|
|
604
711
|
.leaflet-tooltip-bottom:before,
|
|
605
712
|
.leaflet-tooltip-top:before {
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
713
|
+
left: 50%;
|
|
714
|
+
margin-left: -6px;
|
|
715
|
+
}
|
|
716
|
+
|
|
609
717
|
.leaflet-tooltip-top:before {
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
718
|
+
bottom: 0;
|
|
719
|
+
margin-bottom: -12px;
|
|
720
|
+
border-top-color: #fff;
|
|
721
|
+
}
|
|
722
|
+
|
|
614
723
|
.leaflet-tooltip-bottom:before {
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
724
|
+
top: 0;
|
|
725
|
+
margin-top: -12px;
|
|
726
|
+
margin-left: -6px;
|
|
727
|
+
border-bottom-color: #fff;
|
|
728
|
+
}
|
|
729
|
+
|
|
620
730
|
.leaflet-tooltip-left {
|
|
621
|
-
|
|
731
|
+
margin-left: -6px;
|
|
622
732
|
}
|
|
733
|
+
|
|
623
734
|
.leaflet-tooltip-right {
|
|
624
|
-
|
|
735
|
+
margin-left: 6px;
|
|
625
736
|
}
|
|
737
|
+
|
|
626
738
|
.leaflet-tooltip-left:before,
|
|
627
739
|
.leaflet-tooltip-right:before {
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
740
|
+
top: 50%;
|
|
741
|
+
margin-top: -6px;
|
|
742
|
+
}
|
|
743
|
+
|
|
631
744
|
.leaflet-tooltip-left:before {
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
745
|
+
right: 0;
|
|
746
|
+
margin-right: -12px;
|
|
747
|
+
border-left-color: #fff;
|
|
748
|
+
}
|
|
749
|
+
|
|
636
750
|
.leaflet-tooltip-right:before {
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
751
|
+
left: 0;
|
|
752
|
+
margin-left: -12px;
|
|
753
|
+
border-right-color: #fff;
|
|
754
|
+
}
|