@linkdlab/funcnodes_react_flow 0.3.16 → 0.3.18

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