maplibre-gl-geoagent 0.3.0 → 0.3.1
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.
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
border-radius: 4px;
|
|
4
4
|
box-shadow: 0 0 0 2px rgb(0 0 0 / 10%);
|
|
5
5
|
color: #17202a;
|
|
6
|
+
color-scheme: light;
|
|
6
7
|
font-family:
|
|
7
8
|
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
|
|
8
9
|
"Segoe UI", sans-serif;
|
|
@@ -52,6 +53,7 @@
|
|
|
52
53
|
background: color-mix(in srgb, #ffffff 94%, transparent);
|
|
53
54
|
box-shadow: 0 18px 50px rgb(15 23 42 / 18%);
|
|
54
55
|
color: #17202a;
|
|
56
|
+
color-scheme: light;
|
|
55
57
|
font-family:
|
|
56
58
|
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
|
|
57
59
|
"Segoe UI", sans-serif;
|
|
@@ -298,10 +300,50 @@ body.geoagent-panel-resizing {
|
|
|
298
300
|
border: 1px solid #d7dde5;
|
|
299
301
|
border-radius: 6px;
|
|
300
302
|
background: #f6f8fb;
|
|
303
|
+
scrollbar-color: #8a96a6 #e6ebf1;
|
|
304
|
+
scrollbar-width: thin;
|
|
301
305
|
font-size: 13px;
|
|
302
306
|
line-height: 1.4;
|
|
303
307
|
}
|
|
304
308
|
|
|
309
|
+
.geoagent-panel textarea,
|
|
310
|
+
.geoagent-text.markdown pre,
|
|
311
|
+
.geoagent-text.markdown table {
|
|
312
|
+
scrollbar-color: #8a96a6 #e6ebf1;
|
|
313
|
+
scrollbar-width: thin;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.geoagent-log::-webkit-scrollbar,
|
|
317
|
+
.geoagent-panel textarea::-webkit-scrollbar,
|
|
318
|
+
.geoagent-text.markdown pre::-webkit-scrollbar,
|
|
319
|
+
.geoagent-text.markdown table::-webkit-scrollbar {
|
|
320
|
+
width: 12px;
|
|
321
|
+
height: 12px;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.geoagent-log::-webkit-scrollbar-track,
|
|
325
|
+
.geoagent-panel textarea::-webkit-scrollbar-track,
|
|
326
|
+
.geoagent-text.markdown pre::-webkit-scrollbar-track,
|
|
327
|
+
.geoagent-text.markdown table::-webkit-scrollbar-track {
|
|
328
|
+
background: #e6ebf1;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.geoagent-log::-webkit-scrollbar-thumb,
|
|
332
|
+
.geoagent-panel textarea::-webkit-scrollbar-thumb,
|
|
333
|
+
.geoagent-text.markdown pre::-webkit-scrollbar-thumb,
|
|
334
|
+
.geoagent-text.markdown table::-webkit-scrollbar-thumb {
|
|
335
|
+
border: 3px solid #e6ebf1;
|
|
336
|
+
border-radius: 999px;
|
|
337
|
+
background: #8a96a6;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.geoagent-log::-webkit-scrollbar-thumb:hover,
|
|
341
|
+
.geoagent-panel textarea::-webkit-scrollbar-thumb:hover,
|
|
342
|
+
.geoagent-text.markdown pre::-webkit-scrollbar-thumb:hover,
|
|
343
|
+
.geoagent-text.markdown table::-webkit-scrollbar-thumb:hover {
|
|
344
|
+
background: #647386;
|
|
345
|
+
}
|
|
346
|
+
|
|
305
347
|
.geoagent-entry {
|
|
306
348
|
margin: 0 0 10px;
|
|
307
349
|
padding-bottom: 10px;
|