atome 0.5.7.5.4 → 0.5.7.5.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (99) hide show
  1. checksums.yaml +4 -4
  2. data/documentation/deep learning/basic_infos.txt +5 -0
  3. data/lib/atome/genesis/atomes.rb +12 -0
  4. data/lib/atome/genesis/particles/event.rb +141 -97
  5. data/lib/atome/genesis/particles/identity.rb +2 -1
  6. data/lib/atome/genesis/particles/spatial.rb +25 -0
  7. data/lib/atome/genesis/particles/utility.rb +13 -5
  8. data/lib/atome/utilities/essentials.rb +5 -2
  9. data/lib/atome/version.rb +1 -1
  10. data/lib/molecules/intuition/tools.rb +1 -1
  11. data/lib/molecules/intuition/utilities.rb +3 -0
  12. data/lib/platform_specific/opal/extensions/object.rb +3 -1
  13. data/lib/platform_specific/wasm/atome_wasm_extensions.rb +2 -1
  14. data/lib/renderers/html/event.rb +20 -6
  15. data/lib/renderers/html/html.rb +753 -446
  16. data/lib/renderers/html/identity.rb +33 -6
  17. data/lib/renderers/html/spatial.rb +27 -0
  18. data/lib/renderers/html/utility.rb +4 -0
  19. data/vendor/assets/application/examples/audio.rb +25 -9
  20. data/vendor/assets/application/examples/calendar.rb +186 -0
  21. data/vendor/assets/application/examples/drop.rb +1 -0
  22. data/vendor/assets/application/examples/editor.rb +139 -0
  23. data/vendor/assets/application/examples/inspector.rb +129 -0
  24. data/vendor/assets/application/examples/keyboard.rb +20 -10
  25. data/vendor/assets/application/examples/map.rb +42 -0
  26. data/vendor/assets/application/examples/meteo.rb +8 -0
  27. data/vendor/assets/application/examples/midi.rb +4 -0
  28. data/vendor/assets/application/examples/on_resize.rb +14 -0
  29. data/vendor/assets/application/examples/over.rb +0 -1
  30. data/vendor/assets/application/examples/overflow.rb +20 -5
  31. data/vendor/assets/application/examples/particles.rb +1 -1
  32. data/vendor/assets/application/examples/preset.rb +1 -1
  33. data/vendor/assets/application/examples/resize.rb +11 -0
  34. data/vendor/assets/application/examples/tick.rb +10 -0
  35. data/vendor/assets/application/examples/tools.rb +6 -1
  36. data/vendor/assets/application/examples/touch.rb +2 -14
  37. data/vendor/assets/application/examples/trigger_abstraction.rb +165 -0
  38. data/vendor/assets/application/examples/vr.rb +3 -0
  39. data/vendor/assets/src/css/codemirror.min.css +472 -0
  40. data/vendor/assets/src/css/fonts/tui/icon.eot +0 -0
  41. data/vendor/assets/src/css/fonts/tui/icon.svg +17 -0
  42. data/vendor/assets/src/css/fonts/tui/icon.ttf +0 -0
  43. data/vendor/assets/src/css/fonts/tui/icon.woff +0 -0
  44. data/vendor/assets/src/css/fonts/tui/noto.woff +72 -0
  45. data/vendor/assets/src/css/images/leaflet/layers-2x.png +0 -0
  46. data/vendor/assets/src/css/images/leaflet/layers.png +0 -0
  47. data/vendor/assets/src/css/images/leaflet/marker-icon-2x.png +0 -0
  48. data/vendor/assets/src/css/images/leaflet/marker-icon.png +0 -0
  49. data/vendor/assets/src/css/images/leaflet/marker-shadow.png +0 -0
  50. data/vendor/assets/src/css/images/tui/ic-arrow-line-left.png +0 -0
  51. data/vendor/assets/src/css/images/tui/ic-arrow-line-left@2x.png +0 -0
  52. data/vendor/assets/src/css/images/tui/ic-arrow-line-left@3x.png +0 -0
  53. data/vendor/assets/src/css/images/tui/ic-arrow-line-right.png +0 -0
  54. data/vendor/assets/src/css/images/tui/ic-arrow-line-right@2x.png +0 -0
  55. data/vendor/assets/src/css/images/tui/ic-arrow-line-right@3x.png +0 -0
  56. data/vendor/assets/src/css/images/tui/ic-traveltime-w.png +0 -0
  57. data/vendor/assets/src/css/images/tui/ic-view-day.png +0 -0
  58. data/vendor/assets/src/css/images/tui/ic-view-day@2x.png +0 -0
  59. data/vendor/assets/src/css/images/tui/ic-view-day@3x.png +0 -0
  60. data/vendor/assets/src/css/images/tui/ic-view-month.png +0 -0
  61. data/vendor/assets/src/css/images/tui/ic-view-month@2x.png +0 -0
  62. data/vendor/assets/src/css/images/tui/ic-view-month@3x.png +0 -0
  63. data/vendor/assets/src/css/images/tui/ic-view-week.png +0 -0
  64. data/vendor/assets/src/css/images/tui/ic-view-week@2x.png +0 -0
  65. data/vendor/assets/src/css/images/tui/ic-view-week@3x.png +0 -0
  66. data/vendor/assets/src/css/images/tui/icon.png +0 -0
  67. data/vendor/assets/src/css/images/tui/img-bi.png +0 -0
  68. data/vendor/assets/src/css/images/tui/img-bi@2x.png +0 -0
  69. data/vendor/assets/src/css/images/tui/img-bi@3x.png +0 -0
  70. data/vendor/assets/src/css/leaflet.css +664 -0
  71. data/vendor/assets/src/css/monokai.min.css +127 -0
  72. data/vendor/assets/src/css/style.css +1 -1
  73. data/vendor/assets/src/css/toastui-calendar.min.css +6 -0
  74. data/vendor/assets/src/index.html +12 -1
  75. data/vendor/assets/src/index_opal.html +16 -1
  76. data/vendor/assets/src/index_server.html +11 -1
  77. data/vendor/assets/src/index_server_wasm.html +10 -1
  78. data/vendor/assets/src/index_wasm.html +12 -1
  79. data/vendor/assets/src/js/atome/specific/tauri.js +32 -0
  80. data/vendor/assets/src/js/atome/utilities/importmap.js +9 -0
  81. data/vendor/assets/src/js/atome/utilities/three_module.js +88 -0
  82. data/vendor/assets/src/js/test.js +42 -0
  83. data/vendor/assets/src/js/third_parties/Three/build/three.cjs +54216 -0
  84. data/vendor/assets/src/js/third_parties/Three/build/three.module.min.js +6 -0
  85. data/vendor/assets/src/js/third_parties/Three/build/three.webgpu.min.js +6 -0
  86. data/vendor/assets/src/js/third_parties/Three/jsm/controls/OrbitControls.js +1532 -0
  87. data/vendor/assets/src/js/third_parties/codemirror.min.js +1 -0
  88. data/vendor/assets/src/js/third_parties/leaflet.js +6 -0
  89. data/vendor/assets/src/js/third_parties/leaflet.js.map +1 -0
  90. data/vendor/assets/src/js/third_parties/ruby.min.js +1 -0
  91. data/vendor/assets/src/js/third_parties/toastui-calendar.min.js +9 -0
  92. data/vendor/assets/src/medias/images/puydesancy.jpg +0 -0
  93. data/vendor/assets/src-tauri/Cargo.toml +6 -5
  94. data/vendor/assets/src-tauri/Info.plist +12 -0
  95. data/vendor/assets/src-tauri/src/main.rs +32 -3
  96. data/vendor/assets/src-tauri/src/midi.rs +25 -0
  97. data/vendor/assets/src-tauri/tauri.conf.json +4 -4
  98. metadata +60 -3
  99. data/vendor/assets/src/js/third_parties/three.min.js +0 -6
