@linkdlab/funcnodes_pyodide_react_flow 0.1.0

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.
@@ -0,0 +1,1833 @@
1
+ @charset "UTF-8";
2
+ :root {
3
+ --funcnodesedgecolor: #7bb3ec;
4
+ }
5
+
6
+ .funcnodes-edge .react-flow__edge-path {
7
+ stroke: var(--funcnodesedgecolor);
8
+ stroke-width: 2px;
9
+ }
10
+
11
+ .funcnodes-edge.selected .react-flow__edge-path {
12
+ stroke: #11ff00;
13
+ }
14
+
15
+ .dialogoverlay {
16
+ background-color: rgba(0, 0, 0, 0.5);
17
+ position: fixed;
18
+ inset: 0;
19
+ animation: overlayShow 150ms cubic-bezier(0.16, 1, 0.3, 1);
20
+ z-index: 2000;
21
+ }
22
+
23
+ .dialogconent {
24
+ background-color: var(--funcnodesbackground1);
25
+ border-radius: 6px;
26
+ box-shadow: var(--funheadercolor) 0px 10px 38px -10px, var(--funheadercolor) 0px 10px 20px -15px;
27
+ position: fixed;
28
+ top: 50%;
29
+ left: 50%;
30
+ transform: translate(-50%, -50%);
31
+ width: 90vw;
32
+ max-width: 85vw;
33
+ max-height: 85vh;
34
+ padding: 25px;
35
+ animation: contentShow 150ms cubic-bezier(0.16, 1, 0.3, 1);
36
+ color: var(--funcnodestextcolor1);
37
+ border: 1px solid var(--funheadercolor);
38
+ display: flex;
39
+ flex-direction: column;
40
+ z-index: 2001;
41
+ }
42
+
43
+ .dialogtitle {
44
+ margin: 0;
45
+ font-weight: 500;
46
+ color: var(--funheadercolor);
47
+ font-size: 17px;
48
+ }
49
+
50
+ .dialogdescription {
51
+ margin: 10px 0 20px;
52
+ font-size: 15px;
53
+ line-height: 1.5;
54
+ }
55
+
56
+ .dialogclosebutton {
57
+ border-radius: 100%;
58
+ height: 25px;
59
+ width: 25px;
60
+ display: inline-flex;
61
+ background-color: inherit;
62
+ align-items: center;
63
+ justify-content: center;
64
+ color: var(--funheadercolor);
65
+ position: absolute;
66
+ top: 10px;
67
+ right: 10px;
68
+ border: none;
69
+ }
70
+
71
+ .dialogclosebutton:hover {
72
+ background-color: var(--funheadercolor);
73
+ color: var(--funcnodesbackground1);
74
+ }
75
+
76
+ .dialogclosebutton:active {
77
+ background-color: var(--funheadercolor);
78
+ color: var(--funcnodestextcolor1);
79
+ }
80
+
81
+ .dialogsendbutton {
82
+ background-color: var(--funcnodesbackground1);
83
+ color: var(--funheadercolor);
84
+ border: 1px solid var(--funheadercolor);
85
+ border-radius: 99rem;
86
+ padding: 10px 20px;
87
+ cursor: pointer;
88
+ font-size: 15px;
89
+ margin-top: 20px;
90
+ }
91
+
92
+ .dialogsendbutton:hover {
93
+ background-color: var(--funheadercolor);
94
+ color: var(--funcnodesbackground1);
95
+ }
96
+
97
+ .dialogsendbutton:active {
98
+ background-color: var(--funheadercolor);
99
+ color: var(--funcnodestextcolor1);
100
+ }
101
+
102
+ .dialogchildren {
103
+ margin-top: 20px;
104
+ overflow: auto;
105
+ }
106
+
107
+ :root {
108
+ --expandtime: 0.3s;
109
+ --libnodebgcolor: #48465f;
110
+ --libnodebgcolor_hover: #6a6698;
111
+ }
112
+
113
+ .libcontainer {
114
+ top: 0;
115
+ left: 0;
116
+ height: 100%;
117
+ padding: 0.5rem;
118
+ box-sizing: border-box;
119
+ display: flex;
120
+ flex-direction: column;
121
+ border-radius: 0.5rem;
122
+ }
123
+
124
+ .library {
125
+ display: flex;
126
+ flex-direction: column;
127
+ flex-grow: 1;
128
+ overflow: hidden;
129
+ width: 15rem;
130
+ background-color: var(--funcnodesbackground2);
131
+ border-radius: var(--containerboarderradius);
132
+ padding: 0.5rem;
133
+ }
134
+
135
+ .library .libtitle {
136
+ font-size: 1rem;
137
+ font-weight: bold;
138
+ color: var(--funheadercolor);
139
+ }
140
+
141
+ .library hr {
142
+ width: 100%;
143
+ }
144
+
145
+ .library hr.hr_prominent {
146
+ border: 0.5px solid var(--funheadercolor);
147
+ }
148
+
149
+ .addlib {
150
+ background-color: var(--funcnodesbackground2);
151
+ border-radius: var(--containerboarderradius);
152
+ padding: 0.5rem;
153
+ }
154
+
155
+ .addlib button {
156
+ background-color: var(--funcnodesbackground1);
157
+ color: var(--funheadercolor);
158
+ border: 0;
159
+ border-radius: 0.5rem;
160
+ padding: 0.5rem;
161
+ cursor: pointer;
162
+ font-size: 1rem;
163
+ width: 100%;
164
+ }
165
+
166
+ .addlib button:hover {
167
+ background-color: var(--funheadercolor);
168
+ color: var(--funcnodesbackground1);
169
+ }
170
+
171
+ .addlib button:active {
172
+ background-color: var(--funcnodesbackground1);
173
+ color: var(--funcnodestextcolor1);
174
+ }
175
+
176
+ .addlib button[disabled] {
177
+ background-color: var(--funcnodesbackground1);
178
+ color: var(--funcnodestextcolor1);
179
+ cursor: not-allowed;
180
+ }
181
+
182
+ .libfilter {
183
+ display: flex;
184
+ width: 100%;
185
+ flex-direction: row;
186
+ background-color: rgba(0, 0, 0, 0.1);
187
+ padding: 0.2rem;
188
+ }
189
+
190
+ .libfilter:focus-within {
191
+ border: 1px solid var(--funheadercolor);
192
+ }
193
+
194
+ .libfilter input {
195
+ flex-grow: 1;
196
+ background-color: transparent;
197
+ color: var(--funcnodestextcolor1);
198
+ border: 0;
199
+ }
200
+
201
+ .libfilter input:focus {
202
+ outline: none;
203
+ }
204
+
205
+ .libnodecontainer {
206
+ display: grid;
207
+ transition: grid-template-rows var(--expandtime) ease-out;
208
+ }
209
+
210
+ .libnodecontainer.close {
211
+ grid-template-rows: 0fr;
212
+ }
213
+
214
+ .libnodecontainer.open {
215
+ grid-template-rows: 1fr;
216
+ }
217
+
218
+ .libnodecontainer_inner {
219
+ transition: opacity var(--expandtime) ease-out;
220
+ overflow: hidden;
221
+ padding-left: 10px;
222
+ }
223
+
224
+ .libnodecontainer.close .libnodecontainer_inner {
225
+ opacity: 0.2;
226
+ }
227
+
228
+ .libnodecontainer.open .libnodecontainer_inner {
229
+ opacity: 1;
230
+ }
231
+
232
+ .shelfcontainer {
233
+ padding-top: 0.2rem;
234
+ padding-bottom: 0.2rem;
235
+ display: flex;
236
+ flex-direction: column;
237
+ }
238
+
239
+ .shelfcontainer .shelftitle {
240
+ font-size: 0.8rem;
241
+ color: var(--funheadercolor);
242
+ opacity: 0.8;
243
+ display: flex;
244
+ max-width: 100%;
245
+ }
246
+
247
+ .shelfcontainer .shelftitle_text {
248
+ flex-grow: 1;
249
+ overflow: hidden;
250
+ text-overflow: ellipsis;
251
+ }
252
+
253
+ .libnodeentry {
254
+ border-radius: 10px;
255
+ box-sizing: border-box;
256
+ background-color: var(--libnodebgcolor);
257
+ margin-bottom: 0.2rem;
258
+ padding: 0.1rem;
259
+ cursor: pointer;
260
+ border: 1px solid var(--libnodebgcolor);
261
+ transition: border 0.2s ease-in-out;
262
+ font-size: 0.8rem;
263
+ box-shadow: -0.2rem 0px rgb(0, 76, 255);
264
+ }
265
+
266
+ .libnodeentry:hover {
267
+ background-color: var(--libnodebgcolor_hover);
268
+ border: 1px solid rgb(0, 76, 255);
269
+ }
270
+
271
+ .expandicon {
272
+ transform: rotate(0deg);
273
+ transition: transform var(--expandtime) ease-out;
274
+ }
275
+
276
+ .expandicon.close {
277
+ transform: rotate(180deg);
278
+ }
279
+
280
+ .addable-module {
281
+ border: 1px solid #ddd;
282
+ border-radius: 8px;
283
+ padding: 16px;
284
+ margin-bottom: 12px;
285
+ background-color: #f9f9f9;
286
+ transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
287
+ margin-left: 20px;
288
+ margin-right: 20px;
289
+ }
290
+
291
+ .addable-module:hover {
292
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
293
+ transform: translateY(-2px);
294
+ }
295
+
296
+ .addable-module .module-name {
297
+ font-size: 1.2rem;
298
+ font-weight: bold;
299
+ color: #333;
300
+ margin-bottom: 8px;
301
+ }
302
+
303
+ .addable-module .module-description {
304
+ font-size: 0.75rem;
305
+ color: #666;
306
+ margin-bottom: 8px;
307
+ max-height: 200px;
308
+ overflow: auto;
309
+ }
310
+
311
+ .addable-module .module-links {
312
+ font-size: 0.9rem;
313
+ color: #007bff;
314
+ margin-bottom: 8px;
315
+ text-decoration: underline;
316
+ }
317
+
318
+ .addable-module .add-button {
319
+ background-color: #28a745;
320
+ border: none;
321
+ color: white;
322
+ padding: 8px 12px;
323
+ border-radius: 4px;
324
+ cursor: pointer;
325
+ font-size: 0.95rem;
326
+ transition: background-color 0.2s ease;
327
+ }
328
+
329
+ .addable-module .add-button:hover {
330
+ background-color: #218838;
331
+ }
332
+
333
+ .addable-module .remove-button {
334
+ background-color: #dc3545;
335
+ border: none;
336
+ color: white;
337
+ padding: 8px 12px;
338
+ border-radius: 4px;
339
+ cursor: pointer;
340
+ font-size: 0.95rem;
341
+ transition: background-color 0.2s ease;
342
+ }
343
+
344
+ .addable-module .remove-button:hover {
345
+ background-color: #c82333;
346
+ }
347
+
348
+ .addable-module .update-button {
349
+ background-color: #007bff;
350
+ border: none;
351
+ color: white;
352
+ padding: 8px 12px;
353
+ border-radius: 4px;
354
+ cursor: pointer;
355
+ font-size: 0.95rem;
356
+ transition: background-color 0.2s ease;
357
+ }
358
+
359
+ .addable-module .update-button:hover {
360
+ background-color: #0056b3;
361
+ }
362
+
363
+ .addable-module .update-button[disabled] {
364
+ background-color: #6c757d;
365
+ cursor: not-allowed;
366
+ }
367
+
368
+ .addable-module .toggle-description {
369
+ background-color: transparent;
370
+ border: none;
371
+ color: #007bff;
372
+ cursor: pointer;
373
+ font-size: 0.8rem;
374
+ margin-top: 4px;
375
+ text-decoration: underline;
376
+ padding: 0;
377
+ transition: color 0.2s ease;
378
+ }
379
+
380
+ .addable-module .toggle-description:hover {
381
+ color: #0056b3;
382
+ }
383
+
384
+ /* this gets exported as style.css and can be used for the default theming */
385
+ /* these are the necessary styles for React Flow, they get used by base.css and style.css */
386
+ .react-flow {
387
+ direction: ltr;
388
+ }
389
+
390
+ .react-flow__container {
391
+ position: absolute;
392
+ width: 100%;
393
+ height: 100%;
394
+ top: 0;
395
+ left: 0;
396
+ }
397
+
398
+ .react-flow__pane {
399
+ z-index: 1;
400
+ cursor: -webkit-grab;
401
+ cursor: grab;
402
+ }
403
+
404
+ .react-flow__pane.selection {
405
+ cursor: pointer;
406
+ }
407
+
408
+ .react-flow__pane.dragging {
409
+ cursor: -webkit-grabbing;
410
+ cursor: grabbing;
411
+ }
412
+
413
+ .react-flow__viewport {
414
+ transform-origin: 0 0;
415
+ z-index: 2;
416
+ pointer-events: none;
417
+ }
418
+
419
+ .react-flow__renderer {
420
+ z-index: 4;
421
+ }
422
+
423
+ .react-flow__selection {
424
+ z-index: 6;
425
+ }
426
+
427
+ .react-flow__nodesselection-rect:focus,
428
+ .react-flow__nodesselection-rect:focus-visible {
429
+ outline: none;
430
+ }
431
+
432
+ .react-flow .react-flow__edges {
433
+ pointer-events: none;
434
+ overflow: visible;
435
+ }
436
+
437
+ .react-flow__edge-path,
438
+ .react-flow__connection-path {
439
+ stroke: #b1b1b7;
440
+ stroke-width: 1;
441
+ fill: none;
442
+ }
443
+
444
+ .react-flow__edge {
445
+ pointer-events: visibleStroke;
446
+ cursor: pointer;
447
+ }
448
+
449
+ .react-flow__edge.animated path {
450
+ stroke-dasharray: 5;
451
+ -webkit-animation: dashdraw 0.5s linear infinite;
452
+ animation: dashdraw 0.5s linear infinite;
453
+ }
454
+
455
+ .react-flow__edge.animated path.react-flow__edge-interaction {
456
+ stroke-dasharray: none;
457
+ -webkit-animation: none;
458
+ animation: none;
459
+ }
460
+
461
+ .react-flow__edge.inactive {
462
+ pointer-events: none;
463
+ }
464
+
465
+ .react-flow__edge.selected,
466
+ .react-flow__edge:focus,
467
+ .react-flow__edge:focus-visible {
468
+ outline: none;
469
+ }
470
+
471
+ .react-flow__edge.selected .react-flow__edge-path,
472
+ .react-flow__edge:focus .react-flow__edge-path,
473
+ .react-flow__edge:focus-visible .react-flow__edge-path {
474
+ stroke: #555;
475
+ }
476
+
477
+ .react-flow__edge-textwrapper {
478
+ pointer-events: all;
479
+ }
480
+
481
+ .react-flow__edge-textbg {
482
+ fill: white;
483
+ }
484
+
485
+ .react-flow__edge .react-flow__edge-text {
486
+ pointer-events: none;
487
+ -webkit-user-select: none;
488
+ -moz-user-select: none;
489
+ user-select: none;
490
+ }
491
+
492
+ .react-flow__connection {
493
+ pointer-events: none;
494
+ }
495
+
496
+ .react-flow__connection .animated {
497
+ stroke-dasharray: 5;
498
+ -webkit-animation: dashdraw 0.5s linear infinite;
499
+ animation: dashdraw 0.5s linear infinite;
500
+ }
501
+
502
+ .react-flow__connectionline {
503
+ z-index: 1001;
504
+ }
505
+
506
+ .react-flow__nodes {
507
+ pointer-events: none;
508
+ transform-origin: 0 0;
509
+ }
510
+
511
+ .react-flow__node {
512
+ position: absolute;
513
+ -webkit-user-select: none;
514
+ -moz-user-select: none;
515
+ user-select: none;
516
+ pointer-events: all;
517
+ transform-origin: 0 0;
518
+ box-sizing: border-box;
519
+ cursor: -webkit-grab;
520
+ cursor: grab;
521
+ }
522
+
523
+ .react-flow__node.dragging {
524
+ cursor: -webkit-grabbing;
525
+ cursor: grabbing;
526
+ }
527
+
528
+ .react-flow__nodesselection {
529
+ z-index: 3;
530
+ transform-origin: left top;
531
+ pointer-events: none;
532
+ }
533
+
534
+ .react-flow__nodesselection-rect {
535
+ position: absolute;
536
+ pointer-events: all;
537
+ cursor: -webkit-grab;
538
+ cursor: grab;
539
+ }
540
+
541
+ .react-flow__handle {
542
+ position: absolute;
543
+ pointer-events: none;
544
+ min-width: 5px;
545
+ min-height: 5px;
546
+ width: 6px;
547
+ height: 6px;
548
+ background: #1a192b;
549
+ border: 1px solid white;
550
+ border-radius: 100%;
551
+ }
552
+
553
+ .react-flow__handle.connectionindicator {
554
+ pointer-events: all;
555
+ cursor: crosshair;
556
+ }
557
+
558
+ .react-flow__handle-bottom {
559
+ top: auto;
560
+ left: 50%;
561
+ bottom: -4px;
562
+ transform: translate(-50%, 0);
563
+ }
564
+
565
+ .react-flow__handle-top {
566
+ left: 50%;
567
+ top: -4px;
568
+ transform: translate(-50%, 0);
569
+ }
570
+
571
+ .react-flow__handle-left {
572
+ top: 50%;
573
+ left: -4px;
574
+ transform: translate(0, -50%);
575
+ }
576
+
577
+ .react-flow__handle-right {
578
+ right: -4px;
579
+ top: 50%;
580
+ transform: translate(0, -50%);
581
+ }
582
+
583
+ .react-flow__edgeupdater {
584
+ cursor: move;
585
+ pointer-events: all;
586
+ }
587
+
588
+ .react-flow__panel {
589
+ position: absolute;
590
+ z-index: 5;
591
+ margin: 15px;
592
+ }
593
+
594
+ .react-flow__panel.top {
595
+ top: 0;
596
+ }
597
+
598
+ .react-flow__panel.bottom {
599
+ bottom: 0;
600
+ }
601
+
602
+ .react-flow__panel.left {
603
+ left: 0;
604
+ }
605
+
606
+ .react-flow__panel.right {
607
+ right: 0;
608
+ }
609
+
610
+ .react-flow__panel.center {
611
+ left: 50%;
612
+ transform: translateX(-50%);
613
+ }
614
+
615
+ .react-flow__attribution {
616
+ font-size: 10px;
617
+ background: rgba(255, 255, 255, 0.5);
618
+ padding: 2px 3px;
619
+ margin: 0;
620
+ }
621
+
622
+ .react-flow__attribution a {
623
+ text-decoration: none;
624
+ color: #999;
625
+ }
626
+
627
+ @-webkit-keyframes dashdraw {
628
+ from {
629
+ stroke-dashoffset: 10;
630
+ }
631
+ }
632
+ @keyframes dashdraw {
633
+ from {
634
+ stroke-dashoffset: 10;
635
+ }
636
+ }
637
+ .react-flow__edgelabel-renderer {
638
+ position: absolute;
639
+ width: 100%;
640
+ height: 100%;
641
+ pointer-events: none;
642
+ -webkit-user-select: none;
643
+ -moz-user-select: none;
644
+ user-select: none;
645
+ }
646
+
647
+ .react-flow__edge.updating .react-flow__edge-path {
648
+ stroke: #777;
649
+ }
650
+
651
+ .react-flow__edge-text {
652
+ font-size: 10px;
653
+ }
654
+
655
+ .react-flow__node.selectable:focus,
656
+ .react-flow__node.selectable:focus-visible {
657
+ outline: none;
658
+ }
659
+
660
+ .react-flow__node-default,
661
+ .react-flow__node-input,
662
+ .react-flow__node-output,
663
+ .react-flow__node-group {
664
+ padding: 10px;
665
+ border-radius: 3px;
666
+ width: 150px;
667
+ font-size: 12px;
668
+ color: #222;
669
+ text-align: center;
670
+ border-width: 1px;
671
+ border-style: solid;
672
+ border-color: #1a192b;
673
+ background-color: white;
674
+ }
675
+
676
+ .react-flow__node-default.selectable:hover, .react-flow__node-input.selectable:hover, .react-flow__node-output.selectable:hover, .react-flow__node-group.selectable:hover {
677
+ box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.08);
678
+ }
679
+
680
+ .react-flow__node-default.selectable.selected,
681
+ .react-flow__node-default.selectable:focus,
682
+ .react-flow__node-default.selectable:focus-visible,
683
+ .react-flow__node-input.selectable.selected,
684
+ .react-flow__node-input.selectable:focus,
685
+ .react-flow__node-input.selectable:focus-visible,
686
+ .react-flow__node-output.selectable.selected,
687
+ .react-flow__node-output.selectable:focus,
688
+ .react-flow__node-output.selectable:focus-visible,
689
+ .react-flow__node-group.selectable.selected,
690
+ .react-flow__node-group.selectable:focus,
691
+ .react-flow__node-group.selectable:focus-visible {
692
+ box-shadow: 0 0 0 0.5px #1a192b;
693
+ }
694
+
695
+ .react-flow__node-group {
696
+ background-color: rgba(240, 240, 240, 0.25);
697
+ }
698
+
699
+ .react-flow__nodesselection-rect,
700
+ .react-flow__selection {
701
+ background: rgba(0, 89, 220, 0.08);
702
+ border: 1px dotted rgba(0, 89, 220, 0.8);
703
+ }
704
+
705
+ .react-flow__nodesselection-rect:focus,
706
+ .react-flow__nodesselection-rect:focus-visible,
707
+ .react-flow__selection:focus,
708
+ .react-flow__selection:focus-visible {
709
+ outline: none;
710
+ }
711
+
712
+ .react-flow__controls {
713
+ box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08);
714
+ }
715
+
716
+ .react-flow__controls-button {
717
+ border: none;
718
+ background: #fefefe;
719
+ border-bottom: 1px solid #eee;
720
+ box-sizing: content-box;
721
+ display: flex;
722
+ justify-content: center;
723
+ align-items: center;
724
+ width: 16px;
725
+ height: 16px;
726
+ cursor: pointer;
727
+ -webkit-user-select: none;
728
+ -moz-user-select: none;
729
+ user-select: none;
730
+ padding: 5px;
731
+ }
732
+
733
+ .react-flow__controls-button:hover {
734
+ background: #f4f4f4;
735
+ }
736
+
737
+ .react-flow__controls-button svg {
738
+ width: 100%;
739
+ max-width: 12px;
740
+ max-height: 12px;
741
+ }
742
+
743
+ .react-flow__controls-button:disabled {
744
+ pointer-events: none;
745
+ }
746
+
747
+ .react-flow__controls-button:disabled svg {
748
+ fill-opacity: 0.4;
749
+ }
750
+
751
+ .react-flow__minimap {
752
+ background-color: #fff;
753
+ }
754
+
755
+ .react-flow__minimap svg {
756
+ display: block;
757
+ }
758
+
759
+ .react-flow__resize-control {
760
+ position: absolute;
761
+ }
762
+
763
+ .react-flow__resize-control.left,
764
+ .react-flow__resize-control.right {
765
+ cursor: ew-resize;
766
+ }
767
+
768
+ .react-flow__resize-control.top,
769
+ .react-flow__resize-control.bottom {
770
+ cursor: ns-resize;
771
+ }
772
+
773
+ .react-flow__resize-control.top.left,
774
+ .react-flow__resize-control.bottom.right {
775
+ cursor: nwse-resize;
776
+ }
777
+
778
+ .react-flow__resize-control.bottom.left,
779
+ .react-flow__resize-control.top.right {
780
+ cursor: nesw-resize;
781
+ }
782
+
783
+ /* handle styles */
784
+ .react-flow__resize-control.handle {
785
+ width: 4px;
786
+ height: 4px;
787
+ border: 1px solid #fff;
788
+ border-radius: 1px;
789
+ background-color: #3367d9;
790
+ transform: translate(-50%, -50%);
791
+ }
792
+
793
+ .react-flow__resize-control.handle.left {
794
+ left: 0;
795
+ top: 50%;
796
+ }
797
+
798
+ .react-flow__resize-control.handle.right {
799
+ left: 100%;
800
+ top: 50%;
801
+ }
802
+
803
+ .react-flow__resize-control.handle.top {
804
+ left: 50%;
805
+ top: 0;
806
+ }
807
+
808
+ .react-flow__resize-control.handle.bottom {
809
+ left: 50%;
810
+ top: 100%;
811
+ }
812
+
813
+ .react-flow__resize-control.handle.top.left {
814
+ left: 0;
815
+ }
816
+
817
+ .react-flow__resize-control.handle.bottom.left {
818
+ left: 0;
819
+ }
820
+
821
+ .react-flow__resize-control.handle.top.right {
822
+ left: 100%;
823
+ }
824
+
825
+ .react-flow__resize-control.handle.bottom.right {
826
+ left: 100%;
827
+ }
828
+
829
+ /* line styles */
830
+ .react-flow__resize-control.line {
831
+ border-color: #3367d9;
832
+ border-width: 0;
833
+ border-style: solid;
834
+ }
835
+
836
+ .react-flow__resize-control.line.left,
837
+ .react-flow__resize-control.line.right {
838
+ width: 1px;
839
+ transform: translate(-50%, 0);
840
+ top: 0;
841
+ height: 100%;
842
+ }
843
+
844
+ .react-flow__resize-control.line.left {
845
+ left: 0;
846
+ border-left-width: 1px;
847
+ }
848
+
849
+ .react-flow__resize-control.line.right {
850
+ left: 100%;
851
+ border-right-width: 1px;
852
+ }
853
+
854
+ .react-flow__resize-control.line.top,
855
+ .react-flow__resize-control.line.bottom {
856
+ height: 1px;
857
+ transform: translate(0, -50%);
858
+ left: 0;
859
+ width: 100%;
860
+ }
861
+
862
+ .react-flow__resize-control.line.top {
863
+ top: 0;
864
+ border-top-width: 1px;
865
+ }
866
+
867
+ .react-flow__resize-control.line.bottom {
868
+ border-bottom-width: 1px;
869
+ top: 100%;
870
+ }
871
+
872
+ :root {
873
+ --funheadercolor: #00d9ff;
874
+ --funcnodesbackground1: hsl(243, 26%, 13%);
875
+ --funcnodesbackground2: hsl(245, 22%, 22%);
876
+ --funcnodesbackground_light: hsl(240, 22%, 38%);
877
+ --containerboarderradius: 1rem;
878
+ --funcnodestextcolor1: #ffffff;
879
+ }
880
+
881
+ .funcnodescontainer {
882
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
883
+ -webkit-font-smoothing: antialiased;
884
+ -moz-osx-font-smoothing: grayscale;
885
+ }
886
+
887
+ .funcnodescontainer code {
888
+ font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
889
+ }
890
+
891
+ .funcnodesreactflowcontainer {
892
+ width: 100%;
893
+ height: 100%;
894
+ background-color: var(--funcnodesbackground1);
895
+ position: relative;
896
+ display: flex;
897
+ flex-direction: column;
898
+ color: var(--funcnodestextcolor1);
899
+ }
900
+
901
+ .funcnodesreactflowcontainer * {
902
+ box-sizing: border-box;
903
+ }
904
+
905
+ .funcnodesreactflowbody {
906
+ flex-grow: 1;
907
+ position: relative;
908
+ display: flex;
909
+ flex-direction: row;
910
+ overflow: hidden;
911
+ }
912
+
913
+ .reactflowlayer {
914
+ flex-grow: 1;
915
+ position: relative;
916
+ overflow: hidden;
917
+ background-color: var(--funcnodesbackground2);
918
+ margin: 0.5rem;
919
+ border-radius: var(--containerboarderradius);
920
+ }
921
+
922
+ .vscrollcontainer {
923
+ overflow-y: auto;
924
+ overflow-x: hidden;
925
+ flex-grow: 1;
926
+ padding: 0.5rem;
927
+ box-sizing: border-box;
928
+ }
929
+
930
+ .workerselect {
931
+ max-width: 140px;
932
+ }
933
+
934
+ .workerselectoption.selected {
935
+ color: var(--funcnodestextcolor1);
936
+ }
937
+
938
+ .workerselectoption.active {
939
+ color: green;
940
+ }
941
+
942
+ .workerselectoption.inactive {
943
+ color: red;
944
+ }
945
+
946
+ .basicstyleelement, .headermenucontent, .styled-select__menu, .styleelement, .styledcheckbox, .styledinput, .styledbtn, .styleddropdown {
947
+ background-color: var(--funcnodesbackground1);
948
+ color: var(--funcnodestextcolor1);
949
+ border-radius: 0.75rem;
950
+ border: 1px solid var(--funheadercolor);
951
+ }
952
+
953
+ .styleelement, .styledcheckbox, .styledinput, .styledbtn, .styleddropdown {
954
+ height: 2rem;
955
+ padding-left: 0.5rem;
956
+ padding-right: 0.5rem;
957
+ }
958
+
959
+ .styleelement:hover, .styledcheckbox:hover, .styledinput:hover, .styledbtn:hover, .styleddropdown:hover {
960
+ background-color: var(--funcnodesbackground_light);
961
+ }
962
+
963
+ .styleelement:active, .styledcheckbox:active, .styledinput:active, .styledbtn:active, .styleddropdown:active {
964
+ background-color: var(--funheadercolor);
965
+ color: var(--funcnodesbackground1);
966
+ }
967
+
968
+ .styleelement:focus, .styledcheckbox:focus, .styledinput:focus, .styledbtn:focus, .styleddropdown:focus {
969
+ outline: 1px solid var(--funheadercolor);
970
+ }
971
+
972
+ .styleddropdown {
973
+ padding-right: 0.25rem;
974
+ }
975
+
976
+ .styledbtn {
977
+ cursor: pointer;
978
+ }
979
+
980
+ .styledinput :focus {
981
+ outline: none;
982
+ }
983
+
984
+ input[type=number]::-webkit-inner-spin-button,
985
+ input[type=number]::-webkit-outer-spin-button {
986
+ opacity: 0.5;
987
+ background-color: tr;
988
+ }
989
+
990
+ .styledcheckbox {
991
+ height: auto;
992
+ accent-color: var(--funheadercolor);
993
+ }
994
+
995
+ .styledcheckbox:focus {
996
+ outline: none;
997
+ }
998
+
999
+ .styledcheckbox:after {
1000
+ content: "";
1001
+ background-color: var(--funheadercolor);
1002
+ }
1003
+
1004
+ .styledcheckbox.checked {
1005
+ background-color: var(--funheadercolor);
1006
+ color: var(--funcnodesbackground1);
1007
+ }
1008
+
1009
+ .SliderContainer {
1010
+ display: flex;
1011
+ align-items: center;
1012
+ width: 100%;
1013
+ height: 100%;
1014
+ min-height: 20px;
1015
+ }
1016
+
1017
+ .SliderRoot {
1018
+ position: relative;
1019
+ display: flex;
1020
+ align-items: center;
1021
+ user-select: none;
1022
+ touch-action: none;
1023
+ width: 100%;
1024
+ height: fit-content;
1025
+ }
1026
+
1027
+ .SliderTrack {
1028
+ background-color: var(--funcnodesbackground1);
1029
+ position: relative;
1030
+ flex-grow: 1;
1031
+ border-radius: 9999px;
1032
+ height: 3px;
1033
+ }
1034
+
1035
+ .SliderRange {
1036
+ position: absolute;
1037
+ background-color: var(--funheadercolor);
1038
+ border-radius: 9999px;
1039
+ height: 100%;
1040
+ }
1041
+
1042
+ .SliderThumb {
1043
+ display: block;
1044
+ width: 10px;
1045
+ height: 10px;
1046
+ background-color: white;
1047
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3333333333);
1048
+ border-radius: 10px;
1049
+ }
1050
+
1051
+ .SliderThumb:hover {
1052
+ background-color: #999;
1053
+ }
1054
+
1055
+ .SliderThumb:focus {
1056
+ outline: none;
1057
+ box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.3333333333);
1058
+ }
1059
+
1060
+ .styled-select__control {
1061
+ height: 100%;
1062
+ min-height: initial;
1063
+ }
1064
+
1065
+ .styled-select__menu-list {
1066
+ max-height: 200px !important;
1067
+ padding-left: 0;
1068
+ height: initial;
1069
+ }
1070
+
1071
+ .styled-select__menu {
1072
+ margin-left: -0.5rem;
1073
+ }
1074
+
1075
+ .styled-select__option:hover {
1076
+ background-color: var(--funcnodesbackground_light);
1077
+ }
1078
+
1079
+ button {
1080
+ font-family: inherit;
1081
+ font-size: inherit;
1082
+ }
1083
+
1084
+ .funcnodesreactflowheader {
1085
+ display: flex;
1086
+ flex-direction: row;
1087
+ height: 50px;
1088
+ justify-content: flex-start;
1089
+ position: relative;
1090
+ top: 0;
1091
+ left: 0;
1092
+ z-index: 1000;
1093
+ }
1094
+
1095
+ .funcnodesreactflowheader .headerelement {
1096
+ height: 100%;
1097
+ display: flex;
1098
+ align-items: center;
1099
+ margin: 4px 4px 4px 4px;
1100
+ position: relative;
1101
+ white-space: nowrap;
1102
+ }
1103
+
1104
+ .funcnodesreactflowheader .statusbar {
1105
+ width: 250px;
1106
+ height: 1.5rem;
1107
+ background-color: var(--funcnodesbackground2);
1108
+ display: inline-block;
1109
+ margin: 2px 4px 0px 4px;
1110
+ position: relative;
1111
+ border-radius: 0.5rem;
1112
+ overflow: hidden;
1113
+ }
1114
+
1115
+ .funcnodesreactflowheader .statusbar-progressbar {
1116
+ position: absolute;
1117
+ top: 0;
1118
+ left: 0;
1119
+ width: 0;
1120
+ height: 100%;
1121
+ background-color: var(--funheadercolor);
1122
+ display: inline-block;
1123
+ }
1124
+
1125
+ .funcnodesreactflowheader .statusbar-message {
1126
+ position: relative;
1127
+ top: 0;
1128
+ left: 0;
1129
+ font-size: 0.8rem;
1130
+ color: var(--funheadercolor);
1131
+ mix-blend-mode: difference;
1132
+ }
1133
+
1134
+ .headermenucontent {
1135
+ max-height: 90vh;
1136
+ overflow: auto;
1137
+ padding: 5px;
1138
+ border-radius: 0.25rem;
1139
+ }
1140
+
1141
+ .headermenuitem {
1142
+ padding: 0 5px;
1143
+ }
1144
+
1145
+ .headermenuitem[data-highlighted] {
1146
+ background-color: var(--funcnodesbackground_light);
1147
+ }
1148
+
1149
+ .headermenuitem[data-state=open] {
1150
+ background-color: var(--funcnodesbackground_light);
1151
+ }
1152
+
1153
+ .headermenuitem[data-state=checked] {
1154
+ background-color: var(--funcnodesbackground_light);
1155
+ color: #fff;
1156
+ }
1157
+
1158
+ .nodesettings_container {
1159
+ height: 100%;
1160
+ display: flex;
1161
+ flex-direction: row;
1162
+ }
1163
+
1164
+ .nodesettings_expander {
1165
+ height: 100%;
1166
+ display: flex;
1167
+ align-items: center;
1168
+ justify-content: center;
1169
+ cursor: pointer;
1170
+ padding: 3px 3px;
1171
+ }
1172
+
1173
+ .nodesettings_content {
1174
+ display: flex;
1175
+ flex-direction: column;
1176
+ flex: 1;
1177
+ padding: 0 5px;
1178
+ overflow: auto;
1179
+ transition: width 0.5s;
1180
+ }
1181
+
1182
+ .nodesettings_content.expanded {
1183
+ width: 250px;
1184
+ }
1185
+
1186
+ .nodesettings_content.collapsed {
1187
+ width: 0;
1188
+ }
1189
+
1190
+ .nodesettings_section {
1191
+ margin-bottom: 10px;
1192
+ margin-left: 0.5rem;
1193
+ }
1194
+
1195
+ .nodesettings_component {
1196
+ margin-bottom: 0.5rem;
1197
+ margin-left: 0.5rem;
1198
+ margin-top: 0.5rem;
1199
+ }
1200
+
1201
+ :root {
1202
+ --node_border_radius: 5px;
1203
+ --handle_outer_radius: 4px;
1204
+ --handle_inner_radius: 2px;
1205
+ --handle_width: 10;
1206
+ --handle_width_hover: 15;
1207
+ --handle_overlap: 3;
1208
+ --nodeinput_margin: 2;
1209
+ --nodeio_shift: calc(var(--handle_overlap) - var(--nodeinput_margin));
1210
+ --handle_source_color: hsl(190, 98%, 49%);
1211
+ --handle_target_color: hsl(204, 98%, 51%);
1212
+ --node_background: hsl(245, 51%, 42%);
1213
+ --node_header_color: hsl(245, 51%, 22%);
1214
+ }
1215
+
1216
+ .react-flow__node {
1217
+ padding: 0;
1218
+ border-radius: var(--node_border_radius);
1219
+ background-color: var(--node_background);
1220
+ display: flex;
1221
+ flex-direction: column;
1222
+ color: #f0f8ff;
1223
+ box-sizing: content-box;
1224
+ transform: -50%, -50%;
1225
+ border: 2px solid rgba(255, 255, 255, 0);
1226
+ font-size: 0.5rem;
1227
+ width: auto;
1228
+ max-width: 200px;
1229
+ min-width: 100px;
1230
+ background-clip: content-box;
1231
+ }
1232
+
1233
+ .react-flow__node.selected {
1234
+ border-color: rgba(255, 255, 255, 0.6);
1235
+ }
1236
+
1237
+ .react-flow__node * {
1238
+ box-sizing: border-box;
1239
+ }
1240
+
1241
+ .react-flow__handle {
1242
+ height: calc(100% - 4px);
1243
+ border-radius: 0;
1244
+ width: calc(var(--handle_width) * 1px);
1245
+ transition: left 0.2s ease-in-out, right 0.2s ease-in-out, width 0.2s ease-in-out;
1246
+ }
1247
+
1248
+ .react-flow__handle:hover {
1249
+ width: calc(var(--handle_width_hover) * 1px);
1250
+ }
1251
+
1252
+ .react-flow__handle.source {
1253
+ background-color: var(--handle_source_color);
1254
+ }
1255
+
1256
+ .react-flow__handle.target {
1257
+ background-color: var(--handle_target_color);
1258
+ }
1259
+
1260
+ .react-flow__handle-left {
1261
+ border-radius: var(--handle_outer_radius) var(--handle_inner_radius) var(--handle_inner_radius) var(--handle_outer_radius);
1262
+ left: calc((var(--nodeio_shift) - var(--handle_width)) * 1px);
1263
+ }
1264
+
1265
+ .react-flow__handle-left:hover {
1266
+ left: calc((var(--nodeio_shift) - var(--handle_width_hover)) * 1px);
1267
+ }
1268
+
1269
+ .react-flow__handle-right {
1270
+ border-radius: var(--handle_inner_radius) var(--handle_outer_radius) var(--handle_outer_radius) var(--handle_inner_radius);
1271
+ right: calc((var(--nodeio_shift) - var(--handle_width)) * 1px);
1272
+ }
1273
+
1274
+ .react-flow__handle-right:hover {
1275
+ right: calc((var(--nodeio_shift) - var(--handle_width_hover)) * 1px);
1276
+ }
1277
+
1278
+ .react-flow__handle-top {
1279
+ border-radius: var(--handle_outer_radius) var(--handle_outer_radius) var(--handle_inner_radius) var(--handle_inner_radius);
1280
+ }
1281
+
1282
+ .react-flow__handle-bottom {
1283
+ border-radius: var(--handle_inner_radius) var(--handle_inner_radius) var(--handle_outer_radius) var(--handle_outer_radius);
1284
+ }
1285
+
1286
+ .innernode {
1287
+ width: 100%;
1288
+ height: 100%;
1289
+ flex-direction: column;
1290
+ display: flex;
1291
+ box-sizing: border-box;
1292
+ }
1293
+
1294
+ .innernode.intrigger .nodeheader {
1295
+ background-color: #abb408;
1296
+ }
1297
+
1298
+ .innernode.error .nodeheader {
1299
+ background-color: #ff0000;
1300
+ }
1301
+
1302
+ .nodeheader {
1303
+ box-sizing: border-box;
1304
+ background-color: var(--node_header_color);
1305
+ width: 100%;
1306
+ padding: 0.1rem;
1307
+ border-radius: var(--node_border_radius) var(--node_border_radius) 0 0;
1308
+ display: flex; /* Use flex layout */
1309
+ align-items: center; /* Align items vertically in the center */
1310
+ justify-content: space-between; /* Distribute space between items */
1311
+ }
1312
+
1313
+ .nodeheader_element {
1314
+ display: flex; /* Enable flex within each child to center content */
1315
+ align-items: center; /* Align items vertically in the center */
1316
+ }
1317
+
1318
+ .nodeheader_title {
1319
+ flex-grow: 1; /* Allow the text div to grow and fill available space */
1320
+ margin: 0 10px; /* Add some space around the text for aesthetics */
1321
+ white-space: nowrap; /* Prevent wrapping */
1322
+ overflow: hidden; /* Hide overflow */
1323
+ text-overflow: ellipsis; /* Add ellipsis to overflow */
1324
+ justify-content: center; /* Center the text horizontally */
1325
+ }
1326
+
1327
+ .nodeheader_title_text {
1328
+ overflow: hidden;
1329
+ text-overflow: ellipsis;
1330
+ white-space: nowrap;
1331
+ max-width: 100%; /* Ensure it does not overflow the parent */
1332
+ }
1333
+
1334
+ .nodeheader .triggerbutton {
1335
+ cursor: pointer;
1336
+ }
1337
+
1338
+ .nodeheader .triggerbutton:hover {
1339
+ color: #0cc3f5;
1340
+ }
1341
+
1342
+ .nodeheader .triggerbutton:active {
1343
+ color: #075d74;
1344
+ }
1345
+
1346
+ .nodename_input {
1347
+ border: 1px solid #000000;
1348
+ border-radius: 2px;
1349
+ background: none;
1350
+ color: white;
1351
+ text-align: center;
1352
+ font-size: inherit;
1353
+ margin: 2px;
1354
+ box-sizing: border-box;
1355
+ }
1356
+
1357
+ .nodefooter {
1358
+ background-color: #4e0ba5;
1359
+ width: 100%;
1360
+ padding: 0.1rem;
1361
+ border-radius: 0 0 var(--node_border_radius) var(--node_border_radius);
1362
+ }
1363
+
1364
+ .nodefooter:empty {
1365
+ display: none;
1366
+ }
1367
+
1368
+ .nodefooter .nodeerror {
1369
+ border: 1px solid #ff0000;
1370
+ border-radius: 2px;
1371
+ padding: 0.25rem;
1372
+ background-color: rgba(255, 0, 0, 0.4588235294);
1373
+ }
1374
+
1375
+ .nodebody {
1376
+ flex-grow: 1;
1377
+ }
1378
+
1379
+ .nodedatabody {
1380
+ overflow: auto;
1381
+ }
1382
+
1383
+ .noderesizecontrol {
1384
+ background: transparent !important;
1385
+ border: none !important;
1386
+ font-size: 0.5rem;
1387
+ }
1388
+
1389
+ .noderesizeicon {
1390
+ position: absolute;
1391
+ bottom: 4px;
1392
+ right: 4px;
1393
+ font-size: 0.5rem;
1394
+ }
1395
+
1396
+ .nodeio, .nodeoutput, .nodeinput {
1397
+ width: auto;
1398
+ background-color: inherit;
1399
+ padding: 0.1rem;
1400
+ margin-top: 0.1rem;
1401
+ margin-bottom: 0.1rem;
1402
+ position: relative;
1403
+ display: flex;
1404
+ flex-direction: row;
1405
+ border: 1px solid rgba(255, 255, 255, 0.5333333333);
1406
+ border-radius: 3px;
1407
+ box-sizing: border-box;
1408
+ margin-left: calc(var(--nodeinput_margin) * 1px);
1409
+ margin-right: calc(var(--nodeinput_margin) * 1px);
1410
+ align-items: center;
1411
+ }
1412
+
1413
+ .iovaluefield {
1414
+ flex-grow: 1;
1415
+ flex-shrink: 1;
1416
+ overflow: hidden;
1417
+ align-items: start;
1418
+ justify-content: start;
1419
+ display: flex;
1420
+ margin: 0.2rem;
1421
+ line-break: anywhere;
1422
+ }
1423
+
1424
+ .iovaluefield > input {
1425
+ width: 100%;
1426
+ }
1427
+
1428
+ .nodeinput > .iovaluefield {
1429
+ overflow: visible;
1430
+ }
1431
+
1432
+ .ioname {
1433
+ flex-grow: 1;
1434
+ flex-shrink: 1;
1435
+ color: inherit;
1436
+ margin: 0.2rem;
1437
+ overflow: hidden;
1438
+ min-width: 2rem;
1439
+ }
1440
+
1441
+ .nodeinput .ioname {
1442
+ text-align: left;
1443
+ }
1444
+
1445
+ .nodeoutput .ioname {
1446
+ text-align: right;
1447
+ }
1448
+
1449
+ .nodedatainput {
1450
+ height: 1.5rem;
1451
+ display: flex;
1452
+ align-items: center;
1453
+ }
1454
+
1455
+ input.nodedatainput:focus {
1456
+ outline: none;
1457
+ }
1458
+
1459
+ .nodedatastyledelement, input.nodedatainput.styledinput,
1460
+ .nodedatainput.styleddropdown {
1461
+ background-color: var(--node_header_color);
1462
+ font-size: 0.5rem;
1463
+ height: 1.5rem;
1464
+ }
1465
+
1466
+ .nodedatastyledelement:disabled, input.nodedatainput.styledinput:disabled,
1467
+ .nodedatainput.styleddropdown:disabled {
1468
+ opacity: 0.5;
1469
+ }
1470
+
1471
+ input.nodedatainput.styledinput,
1472
+ .nodedatainput.styleddropdown {
1473
+ width: 100%;
1474
+ }
1475
+
1476
+ .nodeprogress {
1477
+ width: 100%;
1478
+ height: 10px;
1479
+ transition: height 0.1s ease;
1480
+ overflow: hidden;
1481
+ }
1482
+
1483
+ .nodeprogress-text {
1484
+ text-align: center;
1485
+ color: white;
1486
+ mix-blend-mode: difference;
1487
+ }
1488
+
1489
+ .nodeprogress-bar {
1490
+ border-radius: 3px;
1491
+ }
1492
+
1493
+ .nodeprogress-progress {
1494
+ background-color: #b7f50c;
1495
+ border-radius: 3px;
1496
+ transition: width 0.3s ease;
1497
+ }
1498
+
1499
+ .styled-select__control {
1500
+ height: 100%;
1501
+ min-height: initial;
1502
+ min-width: 10px;
1503
+ }
1504
+
1505
+ .styled-select__menu-list {
1506
+ max-height: 200px;
1507
+ }
1508
+
1509
+ .styled-select__single-value {
1510
+ text-align: start;
1511
+ }
1512
+
1513
+ .styled-select__option {
1514
+ text-align: start;
1515
+ padding: 2px 5px;
1516
+ }
1517
+
1518
+ .styled-select__option:hover {
1519
+ cursor: pointer;
1520
+ }
1521
+
1522
+ .tablecontainer {
1523
+ overflow: auto;
1524
+ background-color: white;
1525
+ min-height: 20rem;
1526
+ }
1527
+
1528
+ .tableHead {
1529
+ color: var(--funheadercolor) !important;
1530
+ background-color: var(--funcnodesbackground1);
1531
+ font-weight: bold !important;
1532
+ }
1533
+
1534
+ .tableheadercolor {
1535
+ color: inherit !important;
1536
+ font-family: inherit !important;
1537
+ font-weight: inherit !important;
1538
+ }
1539
+
1540
+ .indexcol {
1541
+ background-color: var(--funcnodesbackground2);
1542
+ color: var(--funheadercolor) !important;
1543
+ font-family: inherit !important;
1544
+ font-weight: inherit !important;
1545
+ }
1546
+
1547
+ .colorspace {
1548
+ margin: 0.2rem;
1549
+ display: grid;
1550
+ grid-template-columns: auto minmax(0, 1fr);
1551
+ }
1552
+
1553
+ .colorspace_title {
1554
+ font-size: 0.7em;
1555
+ font-weight: bold;
1556
+ }
1557
+
1558
+ .colorspace label {
1559
+ font-size: 0.7rem;
1560
+ }
1561
+
1562
+ .colorspace input {
1563
+ font-size: 0.7rem;
1564
+ max-height: 0.7rem;
1565
+ }
1566
+
1567
+ .colorspace input[type=range] {
1568
+ width: 100%;
1569
+ margin: 0;
1570
+ padding: 0;
1571
+ -webkit-appearance: none;
1572
+ background-color: #666;
1573
+ height: 0.7rem;
1574
+ border-radius: 5px;
1575
+ }
1576
+
1577
+ .colorspace input[type=range]::-webkit-slider-thumb, .colorspace input[type=range]::-webkit-range-thumb, .colorspace input[type=range]::-moz-range-thumb {
1578
+ width: 0.7rem;
1579
+ height: 0.7rem;
1580
+ background-color: #cc1c1c;
1581
+ border-radius: 50%;
1582
+ cursor: pointer;
1583
+ }
1584
+
1585
+ s slideUpAndFade from {
1586
+ opacity: 0;
1587
+ transform: translateY(2px);
1588
+ }
1589
+
1590
+ s slideUpAndFade to {
1591
+ opacity: 1;
1592
+ transform: translateY(0);
1593
+ }
1594
+
1595
+ @keyframes slideRightAndFade {
1596
+ from {
1597
+ opacity: 0;
1598
+ transform: translateX(-2px);
1599
+ }
1600
+ to {
1601
+ opacity: 1;
1602
+ transform: translateX(0);
1603
+ }
1604
+ }
1605
+ @keyframes slideDownAndFade {
1606
+ from {
1607
+ opacity: 0;
1608
+ transform: translateY(-2px);
1609
+ }
1610
+ to {
1611
+ opacity: 1;
1612
+ transform: translateY(0);
1613
+ }
1614
+ }
1615
+ @keyframes slideLeftAndFade {
1616
+ from {
1617
+ opacity: 0;
1618
+ transform: translateX(2px);
1619
+ }
1620
+ to {
1621
+ opacity: 1;
1622
+ transform: translateX(0);
1623
+ }
1624
+ }
1625
+ .iotooltipcontent {
1626
+ background-color: #f9f9f9;
1627
+ border: 1px solid #ffffff;
1628
+ border-radius: 5px;
1629
+ padding: 10px;
1630
+ box-shadow: hsla(206, 22%, 7%, 0.35) 0px 10px 38px -10px, hsla(206, 22%, 7%, 0.2) 0px 10px 20px -15px;
1631
+ font-size: 10px;
1632
+ color: #333;
1633
+ max-width: 40vw;
1634
+ max-height: 40vh;
1635
+ cursor: default;
1636
+ overflow: auto;
1637
+ display: flex;
1638
+ flex-direction: column;
1639
+ }
1640
+
1641
+ .iotooltipcontent.fullsize {
1642
+ max-width: 100vw;
1643
+ max-height: 100vh;
1644
+ position: fixed;
1645
+ top: 0;
1646
+ }
1647
+
1648
+ .iotooltipcontent[data-state=delayed-open][data-side=top] {
1649
+ animation-name: slideDownAndFade;
1650
+ }
1651
+
1652
+ .iotooltipcontent[data-state=delayed-open][data-side=right] {
1653
+ animation-name: slideLeftAndFade;
1654
+ }
1655
+
1656
+ .iotooltipcontent[data-state=delayed-open][data-side=bottom] {
1657
+ animation-name: slideUpAndFade;
1658
+ }
1659
+
1660
+ .iotooltipcontent[data-state=delayed-open][data-side=left] {
1661
+ animation-name: slideRightAndFade;
1662
+ }
1663
+
1664
+ .iotooltip_container {
1665
+ display: flex;
1666
+ flex-direction: column;
1667
+ max-width: inherit;
1668
+ max-height: inherit;
1669
+ }
1670
+
1671
+ .iotooltipcontentarrow {
1672
+ fill: white;
1673
+ }
1674
+
1675
+ /* base styles */
1676
+ ._GzYRV {
1677
+ line-height: 1.2;
1678
+ white-space: pre-wrap;
1679
+ white-space: -moz-pre-wrap;
1680
+ white-space: -pre-wrap;
1681
+ white-space: -o-pre-wrap;
1682
+ word-wrap: break-word;
1683
+ }
1684
+
1685
+ ._3eOF8 {
1686
+ margin-right: 5px;
1687
+ font-weight: bold;
1688
+ }
1689
+
1690
+ ._3eOF8 + ._3eOF8 {
1691
+ margin-left: -5px;
1692
+ }
1693
+
1694
+ ._1MFti {
1695
+ cursor: pointer;
1696
+ }
1697
+
1698
+ ._f10Tu {
1699
+ font-size: 1.2em;
1700
+ margin-right: 5px;
1701
+ -webkit-user-select: none;
1702
+ -moz-user-select: none;
1703
+ user-select: none;
1704
+ }
1705
+
1706
+ ._1UmXx::after {
1707
+ content: "▸";
1708
+ }
1709
+
1710
+ ._1LId0::after {
1711
+ content: "▾";
1712
+ }
1713
+
1714
+ ._1pNG9 {
1715
+ margin-right: 5px;
1716
+ }
1717
+
1718
+ ._1pNG9::after {
1719
+ content: "...";
1720
+ font-size: 0.8em;
1721
+ }
1722
+
1723
+ ._2IvMF {
1724
+ background: #eee;
1725
+ }
1726
+
1727
+ ._2bkNM {
1728
+ margin: 0;
1729
+ padding: 0 10px;
1730
+ }
1731
+
1732
+ ._1BXBN {
1733
+ margin: 0;
1734
+ padding: 0;
1735
+ }
1736
+
1737
+ /* default light style */
1738
+ ._1MGIk {
1739
+ font-weight: 600;
1740
+ margin-right: 5px;
1741
+ color: #000000;
1742
+ }
1743
+
1744
+ ._3uHL6 {
1745
+ color: #000000;
1746
+ }
1747
+
1748
+ ._2T6PJ {
1749
+ color: #df113a;
1750
+ }
1751
+
1752
+ ._1Gho6 {
1753
+ color: #df113a;
1754
+ }
1755
+
1756
+ ._vGjyY {
1757
+ color: rgb(42, 63, 60);
1758
+ }
1759
+
1760
+ ._1bQdo {
1761
+ color: #0b75f5;
1762
+ }
1763
+
1764
+ ._3zQKs {
1765
+ color: rgb(70, 144, 56);
1766
+ }
1767
+
1768
+ ._1xvuR {
1769
+ color: #43413d;
1770
+ }
1771
+
1772
+ ._oLqym {
1773
+ color: #000000;
1774
+ }
1775
+
1776
+ ._2AXVT {
1777
+ color: #000000;
1778
+ }
1779
+
1780
+ ._2KJWg {
1781
+ color: #000000;
1782
+ }
1783
+
1784
+ /* default dark style */
1785
+ ._11RoI {
1786
+ background: rgb(0, 43, 54);
1787
+ }
1788
+
1789
+ ._17H2C {
1790
+ color: rgb(253, 246, 227);
1791
+ }
1792
+
1793
+ ._3QHg2 {
1794
+ color: rgb(253, 246, 227);
1795
+ }
1796
+
1797
+ ._3fDAz {
1798
+ color: rgb(253, 246, 227);
1799
+ }
1800
+
1801
+ ._2bSDX {
1802
+ font-weight: bolder;
1803
+ margin-right: 5px;
1804
+ color: rgb(253, 246, 227);
1805
+ }
1806
+
1807
+ ._gsbQL {
1808
+ color: rgb(253, 246, 227);
1809
+ }
1810
+
1811
+ ._LaAZe {
1812
+ color: rgb(129, 181, 172);
1813
+ }
1814
+
1815
+ ._GTKgm {
1816
+ color: rgb(129, 181, 172);
1817
+ }
1818
+
1819
+ ._Chy1W {
1820
+ color: rgb(203, 75, 22);
1821
+ }
1822
+
1823
+ ._2bveF {
1824
+ color: rgb(211, 54, 130);
1825
+ }
1826
+
1827
+ ._2vRm- {
1828
+ color: rgb(174, 129, 255);
1829
+ }
1830
+
1831
+ ._1prJR {
1832
+ color: rgb(38, 139, 210);
1833
+ }