@linkdlab/funcnodes_react_flow 0.3.17 → 0.3.19

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,1755 +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
- .dialogoverlay {
15
- background-color: rgba(0, 0, 0, 0.5);
16
- position: fixed;
17
- inset: 0;
18
- animation: overlayShow 150ms cubic-bezier(0.16, 1, 0.3, 1);
19
- z-index: 2000;
20
- }
21
-
22
- .dialogconent {
23
- background-color: var(--funcnodesbackground1);
24
- border-radius: 6px;
25
- box-shadow: var(--funheadercolor) 0px 10px 38px -10px, var(--funheadercolor) 0px 10px 20px -15px;
26
- position: fixed;
27
- top: 50%;
28
- left: 50%;
29
- transform: translate(-50%, -50%);
30
- width: 90vw;
31
- max-width: 85vw;
32
- max-height: 85vh;
33
- padding: 25px;
34
- animation: contentShow 150ms cubic-bezier(0.16, 1, 0.3, 1);
35
- color: var(--funcnodestextcolor1);
36
- border: 1px solid var(--funheadercolor);
37
- display: flex;
38
- flex-direction: column;
39
- z-index: 2001;
40
- }
41
-
42
- .dialogtitle {
43
- margin: 0;
44
- font-weight: 500;
45
- color: var(--funheadercolor);
46
- font-size: 17px;
47
- }
48
-
49
- .dialogdescription {
50
- margin: 10px 0 20px;
51
- font-size: 15px;
52
- line-height: 1.5;
53
- }
54
-
55
- .dialogclosebutton {
56
- border-radius: 100%;
57
- height: 25px;
58
- width: 25px;
59
- display: inline-flex;
60
- background-color: inherit;
61
- align-items: center;
62
- justify-content: center;
63
- color: var(--funheadercolor);
64
- position: absolute;
65
- top: 10px;
66
- right: 10px;
67
- border: none;
68
- }
69
- .dialogclosebutton:hover {
70
- background-color: var(--funheadercolor);
71
- color: var(--funcnodesbackground1);
72
- }
73
- .dialogclosebutton:active {
74
- background-color: var(--funheadercolor);
75
- color: var(--funcnodestextcolor1);
76
- }
77
-
78
- .dialogsendbutton {
79
- background-color: var(--funcnodesbackground1);
80
- color: var(--funheadercolor);
81
- border: 1px solid var(--funheadercolor);
82
- border-radius: 99rem;
83
- padding: 10px 20px;
84
- cursor: pointer;
85
- font-size: 15px;
86
- margin-top: 20px;
87
- }
88
- .dialogsendbutton:hover {
89
- background-color: var(--funheadercolor);
90
- color: var(--funcnodesbackground1);
91
- }
92
- .dialogsendbutton:active {
93
- background-color: var(--funheadercolor);
94
- color: var(--funcnodestextcolor1);
95
- }
96
-
97
- .dialogchildren {
98
- margin-top: 20px;
99
- overflow: auto;
100
- }
101
-
102
- :root {
103
- --expandtime: 0.3s;
104
- --libnodebgcolor: #48465f;
105
- --libnodebgcolor_hover: #6a6698;
106
- }
107
-
108
- .libcontainer {
109
- top: 0;
110
- left: 0;
111
- min-height: 100%;
112
- padding: 0.5rem;
113
- box-sizing: border-box;
114
- display: flex;
115
- flex-direction: column;
116
- border-radius: 0.5rem;
117
- }
118
-
119
- .library {
120
- display: flex;
121
- flex-direction: column;
122
- flex-grow: 1;
123
- overflow: hidden;
124
- width: 15rem;
125
- background-color: var(--funcnodesbackground2);
126
- border-radius: var(--containerboarderradius);
127
- padding: 0.5rem;
128
- }
129
- .library .libtitle {
130
- font-size: 1rem;
131
- font-weight: bold;
132
- color: var(--funheadercolor);
133
- }
134
- .library hr {
135
- width: 100%;
136
- }
137
- .library hr.hr_prominent {
138
- border: 0.5px solid var(--funheadercolor);
139
- }
140
-
141
- .addlib {
142
- background-color: var(--funcnodesbackground2);
143
- border-radius: var(--containerboarderradius);
144
- padding: 0.5rem;
145
- }
146
- .addlib button {
147
- background-color: var(--funcnodesbackground1);
148
- color: var(--funheadercolor);
149
- border: 0;
150
- border-radius: 0.5rem;
151
- padding: 0.5rem;
152
- cursor: pointer;
153
- font-size: 1rem;
154
- width: 100%;
155
- }
156
- .addlib button:hover {
157
- background-color: var(--funheadercolor);
158
- color: var(--funcnodesbackground1);
159
- }
160
- .addlib button:active {
161
- background-color: var(--funcnodesbackground1);
162
- color: var(--funcnodestextcolor1);
163
- }
164
- .addlib button[disabled] {
165
- background-color: var(--funcnodesbackground1);
166
- color: var(--funcnodestextcolor1);
167
- cursor: not-allowed;
168
- }
169
-
170
- .libfilter {
171
- display: flex;
172
- width: 100%;
173
- flex-direction: row;
174
- background-color: rgba(0, 0, 0, 0.1);
175
- padding: 0.2rem;
176
- }
177
- .libfilter:focus-within {
178
- border: 1px solid var(--funheadercolor);
179
- }
180
- .libfilter input {
181
- flex-grow: 1;
182
- background-color: transparent;
183
- color: var(--funcnodestextcolor1);
184
- border: 0;
185
- }
186
- .libfilter input:focus {
187
- outline: none;
188
- }
189
-
190
- .libnodecontainer {
191
- display: grid;
192
- transition: grid-template-rows var(--expandtime) ease-out;
193
- }
194
- .libnodecontainer.close {
195
- grid-template-rows: 0fr;
196
- }
197
- .libnodecontainer.open {
198
- grid-template-rows: 1fr;
199
- }
200
- .libnodecontainer_inner {
201
- transition: opacity var(--expandtime) ease-out;
202
- overflow: hidden;
203
- padding-left: 10px;
204
- }
205
- .libnodecontainer.close .libnodecontainer_inner {
206
- opacity: 0.2;
207
- }
208
- .libnodecontainer.open .libnodecontainer_inner {
209
- opacity: 1;
210
- }
211
-
212
- .shelfcontainer {
213
- padding-top: 0.2rem;
214
- padding-bottom: 0.2rem;
215
- display: flex;
216
- flex-direction: column;
217
- }
218
- .shelfcontainer .shelftitle {
219
- font-size: 0.8rem;
220
- color: var(--funheadercolor);
221
- opacity: 0.8;
222
- display: flex;
223
- max-width: 100%;
224
- }
225
- .shelfcontainer .shelftitle_text {
226
- flex-grow: 1;
227
- overflow: hidden;
228
- text-overflow: ellipsis;
229
- }
230
-
231
- .libnodeentry {
232
- border-radius: 10px;
233
- box-sizing: border-box;
234
- background-color: var(--libnodebgcolor);
235
- margin-bottom: 0.2rem;
236
- padding: 0.1rem;
237
- cursor: pointer;
238
- border: 1px solid var(--libnodebgcolor);
239
- transition: border 0.2s ease-in-out;
240
- font-size: 0.8rem;
241
- box-shadow: -0.2rem 0px rgb(0, 76, 255);
242
- }
243
- .libnodeentry:hover {
244
- background-color: var(--libnodebgcolor_hover);
245
- border: 1px solid rgb(0, 76, 255);
246
- }
247
-
248
- .expandicon {
249
- transform: rotate(0deg);
250
- transition: transform var(--expandtime) ease-out;
251
- }
252
- .expandicon.close {
253
- transform: rotate(180deg);
254
- }
255
-
256
- .addable-module {
257
- border: 1px solid #ddd;
258
- border-radius: 8px;
259
- padding: 16px;
260
- margin-bottom: 12px;
261
- background-color: #f9f9f9;
262
- transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
263
- margin-left: 20px;
264
- margin-right: 20px;
265
- }
266
- .addable-module:hover {
267
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
268
- transform: translateY(-2px);
269
- }
270
- .addable-module .module-name {
271
- font-size: 1.2rem;
272
- font-weight: bold;
273
- color: #333;
274
- margin-bottom: 8px;
275
- }
276
- .addable-module .module-description {
277
- font-size: 0.75rem;
278
- color: #666;
279
- margin-bottom: 8px;
280
- max-height: 200px;
281
- overflow: auto;
282
- }
283
- .addable-module .module-links {
284
- font-size: 0.9rem;
285
- color: #007bff;
286
- margin-bottom: 8px;
287
- text-decoration: underline;
288
- }
289
- .addable-module .add-button {
290
- background-color: #28a745;
291
- border: none;
292
- color: white;
293
- padding: 8px 12px;
294
- border-radius: 4px;
295
- cursor: pointer;
296
- font-size: 0.95rem;
297
- transition: background-color 0.2s ease;
298
- }
299
- .addable-module .add-button:hover {
300
- background-color: #218838;
301
- }
302
- .addable-module .remove-button {
303
- background-color: #dc3545;
304
- border: none;
305
- color: white;
306
- padding: 8px 12px;
307
- border-radius: 4px;
308
- cursor: pointer;
309
- font-size: 0.95rem;
310
- transition: background-color 0.2s ease;
311
- }
312
- .addable-module .remove-button:hover {
313
- background-color: #c82333;
314
- }
315
- .addable-module .update-button {
316
- background-color: #007bff;
317
- border: none;
318
- color: white;
319
- padding: 8px 12px;
320
- border-radius: 4px;
321
- cursor: pointer;
322
- font-size: 0.95rem;
323
- transition: background-color 0.2s ease;
324
- }
325
- .addable-module .update-button:hover {
326
- background-color: #0056b3;
327
- }
328
- .addable-module .update-button[disabled] {
329
- background-color: #6c757d;
330
- cursor: not-allowed;
331
- }
332
- .addable-module .toggle-description {
333
- background-color: transparent;
334
- border: none;
335
- color: #007bff;
336
- cursor: pointer;
337
- font-size: 0.8rem;
338
- margin-top: 4px;
339
- text-decoration: underline;
340
- padding: 0;
341
- transition: color 0.2s ease;
342
- }
343
- .addable-module .toggle-description:hover {
344
- color: #0056b3;
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
- .basicstyleelement, .headermenucontent, .styled-select__menu, .styleelement, .styledcheckbox, .styledinput, .styledbtn, .styleddropdown {
836
- background-color: var(--funcnodesbackground1);
837
- color: var(--funcnodestextcolor1);
838
- border-radius: 0.75rem;
839
- border: 1px solid var(--funheadercolor);
840
- }
841
-
842
- .styleelement, .styledcheckbox, .styledinput, .styledbtn, .styleddropdown {
843
- height: 2rem;
844
- padding-left: 0.5rem;
845
- padding-right: 0.5rem;
846
- }
847
- .styleelement:hover, .styledcheckbox:hover, .styledinput:hover, .styledbtn:hover, .styleddropdown:hover {
848
- background-color: var(--funcnodesbackground_light);
849
- }
850
- .styleelement:active, .styledcheckbox:active, .styledinput:active, .styledbtn:active, .styleddropdown:active {
851
- background-color: var(--funheadercolor);
852
- color: var(--funcnodesbackground1);
853
- }
854
- .styleelement:focus, .styledcheckbox:focus, .styledinput:focus, .styledbtn:focus, .styleddropdown:focus {
855
- outline: 1px solid var(--funheadercolor);
856
- }
857
-
858
- .styleddropdown {
859
- padding-right: 0.25rem;
860
- }
861
-
862
- .styledbtn {
863
- cursor: pointer;
864
- }
865
-
866
- .styledinput :focus {
867
- outline: none;
868
- }
869
-
870
- input[type=number]::-webkit-inner-spin-button,
871
- input[type=number]::-webkit-outer-spin-button {
872
- opacity: 0.5;
873
- background-color: tr;
874
- }
875
-
876
- .styledcheckbox {
877
- height: auto;
878
- accent-color: var(--funheadercolor);
879
- }
880
- .styledcheckbox:focus {
881
- outline: none;
882
- }
883
- .styledcheckbox:after {
884
- content: "";
885
- background-color: var(--funheadercolor);
886
- }
887
- .styledcheckbox.checked {
888
- background-color: var(--funheadercolor);
889
- color: var(--funcnodesbackground1);
890
- }
891
-
892
- .SliderContainer {
893
- display: flex;
894
- align-items: center;
895
- width: 100%;
896
- height: 100%;
897
- min-height: 20px;
898
- }
899
-
900
- .SliderRoot {
901
- position: relative;
902
- display: flex;
903
- align-items: center;
904
- user-select: none;
905
- touch-action: none;
906
- width: 100%;
907
- height: fit-content;
908
- }
909
-
910
- .SliderTrack {
911
- background-color: var(--funcnodesbackground1);
912
- position: relative;
913
- flex-grow: 1;
914
- border-radius: 9999px;
915
- height: 3px;
916
- }
917
-
918
- .SliderRange {
919
- position: absolute;
920
- background-color: var(--funheadercolor);
921
- border-radius: 9999px;
922
- height: 100%;
923
- }
924
-
925
- .SliderThumb {
926
- display: block;
927
- width: 10px;
928
- height: 10px;
929
- background-color: white;
930
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3333333333);
931
- border-radius: 10px;
932
- }
933
-
934
- .SliderThumb:hover {
935
- background-color: #999;
936
- }
937
-
938
- .SliderThumb:focus {
939
- outline: none;
940
- box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.3333333333);
941
- }
942
-
943
- .styled-select__control {
944
- height: 100%;
945
- min-height: initial;
946
- }
947
- .styled-select__menu-list {
948
- max-height: 200px !important;
949
- padding-left: 0;
950
- height: initial;
951
- }
952
- .styled-select__menu {
953
- margin-left: -0.5rem;
954
- }
955
- .styled-select__option:hover {
956
- background-color: var(--funcnodesbackground_light);
957
- }
958
-
959
- button {
960
- font-family: inherit;
961
- font-size: inherit;
962
- }
963
-
964
- .smooth-expand-expanded {
965
- position: absolute;
966
- top: 0;
967
- left: 0;
968
- width: 100vw;
969
- height: 100vh;
970
- }
971
-
972
- :root {
973
- --funheadercolor: #00d9ff;
974
- --funcnodesbackground1: hsl(243, 26%, 13%);
975
- --funcnodesbackground2: hsl(245, 22%, 22%);
976
- --funcnodesbackground_light: hsl(240, 22%, 38%);
977
- --containerboarderradius: 1rem;
978
- --funcnodestextcolor1: #ffffff;
979
- --funcnodes-z-index: 1000;
980
- }
981
-
982
- .funcnodescontainer {
983
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
984
- -webkit-font-smoothing: antialiased;
985
- -moz-osx-font-smoothing: grayscale;
986
- }
987
- .funcnodescontainer code {
988
- font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
989
- }
990
-
991
- .funcnodesreactflowcontainer {
992
- width: 100%;
993
- height: 100%;
994
- flex-grow: 1;
995
- z-index: var(--funcnodes-z-index);
996
- background-color: var(--funcnodesbackground1);
997
- position: relative;
998
- display: flex;
999
- flex-direction: column;
1000
- color: var(--funcnodestextcolor1);
1001
- }
1002
- .funcnodesreactflowcontainer * {
1003
- box-sizing: border-box;
1004
- }
1005
-
1006
- .funcnodesreactflowbody {
1007
- flex-grow: 1;
1008
- position: relative;
1009
- display: flex;
1010
- flex-direction: row;
1011
- overflow: hidden;
1012
- }
1013
-
1014
- .reactflowlayer {
1015
- flex-grow: 1;
1016
- position: relative;
1017
- overflow: hidden;
1018
- background-color: var(--funcnodesbackground2);
1019
- margin: 0.5rem;
1020
- border-radius: var(--containerboarderradius);
1021
- }
1022
-
1023
- .vscrollcontainer {
1024
- overflow-y: auto;
1025
- overflow-x: hidden;
1026
- flex-grow: 1;
1027
- padding: 0.5rem;
1028
- box-sizing: border-box;
1029
- }
1030
-
1031
- .workerselect {
1032
- max-width: 140px;
1033
- }
1034
-
1035
- .workerselectoption.selected {
1036
- color: var(--funcnodestextcolor1);
1037
- }
1038
- .workerselectoption.active {
1039
- color: green;
1040
- }
1041
- .workerselectoption.inactive {
1042
- color: red;
1043
- }
1044
-
1045
- .funcnodesflaotingmenu {
1046
- position: absolute;
1047
- right: 0;
1048
- padding: 10px;
1049
- z-index: 2;
1050
- display: flex;
1051
- flex-direction: row;
1052
- margin-right: 10px;
1053
- }
1054
-
1055
- .FuncnodesApp {
1056
- height: 100%;
1057
- width: 100%;
1058
- flex-grow: 1;
1059
- display: flex;
1060
- flex-direction: column;
1061
- }
1062
-
1063
- .funcnodesreactflowheader {
1064
- display: flex;
1065
- flex-direction: row;
1066
- height: 50px;
1067
- justify-content: flex-start;
1068
- position: relative;
1069
- top: 0;
1070
- left: 0;
1071
- z-index: 1;
1072
- }
1073
- .funcnodesreactflowheader .headerelement {
1074
- height: 100%;
1075
- display: flex;
1076
- align-items: center;
1077
- margin: 4px 4px 4px 4px;
1078
- position: relative;
1079
- white-space: nowrap;
1080
- }
1081
- .funcnodesreactflowheader .statusbar {
1082
- width: 250px;
1083
- height: 1.5rem;
1084
- background-color: var(--funcnodesbackground2);
1085
- display: inline-block;
1086
- margin: 2px 4px 0px 4px;
1087
- position: relative;
1088
- border-radius: 0.5rem;
1089
- overflow: hidden;
1090
- }
1091
- .funcnodesreactflowheader .statusbar-progressbar {
1092
- position: absolute;
1093
- top: 0;
1094
- left: 0;
1095
- width: 0;
1096
- height: 100%;
1097
- background-color: var(--funheadercolor);
1098
- display: inline-block;
1099
- }
1100
- .funcnodesreactflowheader .statusbar-message {
1101
- position: relative;
1102
- top: 0;
1103
- left: 0;
1104
- font-size: 0.8rem;
1105
- color: var(--funheadercolor);
1106
- mix-blend-mode: difference;
1107
- }
1108
-
1109
- .headermenucontent {
1110
- max-height: 90vh;
1111
- overflow: auto;
1112
- padding: 5px;
1113
- border-radius: 0.25rem;
1114
- }
1115
-
1116
- .headermenuitem {
1117
- padding: 0 5px;
1118
- }
1119
- .headermenuitem[data-highlighted] {
1120
- background-color: var(--funcnodesbackground_light);
1121
- }
1122
- .headermenuitem[data-state=open] {
1123
- background-color: var(--funcnodesbackground_light);
1124
- }
1125
- .headermenuitem[data-state=checked] {
1126
- background-color: var(--funcnodesbackground_light);
1127
- color: #fff;
1128
- }
1129
-
1130
- .nodesettings_container {
1131
- min-height: 100%;
1132
- display: flex;
1133
- flex-direction: row;
1134
- }
1135
- .nodesettings_expander {
1136
- min-height: 100%;
1137
- display: flex;
1138
- align-items: center;
1139
- justify-content: center;
1140
- cursor: pointer;
1141
- padding: 3px 3px;
1142
- }
1143
- .nodesettings_content {
1144
- display: flex;
1145
- flex-direction: column;
1146
- flex: 1;
1147
- padding: 0 5px;
1148
- overflow: auto;
1149
- transition: width 0.5s;
1150
- }
1151
- .nodesettings_content.expanded {
1152
- width: 250px;
1153
- }
1154
- .nodesettings_content.collapsed {
1155
- width: 0;
1156
- }
1157
- .nodesettings_section {
1158
- margin-bottom: 10px;
1159
- margin-left: 0.5rem;
1160
- }
1161
- .nodesettings_component {
1162
- margin-bottom: 0.5rem;
1163
- margin-left: 0.5rem;
1164
- margin-top: 0.5rem;
1165
- }
1166
-
1167
- :root {
1168
- --node_border_radius: 5px;
1169
- --handle_outer_radius: 4px;
1170
- --handle_inner_radius: 2px;
1171
- --handle_width: 10;
1172
- --handle_width_hover: 15;
1173
- --handle_overlap: 3;
1174
- --nodeinput_margin: 2;
1175
- --nodeio_shift: calc(var(--handle_overlap) - var(--nodeinput_margin));
1176
- --handle_source_color: hsl(190, 98%, 49%);
1177
- --handle_target_color: hsl(204, 98%, 51%);
1178
- --node_background: hsl(245, 51%, 42%);
1179
- --node_header_color: hsl(245, 51%, 22%);
1180
- }
1181
-
1182
- .react-flow__node {
1183
- padding: 0;
1184
- border-radius: var(--node_border_radius);
1185
- background-color: var(--node_background);
1186
- display: flex;
1187
- flex-direction: column;
1188
- color: #f0f8ff;
1189
- box-sizing: content-box;
1190
- transform: -50%, -50%;
1191
- border: 2px solid rgba(255, 255, 255, 0);
1192
- font-size: 0.5rem;
1193
- width: auto;
1194
- max-width: 200px;
1195
- min-width: 100px;
1196
- background-clip: content-box;
1197
- }
1198
- .react-flow__node.selected {
1199
- border-color: rgba(255, 255, 255, 0.6);
1200
- }
1201
- .react-flow__node * {
1202
- box-sizing: border-box;
1203
- }
1204
- .react-flow__handle {
1205
- height: calc(100% - 4px);
1206
- border-radius: 0;
1207
- width: calc(var(--handle_width) * 1px);
1208
- transition: left 0.2s ease-in-out, right 0.2s ease-in-out, width 0.2s ease-in-out;
1209
- }
1210
- .react-flow__handle:hover {
1211
- width: calc(var(--handle_width_hover) * 1px);
1212
- }
1213
- .react-flow__handle.source {
1214
- background-color: var(--handle_source_color);
1215
- }
1216
- .react-flow__handle.target {
1217
- background-color: var(--handle_target_color);
1218
- }
1219
- .react-flow__handle-left {
1220
- border-radius: var(--handle_outer_radius) var(--handle_inner_radius) var(--handle_inner_radius) var(--handle_outer_radius);
1221
- left: calc((var(--nodeio_shift) - var(--handle_width)) * 1px);
1222
- }
1223
- .react-flow__handle-left:hover {
1224
- left: calc((var(--nodeio_shift) - var(--handle_width_hover)) * 1px);
1225
- }
1226
- .react-flow__handle-right {
1227
- border-radius: var(--handle_inner_radius) var(--handle_outer_radius) var(--handle_outer_radius) var(--handle_inner_radius);
1228
- right: calc((var(--nodeio_shift) - var(--handle_width)) * 1px);
1229
- }
1230
- .react-flow__handle-right:hover {
1231
- right: calc((var(--nodeio_shift) - var(--handle_width_hover)) * 1px);
1232
- }
1233
- .react-flow__handle-top {
1234
- border-radius: var(--handle_outer_radius) var(--handle_outer_radius) var(--handle_inner_radius) var(--handle_inner_radius);
1235
- }
1236
- .react-flow__handle-bottom {
1237
- border-radius: var(--handle_inner_radius) var(--handle_inner_radius) var(--handle_outer_radius) var(--handle_outer_radius);
1238
- }
1239
-
1240
- .innernode {
1241
- width: 100%;
1242
- height: 100%;
1243
- flex-direction: column;
1244
- display: flex;
1245
- box-sizing: border-box;
1246
- }
1247
- .innernode.intrigger .nodeheader {
1248
- background-color: #abb408;
1249
- }
1250
- .innernode.error .nodeheader {
1251
- background-color: #ff0000;
1252
- }
1253
-
1254
- .nodeheader {
1255
- box-sizing: border-box;
1256
- background-color: var(--node_header_color);
1257
- width: 100%;
1258
- padding: 0.1rem;
1259
- border-radius: var(--node_border_radius) var(--node_border_radius) 0 0;
1260
- display: flex; /* Use flex layout */
1261
- align-items: center; /* Align items vertically in the center */
1262
- justify-content: space-between; /* Distribute space between items */
1263
- }
1264
- .nodeheader_element {
1265
- display: flex; /* Enable flex within each child to center content */
1266
- align-items: center; /* Align items vertically in the center */
1267
- }
1268
- .nodeheader_title {
1269
- flex-grow: 1; /* Allow the text div to grow and fill available space */
1270
- margin: 0 10px; /* Add some space around the text for aesthetics */
1271
- white-space: nowrap; /* Prevent wrapping */
1272
- overflow: hidden; /* Hide overflow */
1273
- text-overflow: ellipsis; /* Add ellipsis to overflow */
1274
- justify-content: center; /* Center the text horizontally */
1275
- }
1276
- .nodeheader_title_text {
1277
- overflow: hidden;
1278
- text-overflow: ellipsis;
1279
- white-space: nowrap;
1280
- max-width: 100%; /* Ensure it does not overflow the parent */
1281
- }
1282
- .nodeheader .triggerbutton {
1283
- cursor: pointer;
1284
- }
1285
- .nodeheader .triggerbutton:hover {
1286
- color: #0cc3f5;
1287
- }
1288
- .nodeheader .triggerbutton:active {
1289
- color: #075d74;
1290
- }
1291
-
1292
- .nodename_input {
1293
- border: 1px solid #000000;
1294
- border-radius: 2px;
1295
- background: none;
1296
- color: white;
1297
- text-align: center;
1298
- font-size: inherit;
1299
- margin: 2px;
1300
- box-sizing: border-box;
1301
- }
1302
-
1303
- .nodefooter {
1304
- background-color: #4e0ba5;
1305
- width: 100%;
1306
- padding: 0.1rem;
1307
- border-radius: 0 0 var(--node_border_radius) var(--node_border_radius);
1308
- }
1309
- .nodefooter:empty {
1310
- display: none;
1311
- }
1312
- .nodefooter .nodeerror {
1313
- border: 1px solid #ff0000;
1314
- border-radius: 2px;
1315
- padding: 0.25rem;
1316
- background-color: rgba(255, 0, 0, 0.4588235294);
1317
- }
1318
-
1319
- .nodebody {
1320
- flex-grow: 1;
1321
- }
1322
-
1323
- .nodedatabody {
1324
- overflow: auto;
1325
- }
1326
-
1327
- .noderesizecontrol {
1328
- background: transparent !important;
1329
- border: none !important;
1330
- font-size: 0.5rem;
1331
- }
1332
-
1333
- .noderesizeicon {
1334
- position: absolute;
1335
- bottom: 4px;
1336
- right: 4px;
1337
- font-size: 0.5rem;
1338
- }
1339
-
1340
- .nodeio, .nodeoutput, .nodeinput {
1341
- width: auto;
1342
- background-color: inherit;
1343
- padding: 0.1rem;
1344
- margin-top: 0.1rem;
1345
- margin-bottom: 0.1rem;
1346
- position: relative;
1347
- display: flex;
1348
- flex-direction: row;
1349
- border: 1px solid rgba(255, 255, 255, 0.5333333333);
1350
- border-radius: 3px;
1351
- box-sizing: border-box;
1352
- margin-left: calc(var(--nodeinput_margin) * 1px);
1353
- margin-right: calc(var(--nodeinput_margin) * 1px);
1354
- align-items: center;
1355
- }
1356
-
1357
- .iovaluefield {
1358
- flex-grow: 1;
1359
- flex-shrink: 1;
1360
- overflow: hidden;
1361
- align-items: start;
1362
- justify-content: start;
1363
- display: flex;
1364
- margin: 0.2rem;
1365
- line-break: anywhere;
1366
- }
1367
- .iovaluefield > input {
1368
- width: 100%;
1369
- }
1370
-
1371
- .nodeinput > .iovaluefield {
1372
- overflow: visible;
1373
- }
1374
-
1375
- .ioname {
1376
- flex-grow: 1;
1377
- flex-shrink: 1;
1378
- color: inherit;
1379
- margin: 0.2rem;
1380
- overflow: hidden;
1381
- min-width: 2rem;
1382
- }
1383
- .nodeinput .ioname {
1384
- text-align: left;
1385
- }
1386
- .nodeoutput .ioname {
1387
- text-align: right;
1388
- }
1389
-
1390
- .nodedatainput {
1391
- height: 1.5rem;
1392
- display: flex;
1393
- align-items: center;
1394
- }
1395
-
1396
- input.nodedatainput:focus {
1397
- outline: none;
1398
- }
1399
-
1400
- .nodedatastyledelement, input.nodedatainput.styledinput,
1401
- .nodedatainput.styleddropdown {
1402
- background-color: var(--node_header_color);
1403
- font-size: 0.5rem;
1404
- height: 1.5rem;
1405
- }
1406
- .nodedatastyledelement:disabled, input.nodedatainput.styledinput:disabled,
1407
- .nodedatainput.styleddropdown:disabled {
1408
- opacity: 0.5;
1409
- }
1410
-
1411
- input.nodedatainput.styledinput,
1412
- .nodedatainput.styleddropdown {
1413
- width: 100%;
1414
- }
1415
-
1416
- .nodeprogress {
1417
- width: 100%;
1418
- height: 10px;
1419
- transition: height 0.1s ease;
1420
- overflow: hidden;
1421
- }
1422
- .nodeprogress-text {
1423
- text-align: center;
1424
- color: white;
1425
- mix-blend-mode: difference;
1426
- }
1427
- .nodeprogress-bar {
1428
- border-radius: 3px;
1429
- }
1430
- .nodeprogress-progress {
1431
- background-color: #b7f50c;
1432
- border-radius: 3px;
1433
- transition: width 0.3s ease;
1434
- }
1435
-
1436
- .styled-select__control {
1437
- height: 100%;
1438
- min-height: initial;
1439
- min-width: 10px;
1440
- }
1441
- .styled-select__menu-list {
1442
- max-height: 200px;
1443
- }
1444
- .styled-select__single-value {
1445
- text-align: start;
1446
- }
1447
- .styled-select__option {
1448
- text-align: start;
1449
- padding: 2px 5px;
1450
- }
1451
- .styled-select__option:hover {
1452
- cursor: pointer;
1453
- }
1454
-
1455
- .tablecontainer {
1456
- overflow: auto;
1457
- background-color: white;
1458
- min-height: 20rem;
1459
- }
1460
-
1461
- .tableHead {
1462
- color: var(--funheadercolor) !important;
1463
- background-color: var(--funcnodesbackground1);
1464
- font-weight: bold !important;
1465
- }
1466
-
1467
- .tableheadercolor {
1468
- color: inherit !important;
1469
- font-family: inherit !important;
1470
- font-weight: inherit !important;
1471
- }
1472
-
1473
- .indexcol {
1474
- background-color: var(--funcnodesbackground2);
1475
- color: var(--funheadercolor) !important;
1476
- font-family: inherit !important;
1477
- font-weight: inherit !important;
1478
- }
1479
-
1480
- .colorspace {
1481
- margin: 0.2rem;
1482
- display: grid;
1483
- grid-template-columns: auto minmax(0, 1fr);
1484
- }
1485
- .colorspace_title {
1486
- font-size: 0.7em;
1487
- font-weight: bold;
1488
- }
1489
- .colorspace label {
1490
- font-size: 0.7rem;
1491
- }
1492
- .colorspace input {
1493
- font-size: 0.7rem;
1494
- max-height: 0.7rem;
1495
- }
1496
- .colorspace input[type=range] {
1497
- width: 100%;
1498
- margin: 0;
1499
- padding: 0;
1500
- -webkit-appearance: none;
1501
- background-color: #666;
1502
- height: 0.7rem;
1503
- border-radius: 5px;
1504
- }
1505
- .colorspace input[type=range]::-webkit-slider-thumb, .colorspace input[type=range]::-webkit-range-thumb, .colorspace input[type=range]::-moz-range-thumb {
1506
- width: 0.7rem;
1507
- height: 0.7rem;
1508
- background-color: #cc1c1c;
1509
- border-radius: 50%;
1510
- cursor: pointer;
1511
- }
1512
-
1513
- s slideUpAndFade from {
1514
- opacity: 0;
1515
- transform: translateY(2px);
1516
- }
1517
- s slideUpAndFade to {
1518
- opacity: 1;
1519
- transform: translateY(0);
1520
- }
1521
-
1522
- @keyframes slideRightAndFade {
1523
- from {
1524
- opacity: 0;
1525
- transform: translateX(-2px);
1526
- }
1527
- to {
1528
- opacity: 1;
1529
- transform: translateX(0);
1530
- }
1531
- }
1532
- @keyframes slideDownAndFade {
1533
- from {
1534
- opacity: 0;
1535
- transform: translateY(-2px);
1536
- }
1537
- to {
1538
- opacity: 1;
1539
- transform: translateY(0);
1540
- }
1541
- }
1542
- @keyframes slideLeftAndFade {
1543
- from {
1544
- opacity: 0;
1545
- transform: translateX(2px);
1546
- }
1547
- to {
1548
- opacity: 1;
1549
- transform: translateX(0);
1550
- }
1551
- }
1552
- .iotooltipcontent {
1553
- background-color: #f9f9f9;
1554
- border: 1px solid #ffffff;
1555
- border-radius: 5px;
1556
- padding: 10px;
1557
- box-shadow: hsla(206, 22%, 7%, 0.35) 0px 10px 38px -10px, hsla(206, 22%, 7%, 0.2) 0px 10px 20px -15px;
1558
- font-size: 10px;
1559
- color: #333;
1560
- max-width: 40vw;
1561
- max-height: 40vh;
1562
- cursor: default;
1563
- overflow: auto;
1564
- display: flex;
1565
- flex-direction: column;
1566
- }
1567
- .iotooltipcontent.fullsize {
1568
- max-width: 100vw;
1569
- max-height: 100vh;
1570
- position: fixed;
1571
- top: 0;
1572
- }
1573
- .iotooltipcontent[data-state=delayed-open][data-side=top] {
1574
- animation-name: slideDownAndFade;
1575
- }
1576
- .iotooltipcontent[data-state=delayed-open][data-side=right] {
1577
- animation-name: slideLeftAndFade;
1578
- }
1579
- .iotooltipcontent[data-state=delayed-open][data-side=bottom] {
1580
- animation-name: slideUpAndFade;
1581
- }
1582
- .iotooltipcontent[data-state=delayed-open][data-side=left] {
1583
- animation-name: slideRightAndFade;
1584
- }
1585
-
1586
- .iotooltip_container {
1587
- display: flex;
1588
- flex-direction: column;
1589
- max-width: inherit;
1590
- max-height: inherit;
1591
- }
1592
-
1593
- .iotooltipcontentarrow {
1594
- fill: white;
1595
- }
1596
-
1597
- /* base styles */
1598
- ._GzYRV {
1599
- line-height: 1.2;
1600
- white-space: pre-wrap;
1601
- white-space: -moz-pre-wrap;
1602
- white-space: -pre-wrap;
1603
- white-space: -o-pre-wrap;
1604
- word-wrap: break-word;
1605
- }
1606
-
1607
- ._3eOF8 {
1608
- margin-right: 5px;
1609
- font-weight: bold;
1610
- }
1611
-
1612
- ._3eOF8 + ._3eOF8 {
1613
- margin-left: -5px;
1614
- }
1615
-
1616
- ._1MFti {
1617
- cursor: pointer;
1618
- }
1619
-
1620
- ._f10Tu {
1621
- font-size: 1.2em;
1622
- margin-right: 5px;
1623
- -webkit-user-select: none;
1624
- -moz-user-select: none;
1625
- user-select: none;
1626
- }
1627
-
1628
- ._1UmXx::after {
1629
- content: "▸";
1630
- }
1631
-
1632
- ._1LId0::after {
1633
- content: "▾";
1634
- }
1635
-
1636
- ._1pNG9 {
1637
- margin-right: 5px;
1638
- }
1639
-
1640
- ._1pNG9::after {
1641
- content: "...";
1642
- font-size: 0.8em;
1643
- }
1644
-
1645
- ._2IvMF {
1646
- background: #eee;
1647
- }
1648
-
1649
- ._2bkNM {
1650
- margin: 0;
1651
- padding: 0 10px;
1652
- }
1653
-
1654
- ._1BXBN {
1655
- margin: 0;
1656
- padding: 0;
1657
- }
1658
-
1659
- /* default light style */
1660
- ._1MGIk {
1661
- font-weight: 600;
1662
- margin-right: 5px;
1663
- color: #000000;
1664
- }
1665
-
1666
- ._3uHL6 {
1667
- color: #000000;
1668
- }
1669
-
1670
- ._2T6PJ {
1671
- color: #df113a;
1672
- }
1673
-
1674
- ._1Gho6 {
1675
- color: #df113a;
1676
- }
1677
-
1678
- ._vGjyY {
1679
- color: rgb(42, 63, 60);
1680
- }
1681
-
1682
- ._1bQdo {
1683
- color: #0b75f5;
1684
- }
1685
-
1686
- ._3zQKs {
1687
- color: rgb(70, 144, 56);
1688
- }
1689
-
1690
- ._1xvuR {
1691
- color: #43413d;
1692
- }
1693
-
1694
- ._oLqym {
1695
- color: #000000;
1696
- }
1697
-
1698
- ._2AXVT {
1699
- color: #000000;
1700
- }
1701
-
1702
- ._2KJWg {
1703
- color: #000000;
1704
- }
1705
-
1706
- /* default dark style */
1707
- ._11RoI {
1708
- background: rgb(0, 43, 54);
1709
- }
1710
-
1711
- ._17H2C {
1712
- color: rgb(253, 246, 227);
1713
- }
1714
-
1715
- ._3QHg2 {
1716
- color: rgb(253, 246, 227);
1717
- }
1718
-
1719
- ._3fDAz {
1720
- color: rgb(253, 246, 227);
1721
- }
1722
-
1723
- ._2bSDX {
1724
- font-weight: bolder;
1725
- margin-right: 5px;
1726
- color: rgb(253, 246, 227);
1727
- }
1728
-
1729
- ._gsbQL {
1730
- color: rgb(253, 246, 227);
1731
- }
1732
-
1733
- ._LaAZe {
1734
- color: rgb(129, 181, 172);
1735
- }
1736
-
1737
- ._GTKgm {
1738
- color: rgb(129, 181, 172);
1739
- }
1740
-
1741
- ._Chy1W {
1742
- color: rgb(203, 75, 22);
1743
- }
1744
-
1745
- ._2bveF {
1746
- color: rgb(211, 54, 130);
1747
- }
1748
-
1749
- ._2vRm- {
1750
- color: rgb(174, 129, 255);
1751
- }
1752
-
1753
- ._1prJR {
1754
- color: rgb(38, 139, 210);
1755
- }