@@ -0,0 +1,664 @@
1
+ /* required styles */
2
+
3
+ .leaflet-pane,
4
+ .leaflet-tile,
5
+ .leaflet-marker-icon,
6
+ .leaflet-marker-shadow,
7
+ .leaflet-tile-container,
8
+ .leaflet-pane > svg,
9
+ .leaflet-pane > canvas,
10
+ .leaflet-zoom-box,
11
+ .leaflet-image-layer,
12
+ .leaflet-layer {
13
+ position: absolute;
14
+ left: 0;
15
+ top: 0;
16
+ }
17
+
18
+ .leaflet-container {
19
+ overflow: hidden;
20
+ height: 100%;
21
+ width: 100%;
22
+ }
23
+ .leaflet-tile,
24
+ .leaflet-marker-icon,
25
+ .leaflet-marker-shadow {
26
+ -webkit-user-select: none;
27
+ -moz-user-select: none;
28
+ user-select: none;
29
+ -webkit-user-drag: none;
30
+ }
31
+ /* Prevents IE11 from highlighting tiles in blue */
32
+ .leaflet-tile::selection {
33
+ background: transparent;
34
+ }
35
+ /* Safari renders non-retina tile on retina better with this, but Chrome is worse */
36
+ .leaflet-safari .leaflet-tile {
37
+ image-rendering: -webkit-optimize-contrast;
38
+ }
39
+ /* hack that prevents hw layers "stretching" when loading new tiles */
40
+ .leaflet-safari .leaflet-tile-container {
41
+ width: 1600px;
42
+ height: 1600px;
43
+ -webkit-transform-origin: 0 0;
44
+ }
45
+ .leaflet-marker-icon,
46
+ .leaflet-marker-shadow {
47
+ display: block;
48
+ }
49
+ /* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
50
+ /* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
51
+ .leaflet-container .leaflet-overlay-pane svg {
52
+ max-width: none !important;
53
+ max-height: none !important;
54
+ }
55
+ .leaflet-container .leaflet-marker-pane img,
56
+ .leaflet-container .leaflet-shadow-pane img,
57
+ .leaflet-container .leaflet-tile-pane img,
58
+ .leaflet-container img.leaflet-image-layer,
59
+ .leaflet-container .leaflet-tile {
60
+ max-width: none !important;
61
+ max-height: none !important;
62
+ width: auto;
63
+ padding: 0;
64
+ }
65
+
66
+ .leaflet-container img.leaflet-tile {
67
+ /* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
68
+ mix-blend-mode: plus-lighter;
69
+ }
70
+
71
+ .leaflet-container.leaflet-touch-zoom {
72
+ -ms-touch-action: pan-x pan-y;
73
+ touch-action: pan-x pan-y;
74
+ }
75
+ .leaflet-container.leaflet-touch-drag {
76
+ -ms-touch-action: pinch-zoom;
77
+ /* Fallback for FF which doesn't support pinch-zoom */
78
+ touch-action: none;
79
+ touch-action: pinch-zoom;
80
+ }
81
+ .leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
82
+ -ms-touch-action: none;
83
+ touch-action: none;
84
+ }
85
+ .leaflet-container {
86
+ -webkit-tap-highlight-color: transparent;
87
+ }
88
+ .leaflet-container a {
89
+ -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
90
+ }
91
+ .leaflet-tile {
92
+ filter: inherit;
93
+ visibility: hidden;
94
+ }
95
+ .leaflet-tile-loaded {
96
+ visibility: inherit;
97
+ }
98
+ .leaflet-zoom-box {
99
+ width: 0;
100
+ height: 0;
101
+ -moz-box-sizing: border-box;
102
+ box-sizing: border-box;
103
+ z-index: 800;
104
+ }
105
+ /* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
106
+ .leaflet-overlay-pane svg {
107
+ -moz-user-select: none;
108
+ }
109
+
110
+ .leaflet-pane { z-index: 400; }
111
+
112
+ .leaflet-tile-pane { z-index: 200; }
113
+ .leaflet-overlay-pane { z-index: 400; }
114
+ .leaflet-shadow-pane { z-index: 500; }
115
+ .leaflet-marker-pane { z-index: 600; }
116
+ .leaflet-tooltip-pane { z-index: 650; }
117
+ .leaflet-popup-pane { z-index: 700; }
118
+
119
+ .leaflet-map-pane canvas { z-index: 100; }
120
+ .leaflet-map-pane svg { z-index: 200; }
121
+
122
+ .leaflet-vml-shape {
123
+ width: 1px;
124
+ height: 1px;
125
+ }
126
+ .lvml {
127
+ behavior: url(#default#VML);
128
+ display: inline-block;
129
+ position: absolute;
130
+ }
131
+
132
+
133
+ /* control positioning */
134
+
135
+ .leaflet-control {
136
+ position: relative;
137
+ z-index: 800;
138
+ pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
139
+ pointer-events: auto;
140
+ }
141
+ .leaflet-top,
142
+ .leaflet-bottom {
143
+ position: absolute;
144
+ z-index: 1000;
145
+ pointer-events: none;
146
+ }
147
+ .leaflet-top {
148
+ top: 0;
149
+ }
150
+ .leaflet-right {
151
+ right: 0;
152
+ }
153
+ .leaflet-bottom {
154
+ bottom: 0;
155
+ }
156
+ .leaflet-left {
157
+ left: 0;
158
+ }
159
+ .leaflet-control {
160
+ float: left;
161
+ clear: both;
162
+ }
163
+ .leaflet-right .leaflet-control {
164
+ float: right;
165
+ }
166
+ .leaflet-top .leaflet-control {
167
+ margin-top: 10px;
168
+ }
169
+ .leaflet-bottom .leaflet-control {
170
+ margin-bottom: 10px;
171
+ }
172
+ .leaflet-left .leaflet-control {
173
+ margin-left: 10px;
174
+ }
175
+ .leaflet-right .leaflet-control {
176
+ margin-right: 10px;
177
+ }
178
+
179
+
180
+ /* zoom and fade animations */
181
+
182
+ .leaflet-fade-anim .leaflet-popup {
183
+ opacity: 0;
184
+ -webkit-transition: opacity 0.2s linear;
185
+ -moz-transition: opacity 0.2s linear;
186
+ transition: opacity 0.2s linear;
187
+ }
188
+ .leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
189
+ opacity: 1;
190
+ }
191
+ .leaflet-zoom-animated {
192
+ -webkit-transform-origin: 0 0;
193
+ -ms-transform-origin: 0 0;
194
+ transform-origin: 0 0;
195
+ }
196
+ svg.leaflet-zoom-animated {
197
+ will-change: transform;
198
+ }
199
+
200
+ .leaflet-zoom-anim .leaflet-zoom-animated {
201
+ -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
202
+ -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
203
+ transition: transform 0.25s cubic-bezier(0,0,0.25,1);
204
+ }
205
+ .leaflet-zoom-anim .leaflet-tile,
206
+ .leaflet-pan-anim .leaflet-tile {
207
+ -webkit-transition: none;
208
+ -moz-transition: none;
209
+ transition: none;
210
+ }
211
+
212
+ .leaflet-zoom-anim .leaflet-zoom-hide {
213
+ visibility: hidden;
214
+ }
215
+
216
+
217
+ /* cursors */
218
+
219
+ .leaflet-interactive {
220
+ cursor: pointer;
221
+ }
222
+ .leaflet-grab {
223
+ cursor: -webkit-grab;
224
+ cursor: -moz-grab;
225
+ cursor: grab;
226
+ }
227
+ .leaflet-crosshair,
228
+ .leaflet-crosshair .leaflet-interactive {
229
+ cursor: crosshair;
230
+ }
231
+ .leaflet-popup-pane,
232
+ .leaflet-control {
233
+ cursor: auto;
234
+ }
235
+ .leaflet-dragging .leaflet-grab,
236
+ .leaflet-dragging .leaflet-grab .leaflet-interactive,
237
+ .leaflet-dragging .leaflet-marker-draggable {
238
+ cursor: move;
239
+ cursor: -webkit-grabbing;
240
+ cursor: -moz-grabbing;
241
+ cursor: grabbing;
242
+ }
243
+
244
+ /* marker & overlays interactivity */
245
+ .leaflet-marker-icon,
246
+ .leaflet-marker-shadow,
247
+ .leaflet-image-layer,
248
+ .leaflet-pane > svg path,
249
+ .leaflet-tile-container {
250
+ pointer-events: none;
251
+ }
252
+
253
+ .leaflet-marker-icon.leaflet-interactive,
254
+ .leaflet-image-layer.leaflet-interactive,
255
+ .leaflet-pane > svg path.leaflet-interactive,
256
+ svg.leaflet-image-layer.leaflet-interactive path {
257
+ pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
258
+ pointer-events: auto;
259
+ }
260
+
261
+ /* visual tweaks */
262
+
263
+ .leaflet-container {
264
+ background: #ddd;
265
+ outline-offset: 1px;
266
+ }
267
+ .leaflet-container a {
268
+ color: #0078A8;
269
+ }
270
+ .leaflet-zoom-box {
271
+ border: 2px dotted #38f;
272
+ background: rgba(255,255,255,0.5);
273
+ }
274
+
275
+
276
+ /* general typography */
277
+ .leaflet-container {
278
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
279
+ font-size: 12px;
280
+ font-size: 0.75rem;
281
+ line-height: 1.5;
282
+ }
283
+
284
+
285
+ /* general toolbar styles */
286
+
287
+ .leaflet-bar {
288
+ box-shadow: 0 1px 5px rgba(0,0,0,0.65);
289
+ border-radius: 4px;
290
+ }
291
+ .leaflet-bar a {
292
+ background-color: #fff;
293
+ border-bottom: 1px solid #ccc;
294
+ width: 26px;
295
+ height: 26px;
296
+ line-height: 26px;
297
+ display: block;
298
+ text-align: center;
299
+ text-decoration: none;
300
+ color: black;
301
+ }
302
+ .leaflet-bar a,
303
+ .leaflet-control-layers-toggle {
304
+ background-position: 50% 50%;
305
+ background-repeat: no-repeat;
306
+ display: block;
307
+ }
308
+ .leaflet-bar a:hover,
309
+ .leaflet-bar a:focus {
310
+ background-color: #f4f4f4;
311
+ }
312
+ .leaflet-bar a:first-child {
313
+ border-top-left-radius: 4px;
314
+ border-top-right-radius: 4px;
315
+ }
316
+ .leaflet-bar a:last-child {
317
+ border-bottom-left-radius: 4px;
318
+ border-bottom-right-radius: 4px;
319
+ border-bottom: none;
320
+ }
321
+ .leaflet-bar a.leaflet-disabled {
322
+ cursor: default;
323
+ background-color: #f4f4f4;
324
+ color: #bbb;
325
+ }
326
+
327
+ .leaflet-touch .leaflet-bar a {
328
+ width: 30px;
329
+ height: 30px;
330
+ line-height: 30px;
331
+ }
332
+ .leaflet-touch .leaflet-bar a:first-child {
333
+ border-top-left-radius: 2px;
334
+ border-top-right-radius: 2px;
335
+ }
336
+ .leaflet-touch .leaflet-bar a:last-child {
337
+ border-bottom-left-radius: 2px;
338
+ border-bottom-right-radius: 2px;
339
+ }
340
+
341
+ /* zoom control */
342
+
343
+ .leaflet-control-zoom-in,
344
+ .leaflet-control-zoom-out {
345
+ font: bold 18px 'Lucida Console', Monaco, monospace;
346
+ text-indent: 1px;
347
+ }
348
+
349
+ .leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
350
+ font-size: 22px;
351
+ }
352
+
353
+
354
+ /* layers control */
355
+
356
+ .leaflet-control-layers {
357
+ box-shadow: 0 1px 5px rgba(0,0,0,0.4);
358
+ background: #fff;
359
+ border-radius: 5px;
360
+ }
361
+ .leaflet-control-layers-toggle {
362
+ background-image: url(images/leaflet/layers.png);
363
+ width: 36px;
364
+ height: 36px;
365
+ }
366
+ .leaflet-retina .leaflet-control-layers-toggle {
367
+ background-image: url(images/leaflet/layers-2x.png);
368
+ background-size: 26px 26px;
369
+ }
370
+ .leaflet-touch .leaflet-control-layers-toggle {
371
+ width: 44px;
372
+ height: 44px;
373
+ }
374
+ .leaflet-control-layers .leaflet-control-layers-list,
375
+ .leaflet-control-layers-expanded .leaflet-control-layers-toggle {
376
+ display: none;
377
+ }
378
+ .leaflet-control-layers-expanded .leaflet-control-layers-list {
379
+ display: block;
380
+ position: relative;
381
+ }
382
+ .leaflet-control-layers-expanded {
383
+ padding: 6px 10px 6px 6px;
384
+ color: #333;
385
+ background: #fff;
386
+ }
387
+ .leaflet-control-layers-scrollbar {
388
+ overflow-y: scroll;
389
+ overflow-x: hidden;
390
+ padding-right: 5px;
391
+ }
392
+ .leaflet-control-layers-selector {
393
+ margin-top: 2px;
394
+ position: relative;
395
+ top: 1px;
396
+ }
397
+ .leaflet-control-layers label {
398
+ display: block;
399
+ font-size: 13px;
400
+ font-size: 1.08333em;
401
+ }
402
+ .leaflet-control-layers-separator {
403
+ height: 0;
404
+ border-top: 1px solid #ddd;
405
+ margin: 5px -10px 5px -6px;
406
+ }
407
+
408
+ /* Default icon URLs */
409
+ .leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
410
+ background-image: url(images/leaflet/marker-icon.png);
411
+ }
412
+
413
+
414
+ /* attribution and scale controls */
415
+
416
+ .leaflet-container .leaflet-control-attribution {
417
+ background: #fff;
418
+ background: rgba(255, 255, 255, 0.8);
419
+ margin: 0;
420
+ }
421
+ .leaflet-control-attribution,
422
+ .leaflet-control-scale-line {
423
+ padding: 0 5px;
424
+ color: #333;
425
+ line-height: 1.4;
426
+ }
427
+ .leaflet-control-attribution a {
428
+ text-decoration: none;
429
+ }
430
+ .leaflet-control-attribution a:hover,
431
+ .leaflet-control-attribution a:focus {
432
+ text-decoration: underline;
433
+ }
434
+ .leaflet-attribution-flag {
435
+ display: inline !important;
436
+ vertical-align: baseline !important;
437
+ width: 1em;
438
+ height: 0.6669em;
439
+ }
440
+ .leaflet-left .leaflet-control-scale {
441
+ margin-left: 5px;
442
+ }
443
+ .leaflet-bottom .leaflet-control-scale {
444
+ margin-bottom: 5px;
445
+ }
446
+ .leaflet-control-scale-line {
447
+ border: 2px solid #777;
448
+ border-top: none;
449
+ line-height: 1.1;
450
+ padding: 2px 5px 1px;
451
+ white-space: nowrap;
452
+ -moz-box-sizing: border-box;
453
+ box-sizing: border-box;
454
+ background: rgba(255, 255, 255, 0.8);
455
+ text-shadow: 1px 1px #fff;
456
+ }
457
+ .leaflet-control-scale-line:not(:first-child) {
458
+ border-top: 2px solid #777;
459
+ border-bottom: none;
460
+ margin-top: -2px;
461
+ }
462
+ .leaflet-control-scale-line:not(:first-child):not(:last-child) {
463
+ border-bottom: 2px solid #777;
464
+ }
465
+
466
+ .leaflet-touch .leaflet-control-attribution,
467
+ .leaflet-touch .leaflet-control-layers,
468
+ .leaflet-touch .leaflet-bar {
469
+ box-shadow: none;
470
+ }
471
+ .leaflet-touch .leaflet-control-layers,
472
+ .leaflet-touch .leaflet-bar {
473
+ border: 2px solid rgba(0,0,0,0.2);
474
+ background-clip: padding-box;
475
+ }
476
+
477
+
478
+ /* popup */
479
+
480
+ .leaflet-popup {
481
+ position: absolute;
482
+ text-align: center;
483
+ margin-bottom: 20px;
484
+ }
485
+ .leaflet-popup-content-wrapper {
486
+ padding: 1px;
487
+ text-align: left;
488
+ border-radius: 12px;
489
+ }
490
+ .leaflet-popup-content {
491
+ margin: 13px 24px 13px 20px;
492
+ line-height: 1.3;
493
+ font-size: 13px;
494
+ font-size: 1.08333em;
495
+ min-height: 1px;
496
+ }
497
+ .leaflet-popup-content p {
498
+ margin: 17px 0;
499
+ margin: 1.3em 0;
500
+ }
501
+ .leaflet-popup-tip-container {
502
+ width: 40px;
503
+ height: 20px;
504
+ position: absolute;
505
+ left: 50%;
506
+ margin-top: -1px;
507
+ margin-left: -20px;
508
+ overflow: hidden;
509
+ pointer-events: none;
510
+ }
511
+ .leaflet-popup-tip {
512
+ width: 17px;
513
+ height: 17px;
514
+ padding: 1px;
515
+
516
+ margin: -10px auto 0;
517
+ pointer-events: auto;
518
+
519
+ -webkit-transform: rotate(45deg);
520
+ -moz-transform: rotate(45deg);
521
+ -ms-transform: rotate(45deg);
522
+ transform: rotate(45deg);
523
+ }
524
+ .leaflet-popup-content-wrapper,
525
+ .leaflet-popup-tip {
526
+ background: white;
527
+ color: #333;
528
+ box-shadow: 0 3px 14px rgba(0,0,0,0.4);
529
+ }
530
+ .leaflet-container a.leaflet-popup-close-button {
531
+ position: absolute;
532
+ top: 0;
533
+ right: 0;
534
+ border: none;
535
+ text-align: center;
536
+ width: 24px;
537
+ height: 24px;
538
+ font: 16px/24px Tahoma, Verdana, sans-serif;
539
+ color: #757575;
540
+ text-decoration: none;
541
+ background: transparent;
542
+ }
543
+ .leaflet-container a.leaflet-popup-close-button:hover,
544
+ .leaflet-container a.leaflet-popup-close-button:focus {
545
+ color: #585858;
546
+ }
547
+ .leaflet-popup-scrolled {
548
+ overflow: auto;
549
+ }
550
+
551
+ .leaflet-oldie .leaflet-popup-content-wrapper {
552
+ -ms-zoom: 1;
553
+ }
554
+ .leaflet-oldie .leaflet-popup-tip {
555
+ width: 24px;
556
+ margin: 0 auto;
557
+
558
+ -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
559
+ filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
560
+ }
561
+
562
+ .leaflet-oldie .leaflet-control-zoom,
563
+ .leaflet-oldie .leaflet-control-layers,
564
+ .leaflet-oldie .leaflet-popup-content-wrapper,
565
+ .leaflet-oldie .leaflet-popup-tip {
566
+ border: 1px solid #999;
567
+ }
568
+
569
+
570
+ /* div icon */
571
+
572
+ .leaflet-div-icon {
573
+ background: #fff;
574
+ border: 1px solid #666;
575
+ }
576
+
577
+
578
+ /* Tooltip */
579
+ /* Base styles for the element that has a tooltip */
580
+ .leaflet-tooltip {
581
+ position: absolute;
582
+ padding: 6px;
583
+ background-color: #fff;
584
+ border: 1px solid #fff;
585
+ border-radius: 3px;
586
+ color: #222;
587
+ white-space: nowrap;
588
+ -webkit-user-select: none;
589
+ -moz-user-select: none;
590
+ -ms-user-select: none;
591
+ user-select: none;
592
+ pointer-events: none;
593
+ box-shadow: 0 1px 3px rgba(0,0,0,0.4);
594
+ }
595
+ .leaflet-tooltip.leaflet-interactive {
596
+ cursor: pointer;
597
+ pointer-events: auto;
598
+ }
599
+ .leaflet-tooltip-top:before,
600
+ .leaflet-tooltip-bottom:before,
601
+ .leaflet-tooltip-left:before,
602
+ .leaflet-tooltip-right:before {
603
+ position: absolute;
604
+ pointer-events: none;
605
+ border: 6px solid transparent;
606
+ background: transparent;
607
+ content: "";
608
+ }
609
+
610
+ /* Directions */
611
+
612
+ .leaflet-tooltip-bottom {
613
+ margin-top: 6px;
614
+ }
615
+ .leaflet-tooltip-top {
616
+ margin-top: -6px;
617
+ }
618
+ .leaflet-tooltip-bottom:before,
619
+ .leaflet-tooltip-top:before {
620
+ left: 50%;
621
+ margin-left: -6px;
622
+ }
623
+ .leaflet-tooltip-top:before {
624
+ bottom: 0;
625
+ margin-bottom: -12px;
626
+ border-top-color: #fff;
627
+ }
628
+ .leaflet-tooltip-bottom:before {
629
+ top: 0;
630
+ margin-top: -12px;
631
+ margin-left: -6px;
632
+ border-bottom-color: #fff;
633
+ }
634
+ .leaflet-tooltip-left {
635
+ margin-left: -6px;
636
+ }
637
+ .leaflet-tooltip-right {
638
+ margin-left: 6px;
639
+ }
640
+ .leaflet-tooltip-left:before,
641
+ .leaflet-tooltip-right:before {
642
+ top: 50%;
643
+ margin-top: -6px;
644
+ }
645
+ .leaflet-tooltip-left:before {
646
+ right: 0;
647
+ margin-right: -12px;
648
+ border-left-color: #fff;
649
+ }
650
+ .leaflet-tooltip-right:before {
651
+ left: 0;
652
+ margin-left: -12px;
653
+ border-right-color: #fff;
654
+ }
655
+
656
+ /* Printing */
657
+
658
+ @media print {
659
+ /* Prevent printers from removing background-images of controls. */
660
+ .leaflet-control {
661
+ -webkit-print-color-adjust: exact;
662
+ print-color-adjust: exact;
663
+ }
664
+ }