funcnodes-react-flow 0.3.8__py3-none-any.whl → 0.3.10__py3-none-any.whl
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.
- funcnodes_react_flow/static/css/style.css +1744 -40
- funcnodes_react_flow/static/index.html +56 -1
- funcnodes_react_flow/static/js/index.js +106 -0
- funcnodes_react_flow/static/js/index.js.map +1 -0
- {funcnodes_react_flow-0.3.8.dist-info → funcnodes_react_flow-0.3.10.dist-info}/METADATA +1 -1
- {funcnodes_react_flow-0.3.8.dist-info → funcnodes_react_flow-0.3.10.dist-info}/RECORD +9 -11
- {funcnodes_react_flow-0.3.8.dist-info → funcnodes_react_flow-0.3.10.dist-info}/WHEEL +1 -1
- funcnodes_react_flow/static/js/830.js +0 -2
- funcnodes_react_flow/static/js/830.js.LICENSE.txt +0 -29
- funcnodes_react_flow/static/js/main.js +0 -2
- funcnodes_react_flow/static/js/main.js.LICENSE.txt +0 -3183
- {funcnodes_react_flow-0.3.8.dist-info → funcnodes_react_flow-0.3.10.dist-info}/LICENSE +0 -0
- {funcnodes_react_flow-0.3.8.dist-info → funcnodes_react_flow-0.3.10.dist-info}/entry_points.txt +0 -0
@@ -1,40 +1,1744 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
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
|
+
.smooth-expand-expanded {
|
836
|
+
position: absolute;
|
837
|
+
top: 0;
|
838
|
+
left: 0;
|
839
|
+
width: 100vw;
|
840
|
+
height: 100vh;
|
841
|
+
}
|
842
|
+
|
843
|
+
.basicstyleelement, .headermenucontent, .styled-select__menu, .styleelement, .styledcheckbox, .styledinput, .styledbtn, .styleddropdown {
|
844
|
+
background-color: var(--funcnodesbackground1);
|
845
|
+
color: var(--funcnodestextcolor1);
|
846
|
+
border-radius: 0.75rem;
|
847
|
+
border: 1px solid var(--funheadercolor);
|
848
|
+
}
|
849
|
+
|
850
|
+
.styleelement, .styledcheckbox, .styledinput, .styledbtn, .styleddropdown {
|
851
|
+
height: 2rem;
|
852
|
+
padding-left: 0.5rem;
|
853
|
+
padding-right: 0.5rem;
|
854
|
+
}
|
855
|
+
.styleelement:hover, .styledcheckbox:hover, .styledinput:hover, .styledbtn:hover, .styleddropdown:hover {
|
856
|
+
background-color: var(--funcnodesbackground_light);
|
857
|
+
}
|
858
|
+
.styleelement:active, .styledcheckbox:active, .styledinput:active, .styledbtn:active, .styleddropdown:active {
|
859
|
+
background-color: var(--funheadercolor);
|
860
|
+
color: var(--funcnodesbackground1);
|
861
|
+
}
|
862
|
+
.styleelement:focus, .styledcheckbox:focus, .styledinput:focus, .styledbtn:focus, .styleddropdown:focus {
|
863
|
+
outline: 1px solid var(--funheadercolor);
|
864
|
+
}
|
865
|
+
|
866
|
+
.styleddropdown {
|
867
|
+
padding-right: 0.25rem;
|
868
|
+
}
|
869
|
+
|
870
|
+
.styledbtn {
|
871
|
+
cursor: pointer;
|
872
|
+
}
|
873
|
+
|
874
|
+
.styledinput :focus {
|
875
|
+
outline: none;
|
876
|
+
}
|
877
|
+
|
878
|
+
input[type=number]::-webkit-inner-spin-button,
|
879
|
+
input[type=number]::-webkit-outer-spin-button {
|
880
|
+
opacity: 0.5;
|
881
|
+
background-color: tr;
|
882
|
+
}
|
883
|
+
|
884
|
+
.styledcheckbox {
|
885
|
+
height: auto;
|
886
|
+
accent-color: var(--funheadercolor);
|
887
|
+
}
|
888
|
+
.styledcheckbox:focus {
|
889
|
+
outline: none;
|
890
|
+
}
|
891
|
+
.styledcheckbox:after {
|
892
|
+
content: "";
|
893
|
+
background-color: var(--funheadercolor);
|
894
|
+
}
|
895
|
+
.styledcheckbox.checked {
|
896
|
+
background-color: var(--funheadercolor);
|
897
|
+
color: var(--funcnodesbackground1);
|
898
|
+
}
|
899
|
+
|
900
|
+
.SliderContainer {
|
901
|
+
display: flex;
|
902
|
+
align-items: center;
|
903
|
+
width: 100%;
|
904
|
+
height: 100%;
|
905
|
+
min-height: 20px;
|
906
|
+
}
|
907
|
+
|
908
|
+
.SliderRoot {
|
909
|
+
position: relative;
|
910
|
+
display: flex;
|
911
|
+
align-items: center;
|
912
|
+
user-select: none;
|
913
|
+
touch-action: none;
|
914
|
+
width: 100%;
|
915
|
+
height: fit-content;
|
916
|
+
}
|
917
|
+
|
918
|
+
.SliderTrack {
|
919
|
+
background-color: var(--funcnodesbackground1);
|
920
|
+
position: relative;
|
921
|
+
flex-grow: 1;
|
922
|
+
border-radius: 9999px;
|
923
|
+
height: 3px;
|
924
|
+
}
|
925
|
+
|
926
|
+
.SliderRange {
|
927
|
+
position: absolute;
|
928
|
+
background-color: var(--funheadercolor);
|
929
|
+
border-radius: 9999px;
|
930
|
+
height: 100%;
|
931
|
+
}
|
932
|
+
|
933
|
+
.SliderThumb {
|
934
|
+
display: block;
|
935
|
+
width: 10px;
|
936
|
+
height: 10px;
|
937
|
+
background-color: white;
|
938
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3333333333);
|
939
|
+
border-radius: 10px;
|
940
|
+
}
|
941
|
+
|
942
|
+
.SliderThumb:hover {
|
943
|
+
background-color: #999;
|
944
|
+
}
|
945
|
+
|
946
|
+
.SliderThumb:focus {
|
947
|
+
outline: none;
|
948
|
+
box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.3333333333);
|
949
|
+
}
|
950
|
+
|
951
|
+
.styled-select__control {
|
952
|
+
height: 100%;
|
953
|
+
min-height: initial;
|
954
|
+
}
|
955
|
+
.styled-select__menu-list {
|
956
|
+
max-height: 200px !important;
|
957
|
+
padding-left: 0;
|
958
|
+
height: initial;
|
959
|
+
}
|
960
|
+
.styled-select__menu {
|
961
|
+
margin-left: -0.5rem;
|
962
|
+
}
|
963
|
+
.styled-select__option:hover {
|
964
|
+
background-color: var(--funcnodesbackground_light);
|
965
|
+
}
|
966
|
+
|
967
|
+
button {
|
968
|
+
font-family: inherit;
|
969
|
+
font-size: inherit;
|
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
|
+
}
|
980
|
+
|
981
|
+
.funcnodescontainer {
|
982
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
983
|
+
-webkit-font-smoothing: antialiased;
|
984
|
+
-moz-osx-font-smoothing: grayscale;
|
985
|
+
}
|
986
|
+
.funcnodescontainer code {
|
987
|
+
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
|
988
|
+
}
|
989
|
+
|
990
|
+
.funcnodesreactflowcontainer {
|
991
|
+
width: 100%;
|
992
|
+
height: 100%;
|
993
|
+
background-color: var(--funcnodesbackground1);
|
994
|
+
position: relative;
|
995
|
+
display: flex;
|
996
|
+
flex-direction: column;
|
997
|
+
color: var(--funcnodestextcolor1);
|
998
|
+
}
|
999
|
+
.funcnodesreactflowcontainer * {
|
1000
|
+
box-sizing: border-box;
|
1001
|
+
}
|
1002
|
+
|
1003
|
+
.funcnodesreactflowbody {
|
1004
|
+
flex-grow: 1;
|
1005
|
+
position: relative;
|
1006
|
+
display: flex;
|
1007
|
+
flex-direction: row;
|
1008
|
+
overflow: hidden;
|
1009
|
+
}
|
1010
|
+
|
1011
|
+
.reactflowlayer {
|
1012
|
+
flex-grow: 1;
|
1013
|
+
position: relative;
|
1014
|
+
overflow: hidden;
|
1015
|
+
background-color: var(--funcnodesbackground2);
|
1016
|
+
margin: 0.5rem;
|
1017
|
+
border-radius: var(--containerboarderradius);
|
1018
|
+
}
|
1019
|
+
|
1020
|
+
.vscrollcontainer {
|
1021
|
+
overflow-y: auto;
|
1022
|
+
overflow-x: hidden;
|
1023
|
+
flex-grow: 1;
|
1024
|
+
padding: 0.5rem;
|
1025
|
+
box-sizing: border-box;
|
1026
|
+
}
|
1027
|
+
|
1028
|
+
.workerselect {
|
1029
|
+
max-width: 140px;
|
1030
|
+
}
|
1031
|
+
|
1032
|
+
.workerselectoption.selected {
|
1033
|
+
color: var(--funcnodestextcolor1);
|
1034
|
+
}
|
1035
|
+
.workerselectoption.active {
|
1036
|
+
color: green;
|
1037
|
+
}
|
1038
|
+
.workerselectoption.inactive {
|
1039
|
+
color: red;
|
1040
|
+
}
|
1041
|
+
|
1042
|
+
.funcnodesflaotingmenu {
|
1043
|
+
position: absolute;
|
1044
|
+
right: 0;
|
1045
|
+
padding: 10px;
|
1046
|
+
z-index: 1001;
|
1047
|
+
display: flex;
|
1048
|
+
flex-direction: row;
|
1049
|
+
margin-right: 10px;
|
1050
|
+
}
|
1051
|
+
|
1052
|
+
.funcnodesreactflowheader {
|
1053
|
+
display: flex;
|
1054
|
+
flex-direction: row;
|
1055
|
+
height: 50px;
|
1056
|
+
justify-content: flex-start;
|
1057
|
+
position: relative;
|
1058
|
+
top: 0;
|
1059
|
+
left: 0;
|
1060
|
+
z-index: 1000;
|
1061
|
+
}
|
1062
|
+
.funcnodesreactflowheader .headerelement {
|
1063
|
+
height: 100%;
|
1064
|
+
display: flex;
|
1065
|
+
align-items: center;
|
1066
|
+
margin: 4px 4px 4px 4px;
|
1067
|
+
position: relative;
|
1068
|
+
white-space: nowrap;
|
1069
|
+
}
|
1070
|
+
.funcnodesreactflowheader .statusbar {
|
1071
|
+
width: 250px;
|
1072
|
+
height: 1.5rem;
|
1073
|
+
background-color: var(--funcnodesbackground2);
|
1074
|
+
display: inline-block;
|
1075
|
+
margin: 2px 4px 0px 4px;
|
1076
|
+
position: relative;
|
1077
|
+
border-radius: 0.5rem;
|
1078
|
+
overflow: hidden;
|
1079
|
+
}
|
1080
|
+
.funcnodesreactflowheader .statusbar-progressbar {
|
1081
|
+
position: absolute;
|
1082
|
+
top: 0;
|
1083
|
+
left: 0;
|
1084
|
+
width: 0;
|
1085
|
+
height: 100%;
|
1086
|
+
background-color: var(--funheadercolor);
|
1087
|
+
display: inline-block;
|
1088
|
+
}
|
1089
|
+
.funcnodesreactflowheader .statusbar-message {
|
1090
|
+
position: relative;
|
1091
|
+
top: 0;
|
1092
|
+
left: 0;
|
1093
|
+
font-size: 0.8rem;
|
1094
|
+
color: var(--funheadercolor);
|
1095
|
+
mix-blend-mode: difference;
|
1096
|
+
}
|
1097
|
+
|
1098
|
+
.headermenucontent {
|
1099
|
+
max-height: 90vh;
|
1100
|
+
overflow: auto;
|
1101
|
+
padding: 5px;
|
1102
|
+
border-radius: 0.25rem;
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
.headermenuitem {
|
1106
|
+
padding: 0 5px;
|
1107
|
+
}
|
1108
|
+
.headermenuitem[data-highlighted] {
|
1109
|
+
background-color: var(--funcnodesbackground_light);
|
1110
|
+
}
|
1111
|
+
.headermenuitem[data-state=open] {
|
1112
|
+
background-color: var(--funcnodesbackground_light);
|
1113
|
+
}
|
1114
|
+
.headermenuitem[data-state=checked] {
|
1115
|
+
background-color: var(--funcnodesbackground_light);
|
1116
|
+
color: #fff;
|
1117
|
+
}
|
1118
|
+
|
1119
|
+
.nodesettings_container {
|
1120
|
+
height: 100%;
|
1121
|
+
display: flex;
|
1122
|
+
flex-direction: row;
|
1123
|
+
}
|
1124
|
+
.nodesettings_expander {
|
1125
|
+
height: 100%;
|
1126
|
+
display: flex;
|
1127
|
+
align-items: center;
|
1128
|
+
justify-content: center;
|
1129
|
+
cursor: pointer;
|
1130
|
+
padding: 3px 3px;
|
1131
|
+
}
|
1132
|
+
.nodesettings_content {
|
1133
|
+
display: flex;
|
1134
|
+
flex-direction: column;
|
1135
|
+
flex: 1;
|
1136
|
+
padding: 0 5px;
|
1137
|
+
overflow: auto;
|
1138
|
+
transition: width 0.5s;
|
1139
|
+
}
|
1140
|
+
.nodesettings_content.expanded {
|
1141
|
+
width: 250px;
|
1142
|
+
}
|
1143
|
+
.nodesettings_content.collapsed {
|
1144
|
+
width: 0;
|
1145
|
+
}
|
1146
|
+
.nodesettings_section {
|
1147
|
+
margin-bottom: 10px;
|
1148
|
+
margin-left: 0.5rem;
|
1149
|
+
}
|
1150
|
+
.nodesettings_component {
|
1151
|
+
margin-bottom: 0.5rem;
|
1152
|
+
margin-left: 0.5rem;
|
1153
|
+
margin-top: 0.5rem;
|
1154
|
+
}
|
1155
|
+
|
1156
|
+
.tablecontainer {
|
1157
|
+
overflow: auto;
|
1158
|
+
background-color: white;
|
1159
|
+
min-height: 20rem;
|
1160
|
+
}
|
1161
|
+
|
1162
|
+
.tableHead {
|
1163
|
+
color: var(--funheadercolor) !important;
|
1164
|
+
background-color: var(--funcnodesbackground1);
|
1165
|
+
font-weight: bold !important;
|
1166
|
+
}
|
1167
|
+
|
1168
|
+
.tableheadercolor {
|
1169
|
+
color: inherit !important;
|
1170
|
+
font-family: inherit !important;
|
1171
|
+
font-weight: inherit !important;
|
1172
|
+
}
|
1173
|
+
|
1174
|
+
.indexcol {
|
1175
|
+
background-color: var(--funcnodesbackground2);
|
1176
|
+
color: var(--funheadercolor) !important;
|
1177
|
+
font-family: inherit !important;
|
1178
|
+
font-weight: inherit !important;
|
1179
|
+
}
|
1180
|
+
|
1181
|
+
.styled-select__control {
|
1182
|
+
height: 100%;
|
1183
|
+
min-height: initial;
|
1184
|
+
min-width: 10px;
|
1185
|
+
}
|
1186
|
+
.styled-select__menu-list {
|
1187
|
+
max-height: 200px;
|
1188
|
+
}
|
1189
|
+
.styled-select__single-value {
|
1190
|
+
text-align: start;
|
1191
|
+
}
|
1192
|
+
.styled-select__option {
|
1193
|
+
text-align: start;
|
1194
|
+
padding: 2px 5px;
|
1195
|
+
}
|
1196
|
+
.styled-select__option:hover {
|
1197
|
+
cursor: pointer;
|
1198
|
+
}
|
1199
|
+
|
1200
|
+
.colorspace {
|
1201
|
+
margin: 0.2rem;
|
1202
|
+
display: grid;
|
1203
|
+
grid-template-columns: auto minmax(0, 1fr);
|
1204
|
+
}
|
1205
|
+
.colorspace_title {
|
1206
|
+
font-size: 0.7em;
|
1207
|
+
font-weight: bold;
|
1208
|
+
}
|
1209
|
+
.colorspace label {
|
1210
|
+
font-size: 0.7rem;
|
1211
|
+
}
|
1212
|
+
.colorspace input {
|
1213
|
+
font-size: 0.7rem;
|
1214
|
+
max-height: 0.7rem;
|
1215
|
+
}
|
1216
|
+
.colorspace input[type=range] {
|
1217
|
+
width: 100%;
|
1218
|
+
margin: 0;
|
1219
|
+
padding: 0;
|
1220
|
+
-webkit-appearance: none;
|
1221
|
+
background-color: #666;
|
1222
|
+
height: 0.7rem;
|
1223
|
+
border-radius: 5px;
|
1224
|
+
}
|
1225
|
+
.colorspace input[type=range]::-webkit-slider-thumb, .colorspace input[type=range]::-webkit-range-thumb, .colorspace input[type=range]::-moz-range-thumb {
|
1226
|
+
width: 0.7rem;
|
1227
|
+
height: 0.7rem;
|
1228
|
+
background-color: #cc1c1c;
|
1229
|
+
border-radius: 50%;
|
1230
|
+
cursor: pointer;
|
1231
|
+
}
|
1232
|
+
|
1233
|
+
:root {
|
1234
|
+
--node_border_radius: 5px;
|
1235
|
+
--handle_outer_radius: 4px;
|
1236
|
+
--handle_inner_radius: 2px;
|
1237
|
+
--handle_width: 10;
|
1238
|
+
--handle_width_hover: 15;
|
1239
|
+
--handle_overlap: 3;
|
1240
|
+
--nodeinput_margin: 2;
|
1241
|
+
--nodeio_shift: calc(var(--handle_overlap) - var(--nodeinput_margin));
|
1242
|
+
--handle_source_color: hsl(190, 98%, 49%);
|
1243
|
+
--handle_target_color: hsl(204, 98%, 51%);
|
1244
|
+
--node_background: hsl(245, 51%, 42%);
|
1245
|
+
--node_header_color: hsl(245, 51%, 22%);
|
1246
|
+
}
|
1247
|
+
|
1248
|
+
.react-flow__node {
|
1249
|
+
padding: 0;
|
1250
|
+
border-radius: var(--node_border_radius);
|
1251
|
+
background-color: var(--node_background);
|
1252
|
+
display: flex;
|
1253
|
+
flex-direction: column;
|
1254
|
+
color: #f0f8ff;
|
1255
|
+
box-sizing: content-box;
|
1256
|
+
transform: -50%, -50%;
|
1257
|
+
border: 2px solid rgba(255, 255, 255, 0);
|
1258
|
+
font-size: 0.5rem;
|
1259
|
+
width: auto;
|
1260
|
+
max-width: 200px;
|
1261
|
+
min-width: 100px;
|
1262
|
+
background-clip: content-box;
|
1263
|
+
}
|
1264
|
+
.react-flow__node.selected {
|
1265
|
+
border-color: rgba(255, 255, 255, 0.6);
|
1266
|
+
}
|
1267
|
+
.react-flow__node * {
|
1268
|
+
box-sizing: border-box;
|
1269
|
+
}
|
1270
|
+
.react-flow__handle {
|
1271
|
+
height: calc(100% - 4px);
|
1272
|
+
border-radius: 0;
|
1273
|
+
width: calc(var(--handle_width) * 1px);
|
1274
|
+
transition: left 0.2s ease-in-out, right 0.2s ease-in-out, width 0.2s ease-in-out;
|
1275
|
+
}
|
1276
|
+
.react-flow__handle:hover {
|
1277
|
+
width: calc(var(--handle_width_hover) * 1px);
|
1278
|
+
}
|
1279
|
+
.react-flow__handle.source {
|
1280
|
+
background-color: var(--handle_source_color);
|
1281
|
+
}
|
1282
|
+
.react-flow__handle.target {
|
1283
|
+
background-color: var(--handle_target_color);
|
1284
|
+
}
|
1285
|
+
.react-flow__handle-left {
|
1286
|
+
border-radius: var(--handle_outer_radius) var(--handle_inner_radius) var(--handle_inner_radius) var(--handle_outer_radius);
|
1287
|
+
left: calc((var(--nodeio_shift) - var(--handle_width)) * 1px);
|
1288
|
+
}
|
1289
|
+
.react-flow__handle-left:hover {
|
1290
|
+
left: calc((var(--nodeio_shift) - var(--handle_width_hover)) * 1px);
|
1291
|
+
}
|
1292
|
+
.react-flow__handle-right {
|
1293
|
+
border-radius: var(--handle_inner_radius) var(--handle_outer_radius) var(--handle_outer_radius) var(--handle_inner_radius);
|
1294
|
+
right: calc((var(--nodeio_shift) - var(--handle_width)) * 1px);
|
1295
|
+
}
|
1296
|
+
.react-flow__handle-right:hover {
|
1297
|
+
right: calc((var(--nodeio_shift) - var(--handle_width_hover)) * 1px);
|
1298
|
+
}
|
1299
|
+
.react-flow__handle-top {
|
1300
|
+
border-radius: var(--handle_outer_radius) var(--handle_outer_radius) var(--handle_inner_radius) var(--handle_inner_radius);
|
1301
|
+
}
|
1302
|
+
.react-flow__handle-bottom {
|
1303
|
+
border-radius: var(--handle_inner_radius) var(--handle_inner_radius) var(--handle_outer_radius) var(--handle_outer_radius);
|
1304
|
+
}
|
1305
|
+
|
1306
|
+
.innernode {
|
1307
|
+
width: 100%;
|
1308
|
+
height: 100%;
|
1309
|
+
flex-direction: column;
|
1310
|
+
display: flex;
|
1311
|
+
box-sizing: border-box;
|
1312
|
+
}
|
1313
|
+
.innernode.intrigger .nodeheader {
|
1314
|
+
background-color: #abb408;
|
1315
|
+
}
|
1316
|
+
.innernode.error .nodeheader {
|
1317
|
+
background-color: #ff0000;
|
1318
|
+
}
|
1319
|
+
|
1320
|
+
.nodeheader {
|
1321
|
+
box-sizing: border-box;
|
1322
|
+
background-color: var(--node_header_color);
|
1323
|
+
width: 100%;
|
1324
|
+
padding: 0.1rem;
|
1325
|
+
border-radius: var(--node_border_radius) var(--node_border_radius) 0 0;
|
1326
|
+
display: flex; /* Use flex layout */
|
1327
|
+
align-items: center; /* Align items vertically in the center */
|
1328
|
+
justify-content: space-between; /* Distribute space between items */
|
1329
|
+
}
|
1330
|
+
.nodeheader_element {
|
1331
|
+
display: flex; /* Enable flex within each child to center content */
|
1332
|
+
align-items: center; /* Align items vertically in the center */
|
1333
|
+
}
|
1334
|
+
.nodeheader_title {
|
1335
|
+
flex-grow: 1; /* Allow the text div to grow and fill available space */
|
1336
|
+
margin: 0 10px; /* Add some space around the text for aesthetics */
|
1337
|
+
white-space: nowrap; /* Prevent wrapping */
|
1338
|
+
overflow: hidden; /* Hide overflow */
|
1339
|
+
text-overflow: ellipsis; /* Add ellipsis to overflow */
|
1340
|
+
justify-content: center; /* Center the text horizontally */
|
1341
|
+
}
|
1342
|
+
.nodeheader_title_text {
|
1343
|
+
overflow: hidden;
|
1344
|
+
text-overflow: ellipsis;
|
1345
|
+
white-space: nowrap;
|
1346
|
+
max-width: 100%; /* Ensure it does not overflow the parent */
|
1347
|
+
}
|
1348
|
+
.nodeheader .triggerbutton {
|
1349
|
+
cursor: pointer;
|
1350
|
+
}
|
1351
|
+
.nodeheader .triggerbutton:hover {
|
1352
|
+
color: #0cc3f5;
|
1353
|
+
}
|
1354
|
+
.nodeheader .triggerbutton:active {
|
1355
|
+
color: #075d74;
|
1356
|
+
}
|
1357
|
+
|
1358
|
+
.nodename_input {
|
1359
|
+
border: 1px solid #000000;
|
1360
|
+
border-radius: 2px;
|
1361
|
+
background: none;
|
1362
|
+
color: white;
|
1363
|
+
text-align: center;
|
1364
|
+
font-size: inherit;
|
1365
|
+
margin: 2px;
|
1366
|
+
box-sizing: border-box;
|
1367
|
+
}
|
1368
|
+
|
1369
|
+
.nodefooter {
|
1370
|
+
background-color: #4e0ba5;
|
1371
|
+
width: 100%;
|
1372
|
+
padding: 0.1rem;
|
1373
|
+
border-radius: 0 0 var(--node_border_radius) var(--node_border_radius);
|
1374
|
+
}
|
1375
|
+
.nodefooter:empty {
|
1376
|
+
display: none;
|
1377
|
+
}
|
1378
|
+
.nodefooter .nodeerror {
|
1379
|
+
border: 1px solid #ff0000;
|
1380
|
+
border-radius: 2px;
|
1381
|
+
padding: 0.25rem;
|
1382
|
+
background-color: rgba(255, 0, 0, 0.4588235294);
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
.nodebody {
|
1386
|
+
flex-grow: 1;
|
1387
|
+
}
|
1388
|
+
|
1389
|
+
.nodedatabody {
|
1390
|
+
overflow: auto;
|
1391
|
+
}
|
1392
|
+
|
1393
|
+
.noderesizecontrol {
|
1394
|
+
background: transparent !important;
|
1395
|
+
border: none !important;
|
1396
|
+
font-size: 0.5rem;
|
1397
|
+
}
|
1398
|
+
|
1399
|
+
.noderesizeicon {
|
1400
|
+
position: absolute;
|
1401
|
+
bottom: 4px;
|
1402
|
+
right: 4px;
|
1403
|
+
font-size: 0.5rem;
|
1404
|
+
}
|
1405
|
+
|
1406
|
+
.nodeio, .nodeoutput, .nodeinput {
|
1407
|
+
width: auto;
|
1408
|
+
background-color: inherit;
|
1409
|
+
padding: 0.1rem;
|
1410
|
+
margin-top: 0.1rem;
|
1411
|
+
margin-bottom: 0.1rem;
|
1412
|
+
position: relative;
|
1413
|
+
display: flex;
|
1414
|
+
flex-direction: row;
|
1415
|
+
border: 1px solid rgba(255, 255, 255, 0.5333333333);
|
1416
|
+
border-radius: 3px;
|
1417
|
+
box-sizing: border-box;
|
1418
|
+
margin-left: calc(var(--nodeinput_margin) * 1px);
|
1419
|
+
margin-right: calc(var(--nodeinput_margin) * 1px);
|
1420
|
+
align-items: center;
|
1421
|
+
}
|
1422
|
+
|
1423
|
+
.iovaluefield {
|
1424
|
+
flex-grow: 1;
|
1425
|
+
flex-shrink: 1;
|
1426
|
+
overflow: hidden;
|
1427
|
+
align-items: start;
|
1428
|
+
justify-content: start;
|
1429
|
+
display: flex;
|
1430
|
+
margin: 0.2rem;
|
1431
|
+
line-break: anywhere;
|
1432
|
+
}
|
1433
|
+
.iovaluefield > input {
|
1434
|
+
width: 100%;
|
1435
|
+
}
|
1436
|
+
|
1437
|
+
.nodeinput > .iovaluefield {
|
1438
|
+
overflow: visible;
|
1439
|
+
}
|
1440
|
+
|
1441
|
+
.ioname {
|
1442
|
+
flex-grow: 1;
|
1443
|
+
flex-shrink: 1;
|
1444
|
+
color: inherit;
|
1445
|
+
margin: 0.2rem;
|
1446
|
+
overflow: hidden;
|
1447
|
+
min-width: 2rem;
|
1448
|
+
}
|
1449
|
+
.nodeinput .ioname {
|
1450
|
+
text-align: left;
|
1451
|
+
}
|
1452
|
+
.nodeoutput .ioname {
|
1453
|
+
text-align: right;
|
1454
|
+
}
|
1455
|
+
|
1456
|
+
.nodedatainput {
|
1457
|
+
height: 1.5rem;
|
1458
|
+
display: flex;
|
1459
|
+
align-items: center;
|
1460
|
+
}
|
1461
|
+
|
1462
|
+
input.nodedatainput:focus {
|
1463
|
+
outline: none;
|
1464
|
+
}
|
1465
|
+
|
1466
|
+
.nodedatastyledelement, input.nodedatainput.styledinput,
|
1467
|
+
.nodedatainput.styleddropdown {
|
1468
|
+
background-color: var(--node_header_color);
|
1469
|
+
font-size: 0.5rem;
|
1470
|
+
height: 1.5rem;
|
1471
|
+
}
|
1472
|
+
.nodedatastyledelement:disabled, input.nodedatainput.styledinput:disabled,
|
1473
|
+
.nodedatainput.styleddropdown:disabled {
|
1474
|
+
opacity: 0.5;
|
1475
|
+
}
|
1476
|
+
|
1477
|
+
input.nodedatainput.styledinput,
|
1478
|
+
.nodedatainput.styleddropdown {
|
1479
|
+
width: 100%;
|
1480
|
+
}
|
1481
|
+
|
1482
|
+
.nodeprogress {
|
1483
|
+
width: 100%;
|
1484
|
+
height: 10px;
|
1485
|
+
transition: height 0.1s ease;
|
1486
|
+
overflow: hidden;
|
1487
|
+
}
|
1488
|
+
.nodeprogress-text {
|
1489
|
+
text-align: center;
|
1490
|
+
color: white;
|
1491
|
+
mix-blend-mode: difference;
|
1492
|
+
}
|
1493
|
+
.nodeprogress-bar {
|
1494
|
+
border-radius: 3px;
|
1495
|
+
}
|
1496
|
+
.nodeprogress-progress {
|
1497
|
+
background-color: #b7f50c;
|
1498
|
+
border-radius: 3px;
|
1499
|
+
transition: width 0.3s ease;
|
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
|
+
}
|