sunrize 1.7.23 → 1.7.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1434 @@
1
+ @charset "utf-8";
2
+ @import url(file:///Users/holger/Desktop/X_ITE/sunrize/node_modules/material-icons/iconfont/material-icons.css);
3
+ @import url(file:///Users/holger/Desktop/X_ITE/sunrize/node_modules/material-symbols/index.css);
4
+ @import url(https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100;0,400;0,700;1,100;1,400;1,700&display=swap);
5
+
6
+ @import url(file:///Users/holger/Desktop/X_ITE/sunrize/node_modules/spectrum-colorpicker2/dist/spectrum.css);
7
+ @import url(file:///Users/holger/Desktop/X_ITE/sunrize/src/assets/themes/system-colors.css);
8
+
9
+ html {
10
+ overflow: hidden;
11
+ height: 100%;
12
+ }
13
+
14
+ body {
15
+ overflow: hidden;
16
+ height: 100%;
17
+ margin: 0;
18
+ background-color: var(--background-color);
19
+ color: var(--text-color);
20
+ font-family: var(--sans-serif);
21
+ font-size: var(--font-size);
22
+ }
23
+
24
+ .material-symbols-outlined {
25
+ font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
26
+ }
27
+
28
+ *:focus {
29
+ outline: none;
30
+ }
31
+
32
+ ::placeholder {
33
+ color: var(--system-gray2);
34
+ }
35
+
36
+ ::selection {
37
+ color: var(--selection-color);
38
+ background: var(--selection-background-color);
39
+ }
40
+
41
+ /* common */
42
+
43
+ .green {
44
+ color: var(--system-green);
45
+ }
46
+
47
+ .red {
48
+ color: var(--system-red);
49
+ }
50
+
51
+ .yellow {
52
+ color: var(--system-yellow);
53
+ }
54
+
55
+ .modal {
56
+ pointer-events: none;
57
+ }
58
+
59
+ textarea, input, button, select,
60
+ th, td,
61
+ .ui-widget, .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button, .ui-widget-content {
62
+ border: none;
63
+ padding: 0;
64
+ background: none;
65
+ font-family: var(--sans-serif);
66
+ font-size: var(--font-size);
67
+ color: var(--text-color);
68
+ }
69
+
70
+ .ui-widget label {
71
+ position: relative;
72
+ top: -2px;
73
+ margin-left: 0.5em;
74
+ }
75
+
76
+ table {
77
+ width: 100%;
78
+ }
79
+
80
+ th,
81
+ td {
82
+ padding: 4px 8px;
83
+ }
84
+
85
+ tbody th {
86
+ text-align: right;
87
+ white-space: nowrap;
88
+ min-width: 100px;
89
+ width: auto;
90
+ }
91
+
92
+ tbody td {
93
+ width: 100%;
94
+ }
95
+
96
+ tbody th th {
97
+ min-width: unset;
98
+ width: unset;
99
+ }
100
+
101
+ tbody td td {
102
+ width: unset;
103
+ }
104
+
105
+ thead tr {
106
+ background: var(--tint-color2);
107
+ }
108
+
109
+ tbody tr:nth-child(odd) {
110
+ background: var(--tint-color1);
111
+ }
112
+
113
+ tbody tr:hover {
114
+ background: var(--tint-color2);
115
+ }
116
+
117
+ td > input:not([type]),
118
+ td > input[type="text"],
119
+ td > input[type="number"] {
120
+ width: 100%;
121
+ border: 1px solid var(--tint-color1);
122
+ }
123
+
124
+ td > textarea {
125
+ resize: vertical;
126
+ width: 100%;
127
+ height: 8em;
128
+ border: 1px solid var(--tint-color1) !important;
129
+ }
130
+
131
+ td > select {
132
+ border: 1px solid var(--tint-color1) !important;
133
+ }
134
+
135
+ td > div {
136
+ border: 1px solid var(--tint-color1) !important;
137
+ }
138
+
139
+ .sticky-headers thead {
140
+ position: sticky;
141
+ top: 2px;
142
+ }
143
+
144
+ tr.disabled ~ tr input,
145
+ tr.disabled ~ tr textarea,
146
+ tr.disabled ~ tr select,
147
+ tr.disabled ~ tr button {
148
+ pointer-events: none;
149
+ }
150
+
151
+ tr.disabled ~ tr > td > input,
152
+ tr.disabled ~ tr > td > textarea,
153
+ tr.disabled ~ tr > td > select,
154
+ tr.disabled ~ tr > td > button,
155
+ tr.disabled ~ tr > td > div {
156
+ background: var(--background-disabled);
157
+ }
158
+
159
+ /* Highlight animation */
160
+
161
+ .highlight {
162
+ animation: highlight 1000ms ease-out;
163
+ }
164
+
165
+ @keyframes highlight {
166
+ 0% {
167
+ background-color: var(--system-red);
168
+ }
169
+ }
170
+
171
+ /* Vertical splitter */
172
+
173
+ .vertical-splitter {
174
+ overflow: hidden;
175
+ position: absolute;
176
+ box-sizing: border-box;
177
+ inset: 0;
178
+ }
179
+
180
+ .vertical-splitter-left,
181
+ .vertical-splitter-right {
182
+ background-color: var(--background-color);
183
+ position: absolute;
184
+ box-sizing: border-box;
185
+ top: 0;
186
+ height: 100%;
187
+ }
188
+
189
+ .vertical-splitter-left {
190
+ left: 0;
191
+ width: 65%;
192
+ }
193
+
194
+ .vertical-splitter-right {
195
+ right: 0;
196
+ width: 35%;
197
+ }
198
+
199
+ .vertical-splitter-left > .ui-resizable-e {
200
+ cursor: col-resize;
201
+ }
202
+
203
+ .vertical-splitter-left > .ui-resizable-e > div {
204
+ position: relative;
205
+ left: 0px;
206
+ width: 4px;
207
+ height: 100%;
208
+ }
209
+
210
+ .vertical-splitter-left > .ui-resizable-e:hover > div {
211
+ animation: highlight-splitter 1000ms ease-out;
212
+ animation-fill-mode: forwards;
213
+ }
214
+
215
+ .vertical-splitter-left > .ui-resizable-e:active > div {
216
+ background-color: var(--accent-color);
217
+ }
218
+
219
+ @keyframes highlight-splitter {
220
+ 100% {
221
+ background-color: var(--accent-color);
222
+ }
223
+ }
224
+
225
+ #vertical-splitter > .vertical-splitter-left {
226
+ width: 65%;
227
+ }
228
+
229
+ #vertical-splitter > .vertical-splitter-right {
230
+ width: 35%;
231
+ }
232
+
233
+ /* Horizontal splitter */
234
+
235
+ .horizontal-splitter {
236
+ position: absolute;
237
+ box-sizing: border-box;
238
+ width: 100%;
239
+ height: 100%;
240
+ }
241
+
242
+ .horizontal-splitter-top,
243
+ .horizontal-splitter-bottom {
244
+ background-color: var(--background-color);
245
+ position: absolute;
246
+ box-sizing: border-box;
247
+ left: 0;
248
+ width: 100%;
249
+ }
250
+
251
+ .horizontal-splitter-top {
252
+ top: 0;
253
+ height: 60%;
254
+ }
255
+
256
+ .horizontal-splitter-bottom {
257
+ bottom: 0;
258
+ height: 40%;
259
+ }
260
+
261
+ .horizontal-splitter-top > .ui-resizable-s {
262
+ cursor: row-resize;
263
+ }
264
+
265
+ .horizontal-splitter-top > .ui-resizable-s > div {
266
+ position: relative;
267
+ top: 1px;
268
+ height: 4px;
269
+ }
270
+
271
+ .horizontal-splitter-top > .ui-resizable-s:hover > div {
272
+ animation: highlight-splitter 1000ms ease-out;
273
+ animation-fill-mode: forwards;
274
+ }
275
+
276
+ .horizontal-splitter-top > .ui-resizable-s:active > div {
277
+ background-color: var(--accent-color);
278
+ }
279
+
280
+ #horizontal-splitter > .horizontal-splitter-top {
281
+ height: 60%;
282
+ }
283
+
284
+ #horizontal-splitter > .horizontal-splitter-bottom {
285
+ height: 40%;
286
+ }
287
+
288
+ /* Tabs */
289
+
290
+ .ui-tabs {
291
+ position: absolute;
292
+ inset: 0;
293
+ border: 0;
294
+ padding: 0;
295
+ background: inherit;
296
+ }
297
+
298
+ .ui-tabs.ui-widget.ui-widget-content {
299
+ border: none;
300
+ }
301
+
302
+ .ui-tabs > .ui-tabs-nav {
303
+ display: flex;
304
+ justify-content: center;
305
+ box-sizing: border-box;
306
+ border: 0;
307
+ border-radius: 0;
308
+ padding: 0;
309
+ height: var(--tabs-height);
310
+ width: 100%;
311
+ background: inherit;
312
+ z-index: 2000;
313
+ }
314
+
315
+ .ui-tabs.top > .ui-tabs-nav {
316
+ border-bottom: var(--tool-border);
317
+ }
318
+
319
+ .ui-tabs.bottom > .ui-tabs-nav {
320
+ position: absolute;
321
+ bottom: 0;
322
+ border-top: var(--tool-border);
323
+ }
324
+
325
+ .ui-tabs > .ui-tabs-nav li,
326
+ .ui-tabs > .ui-tabs-nav .ui-tabs-active,
327
+ .ui-tabs > .ui-tabs-nav .ui-tabs-anchor {
328
+ margin: 0;
329
+ border: 0;
330
+ padding: 0;
331
+ border-radius: 0;
332
+ background: none;
333
+ color: var(--text-color);
334
+ user-select: none;
335
+ font-size: var(--small-font-size);
336
+ }
337
+
338
+ .ui-tabs > .ui-tabs-nav li,
339
+ .ui-tabs > .ui-tabs-nav .ui-tabs-active {
340
+ -box-sizing: border-box;
341
+ height: 100%;
342
+ padding: 7px 10px 0 10px;
343
+ }
344
+
345
+ .ui-tabs > .ui-tabs-nav li:hover {
346
+ color: var(--highlight-color);
347
+ }
348
+
349
+ .ui-tabs > .ui-tabs-nav li.ui-tabs-active {
350
+ color: var(--accent-color);
351
+ }
352
+
353
+ .ui-tabs > .ui-tabs-nav .ui-tabs-anchor,
354
+ .ui-tabs > .ui-tabs-nav .ui-tabs-active .ui-tabs-anchor {
355
+ cursor: pointer;
356
+ color: inherit;
357
+ }
358
+
359
+ .ui-tabs > .ui-tabs-nav .material-icons {
360
+ position: relative;
361
+ top: -3px;
362
+ margin: 0;
363
+ padding: 0;
364
+ font-size: var(--medium-icon-size);
365
+ }
366
+
367
+ .ui-tabs > .ui-tabs-panel {
368
+ overflow: hidden;
369
+ box-sizing: border-box;
370
+ position: relative;
371
+ padding: unset;
372
+ width: 100%;
373
+ height: calc(100% - var(--tabs-height));
374
+ color: var(--text-color);
375
+ }
376
+
377
+ .ui-tabs > .ui-tabs-panel.ui-corner-bottom {
378
+ border-radius: 0;
379
+ }
380
+
381
+ .tabs-panel {
382
+ position: absolute;
383
+ overflow: hidden;
384
+ inset: 0;
385
+ }
386
+
387
+ /* qtip2 */
388
+
389
+ #qtip-overlay div {
390
+ background: none;
391
+ }
392
+
393
+ .qtip {
394
+ max-width: unset;
395
+ }
396
+
397
+ .qtip-tipsy.qtip {
398
+ border: var(--qtip-border);
399
+ background: var(--qtip-background-color);
400
+ box-shadow: var(--qtip-shadow);
401
+ }
402
+
403
+ .qtip-tipsy .qtip-tip {
404
+ background: inherit !important;
405
+ }
406
+
407
+ .qtip-preview.qtip {
408
+ border: var(--preview-border);
409
+ background: var(--preview-background-color);
410
+ backdrop-filter: none;
411
+ }
412
+
413
+ .qtip-audio.qtip {
414
+ background: rgb(241, 243, 244);
415
+ }
416
+
417
+ .qtip-tipsy .qtip-content {
418
+ padding: 5px;
419
+ }
420
+
421
+ body.light .qtip-tipsy {
422
+ color: black;
423
+ text-shadow: none;
424
+ }
425
+
426
+ .qtip input,
427
+ .qtip select,
428
+ .qtip button {
429
+ display: block;
430
+ width: 100%;
431
+ background: var(--background-color);
432
+ border: 1px solid var(--system-gray7);
433
+ filter: opacity(80%);
434
+ }
435
+
436
+ .qtip .qtip-content > div > * {
437
+ margin: 0.2em 0em;
438
+ }
439
+
440
+ .qtip .qtip-content > div:first-child {
441
+ margin-top: 0em;
442
+ }
443
+
444
+ .qtip .qtip-content > div:last-child {
445
+ margin-bottom: 0em;
446
+ }
447
+
448
+ .qtip select:hover,
449
+ .qtip button:hover {
450
+ background-color: var(--system-gray4);
451
+ color: var(--system-gray0);
452
+ }
453
+
454
+ /* Toolbar */
455
+
456
+ .toolbar {
457
+ position: absolute;
458
+ box-sizing: border-box;
459
+ }
460
+
461
+ .vertical-toolbar {
462
+ right: 0;
463
+ height: 100%;
464
+ width: var(--toolbar-width);
465
+ }
466
+
467
+ .vertical-toolbar .material-icons,
468
+ .vertical-toolbar .material-symbols-outlined {
469
+ display: block;
470
+ margin: 10px auto;
471
+ width: var(--icon-size);
472
+ cursor: pointer;
473
+ font-size: var(--icon-size);
474
+ user-select: none;
475
+ }
476
+
477
+ .vertical-toolbar .material-symbols-outlined {
478
+ font-size: calc(var(--icon-size) + 7px);
479
+ position: relative;
480
+ left: -3px;
481
+ }
482
+
483
+ .small .material-symbols-outlined {
484
+ font-size: calc(var(--icon-size) + 3px);
485
+ left: -1px;
486
+ }
487
+
488
+ .vertical-toolbar .separator {
489
+ display: block;
490
+ margin: 10px auto;
491
+ height: 0;
492
+ width: var(--icon-size);
493
+ border-bottom: 1px solid var(--separator-color);
494
+ user-select: none;
495
+ }
496
+
497
+ .vertical-toolbar .material-icons:hover,
498
+ .vertical-toolbar .material-symbols-outlined:hover {
499
+ color: var(--highlight-color);
500
+ }
501
+
502
+ .vertical-toolbar .material-icons.active,
503
+ .vertical-toolbar .material-symbols-outlined.active {
504
+ color: var(--accent-color);
505
+ }
506
+
507
+ .large-toolbar .material-icons {
508
+ margin: 5px auto;
509
+ width: var(--large-icon-size);
510
+ font-size: var(--large-icon-size);
511
+ }
512
+
513
+ .large-toolbar .image-icon {
514
+ background: no-repeat;
515
+ display: block;
516
+ width: 24px;
517
+ height: 24px;
518
+ margin: 10px auto;
519
+ cursor: pointer;
520
+ user-select: none;
521
+ filter: var(--filter-text-color);
522
+ }
523
+
524
+ .large-toolbar .image-icon:hover {
525
+ filter: var(--filter-highlight-color);
526
+ }
527
+
528
+ .large-toolbar .image-icon.active {
529
+ filter: var(--filter-accent-color);
530
+ }
531
+
532
+ .image-icon.hand {
533
+ background-image: url(file:///Users/holger/Desktop/X_ITE/sunrize/src/assets/images/icons/hand.svg);
534
+ }
535
+
536
+ .image-icon.arrow {
537
+ background-image: url(file:///Users/holger/Desktop/X_ITE/sunrize/src/assets/images/icons/arrow.svg);
538
+ }
539
+
540
+ .image-icon.straighten {
541
+ background-image: url(file:///Users/holger/Desktop/X_ITE/sunrize/src/assets/images/icons/straighten.svg);
542
+ }
543
+
544
+ /* Browser */
545
+
546
+ #browser-pane {
547
+ box-sizing: border-box;
548
+ position: relative;
549
+ width: 100%;
550
+ height: 100%;
551
+ }
552
+
553
+ #browser-frame {
554
+ box-sizing: border-box;
555
+ position: absolute;
556
+ top: 0;
557
+ left: 0;
558
+ width: calc(100% - var(--toolbar-width));
559
+ height: 100%;
560
+ border-top: 1px solid var(--border-color);
561
+ border-right: 1px solid var(--border-color);
562
+ border-bottom: 1px solid var(--border-color);
563
+ }
564
+
565
+ #browser {
566
+ box-sizing: border-box;
567
+ position: absolute;
568
+ width: 100%;
569
+ height: 100%;
570
+ left: 50%;
571
+ top: 50%;
572
+ transform: translate(-50%,-50%);
573
+ background-color: var(--system-gray7);
574
+ }
575
+
576
+ /* Dialog */
577
+
578
+ .dialog ::placeholder {
579
+ color: var(--system-gray1);
580
+ }
581
+
582
+ body.dark .dialog ::placeholder {
583
+ color: var(--system-gray2);
584
+ }
585
+
586
+ .dialog .tabs-panel {
587
+ padding: 0.5em 1em;
588
+ }
589
+
590
+ .dialog.ui-dialog {
591
+ z-index: 3000 !important;
592
+ }
593
+
594
+ .dialog.ui-dialog.ui-widget.ui-widget-content {
595
+ cursor: move;
596
+ backdrop-filter: var(--tool-backdrop-filter);
597
+ background-color: var(--tool-background-color);
598
+ border-radius: var(--tool-border-radius);
599
+ border: var(--tool-border);
600
+ box-shadow: var(--tool-shadow);
601
+ }
602
+
603
+ /* Scene Properties */
604
+
605
+ .scene-properties .tabs-panel {
606
+ overflow-y: auto;
607
+ }
608
+
609
+ /* Library */
610
+
611
+ .ui-widget .library-input {
612
+ box-sizing: border-box;
613
+ display: block;
614
+ background: none;
615
+ border: none;
616
+ width: 100%;
617
+ font-family: var(--sans-serif);
618
+ font-weight: lighter;
619
+ font-size: var(--large-font-size);
620
+ padding-bottom: 10px;
621
+ }
622
+
623
+ .ui-widget .library-buttons {
624
+ border-top: var(--tool-border);
625
+ border-bottom: var(--tool-border);
626
+ padding: 5px 0;
627
+ text-align: center;
628
+ }
629
+
630
+ .ui-widget .library-button {
631
+ cursor: pointer;
632
+ margin-right: 1em;
633
+ }
634
+
635
+ .ui-widget .library-button:hover {
636
+ color: var(--highlight-color);
637
+ }
638
+
639
+ .ui-widget .library-button.active {
640
+ color: var(--accent-color);
641
+ }
642
+
643
+ .ui-widget .library-output {
644
+ user-select: none;
645
+ position: absolute;
646
+ overflow: scroll;
647
+ margin: 10px 0;
648
+ inset: 75px 1em 0 1em;
649
+ }
650
+
651
+ .ui-widget .library-list {
652
+ margin: 0;
653
+ padding: 0;
654
+ list-style-type: none;
655
+ }
656
+
657
+ .ui-widget .library-list .component {
658
+ margin: 1em 0;
659
+ font-size: var(--small-font-size);
660
+ border-bottom: 1px solid var(--system-gray1);
661
+ color: var(--system-gray1);
662
+ }
663
+
664
+ body.dark .ui-widget .library-list .component {
665
+ border-bottom: 1px solid var(--system-gray2);
666
+ color: var(--system-gray2);
667
+ }
668
+
669
+ .ui-widget .library-list .node {
670
+ cursor: pointer;
671
+ padding: 0.4em 0;
672
+ }
673
+
674
+ .ui-widget .library-list li:first-child {
675
+ margin-top: 0;
676
+ }
677
+
678
+ .ui-widget .library-list .node:hover {
679
+ background-color: rgba(0, 0, 0, 0.2)
680
+ }
681
+
682
+ .ui-widget .library-list .icon {
683
+ padding-left: calc(27px + 0.5em);
684
+ background: no-repeat;
685
+ }
686
+
687
+ .ui-widget .library-list .hidden {
688
+ display: none;
689
+ }
690
+
691
+ /* Node List */
692
+
693
+ .node-list {
694
+ overflow: scroll;
695
+ position: absolute;
696
+ inset: 0 0 0 0;
697
+ padding: 0;
698
+ }
699
+
700
+ .node-list > ul {
701
+ margin: 0;
702
+ padding: 0;
703
+ list-style-type: none;
704
+ }
705
+
706
+ .node-list > ul > li {
707
+ cursor: pointer;
708
+ user-select: none;
709
+ margin: 0;
710
+ padding: 3px 10px;
711
+ white-space: nowrap;
712
+ }
713
+
714
+ .node-list > ul > li:nth-child(odd) {
715
+ background-color: var(--tint-color1);
716
+ }
717
+
718
+ .node-list > ul > li:hover {
719
+ background-color: var(--tint-color2);
720
+ }
721
+
722
+ .node-list .icon {
723
+ position: relative;
724
+ margin-right: 2px;
725
+ top: 2px;
726
+ }
727
+
728
+ /* Footer */
729
+
730
+ #footer {
731
+ overflow: hidden;
732
+ position: absolute;
733
+ box-sizing: border-box;
734
+ width: 100%;
735
+ height: 100%;
736
+ }
737
+
738
+ /* Console */
739
+
740
+ .console {
741
+ --min-input-height: 20px;
742
+ --max-input-height: calc(var(--min-input-height) * 4);
743
+ }
744
+
745
+ .console {
746
+ overflow: hidden;
747
+ box-sizing: border-box;
748
+ }
749
+
750
+ .console-left {
751
+ position: absolute;
752
+ box-sizing: border-box;
753
+ left: 0;
754
+ right: var(--toolbar-width);
755
+ height: 100%;
756
+ }
757
+
758
+ .console-output {
759
+ position: absolute;
760
+ box-sizing: border-box;
761
+ overflow-y: scroll;
762
+ top: 0;
763
+ border-right: 1px solid var(--border-color);
764
+ border-bottom: 1px solid var(--border-color);
765
+ padding: 5px;
766
+ width: 100%;
767
+ height: calc(100% - var(--min-input-height));
768
+ background: var(--system-gray7);
769
+ font-family: var(--monospace);
770
+ font-size: 8pt;
771
+ white-space: pre-wrap;
772
+ overflow-wrap: break-word;
773
+ }
774
+
775
+ .console-output p {
776
+ margin: 0;
777
+ }
778
+
779
+ .console-output p.splitter {
780
+ margin-top: 5px;
781
+ border-top: 1px solid var(--system-gray3);
782
+ margin-bottom: 5px;
783
+ }
784
+
785
+ .console-output p.debug {
786
+ color: inherit;
787
+ }
788
+
789
+ .console-output p.log {
790
+ color: var(--system-blue);
791
+ }
792
+
793
+ .console-output p.info {
794
+ color: var(--system-blue);
795
+ }
796
+
797
+ .console-output p.warn {
798
+ color: var(--system-yellow);
799
+ }
800
+
801
+ .console-output p.error {
802
+ color: var(--system-red);
803
+ }
804
+
805
+ .console-output p.filled {
806
+ position: relative;
807
+ z-index: 0;
808
+ margin-top: 5px;
809
+ margin-bottom: 5px;
810
+ color: black;
811
+ }
812
+
813
+ .console-output p.filled:before {
814
+ content: "";
815
+ position: absolute;
816
+ display: block;
817
+ z-index: -1;
818
+ width: 100%;
819
+ height: 100%;
820
+ filter: brightness(2) opacity(60%);
821
+ }
822
+
823
+ .console-output p.warn.filled {
824
+ border-top: 1px solid var(--system-yellow);
825
+ border-bottom: 1px solid var(--system-yellow);
826
+ }
827
+
828
+ .console-output p.warn.filled:before {
829
+ background-color: var(--system-yellow);
830
+ }
831
+
832
+ .console-output p.error.filled {
833
+ border-top: 1px solid var(--system-red);
834
+ border-bottom: 1px solid var(--system-red);
835
+ }
836
+
837
+ .console-output p.error.filled:before {
838
+ background-color: var(--system-red);
839
+ }
840
+
841
+ .console-input {
842
+ position: absolute;
843
+ box-sizing: border-box;
844
+ bottom: 0;
845
+ width: 100%;
846
+ min-height: var(--min-input-height);
847
+ max-height: var(--max-input-height);
848
+ }
849
+
850
+ /* textarea cannot have a ::before */
851
+ .console-input::before {
852
+ display: block;
853
+ position: absolute;
854
+ box-sizing: border-box;
855
+ left: 5px;
856
+ top: 3px;
857
+ content: "❯";
858
+ color: var(--accent-color);
859
+ }
860
+
861
+ .console-input > textarea {
862
+ display: block;
863
+ position: absolute;
864
+ box-sizing: border-box;
865
+ outline: 0;
866
+ border: 0;
867
+ padding-top: 3px;
868
+ padding-left: 17px;
869
+ width: 100%;
870
+ height: 100%;
871
+ background-color: transparent;
872
+ color: var(--text-color);
873
+ resize: none;
874
+ }
875
+
876
+ /* Script Editor */
877
+
878
+ .script-editor {
879
+ --input-height: 20px;
880
+
881
+ box-sizing: border-box;
882
+ }
883
+
884
+ .script-editor .script-editor-left {
885
+ overflow: hidden;
886
+ position: absolute;
887
+ box-sizing: border-box;
888
+ left: 0;
889
+ right: var(--toolbar-width);
890
+ width: unset;
891
+ height: 100%;
892
+ }
893
+
894
+ .script-editor .vertical-splitter-right {
895
+ border-left: 1px solid var(--border-color);
896
+ border-right: 1px solid var(--border-color);
897
+ }
898
+
899
+ .script-editor .horizontal-splitter-top {
900
+ border-bottom: 1px solid var(--border-color);
901
+ }
902
+
903
+ .script-editor .node-list {
904
+ user-select: none;
905
+ bottom: var(--input-height);
906
+ border-bottom: 1px solid var(--border-color);
907
+ color: var(--system-blue);
908
+ }
909
+
910
+ .script-editor .type-name {
911
+ font-weight: bold;
912
+ }
913
+
914
+ .script-editor .node-name {
915
+ position: absolute;
916
+ bottom: 0px;
917
+ width: 100%;
918
+ height: var(--input-height);
919
+ border: none;
920
+ background: none;
921
+ }
922
+
923
+ .script-editor .script-editor-monaco {
924
+ position: absolute;
925
+ inset: 0;
926
+ }
927
+
928
+ /* Animation Editor */
929
+
930
+ .animation-editor {
931
+ overflow: hidden;
932
+ box-sizing: border-box;
933
+ }
934
+
935
+ /* Sidebar */
936
+
937
+ .sidebar.ui-widget.ui-widget-content {
938
+ position: absolute;
939
+ box-sizing: border-box;
940
+ width: 100%;
941
+ height: 100%;
942
+ border-top: 1px solid var(--border-color);
943
+ border-left: 1px solid var(--border-color);
944
+ background: var(--sidebar-background-color);
945
+ }
946
+
947
+ .sidebar.ui-tabs .ui-tabs-nav {
948
+ left: -1px;
949
+ width: calc(100% + 1px);
950
+ border-left: 1px solid var(--border-color);
951
+ }
952
+
953
+ /* Tree View */
954
+
955
+ .tree-view {
956
+ overflow: scroll;
957
+ box-sizing: border-box;
958
+ padding: 10px;
959
+ width: 100%;
960
+ height: 100%;
961
+ }
962
+
963
+ .tree-view:focus {
964
+ outline: none;
965
+ }
966
+
967
+ .tree-view .subtree {
968
+ display: inline-block;
969
+ min-width: 100%;
970
+ outline: none;
971
+ }
972
+
973
+ .tree-view ul {
974
+ margin: 0;
975
+ padding: 0;
976
+ list-style-type: none;
977
+ }
978
+
979
+ .tree-view ul ul {
980
+ padding-left: 20px;
981
+ }
982
+
983
+ .tree-view .item {
984
+ display: flex;
985
+ flex-direction: row;
986
+ }
987
+
988
+ .tree-view .item > * {
989
+ position: relative;
990
+ top: 2px;
991
+ }
992
+
993
+ .tree-view .jstree-ocl {
994
+ position: relative;
995
+ top: 0;
996
+ width: 22px;
997
+ cursor: pointer;
998
+ color: var(--expander-color);
999
+ }
1000
+
1001
+ .tree-view .jstree-anchor {
1002
+ display: flex;
1003
+ flex-direction: row;
1004
+ flex: 1 1 auto;
1005
+ color: inherit;
1006
+ }
1007
+
1008
+ .tree-view .jstree-node.selected {
1009
+ background-color: var(--tint-color1);
1010
+ }
1011
+
1012
+ .tree-view .jstree-node.manually.node {
1013
+ outline: 1px dashed var(--system-blue);
1014
+ }
1015
+
1016
+ .tree-view .jstree-node.manually.externproto,
1017
+ .tree-view .jstree-node.manually.proto {
1018
+ outline: 1px dashed var(--system-indigo);
1019
+ }
1020
+
1021
+ .tree-view .jstree-node.primary.externproto,
1022
+ .tree-view .jstree-node.primary.proto {
1023
+ outline: 1px solid var(--system-indigo);
1024
+ }
1025
+
1026
+ .tree-view .jstree-node.primary.node {
1027
+ outline: 1px solid var(--system-blue);
1028
+ }
1029
+
1030
+ .tree-view .jstree-node.primary.field {
1031
+ outline: 1px solid var(--system-orange);
1032
+ }
1033
+
1034
+ .tree-view .no-select {
1035
+ user-select: none;
1036
+ }
1037
+
1038
+ /* Outline Editor */
1039
+
1040
+ .scene-graph .material-symbols-outlined {
1041
+ font-size: var(--font-size);
1042
+ position: relative;
1043
+ top: 2.5px;
1044
+ color: var(--system-blue);
1045
+ }
1046
+
1047
+ .scene-graph .material-symbols-outlined:hover {
1048
+ color: var(--system-gray0);
1049
+ }
1050
+
1051
+ .scene-graph .hidden {
1052
+ display: none;
1053
+ }
1054
+
1055
+ .scene-graph .description {
1056
+ padding: 2px 0;
1057
+ font-size: smaller;
1058
+ }
1059
+
1060
+ .scene-graph .not-started-state {
1061
+ color: var(--text-color);
1062
+ }
1063
+
1064
+ .scene-graph .in-progress-state {
1065
+ color: var(--system-yellow);
1066
+ }
1067
+
1068
+ .scene-graph .complete-state {
1069
+ color: var(--system-green);
1070
+ }
1071
+
1072
+ .scene-graph .failed-state {
1073
+ color: var(--system-red);
1074
+ }
1075
+
1076
+ .scene-graph .last {
1077
+ height: 1px;
1078
+ }
1079
+
1080
+ .scene-graph .last * {
1081
+ visibility: hidden;
1082
+ }
1083
+
1084
+ .scene-graph .no-expand .jstree-ocl {
1085
+ visibility: hidden;
1086
+ }
1087
+
1088
+ .scene-graph .description .jstree-ocl {
1089
+ display: none;
1090
+ }
1091
+
1092
+ .scene-graph .icon {
1093
+ position: relative;
1094
+ top: 4px;
1095
+ margin-right: 5px;
1096
+ width: 16px;
1097
+ height: 12px;
1098
+ }
1099
+
1100
+ .scene-graph .item * {
1101
+ vertical-align: top;
1102
+ }
1103
+
1104
+ .scene-graph .item .node-type-name,
1105
+ .scene-graph .item .as {
1106
+ font-weight: bold;
1107
+ }
1108
+
1109
+ .scene-graph .name {
1110
+ position: relative;
1111
+ top: 2px;
1112
+ white-space: nowrap;
1113
+ }
1114
+
1115
+ .scene-graph .externproto > .item .name,
1116
+ .scene-graph .proto > .item .name{
1117
+ color: var(--system-indigo);
1118
+ }
1119
+
1120
+ .scene-graph .scene > .item .name {
1121
+ font-weight: bold;;
1122
+ font-style: italic;
1123
+ color: var(--system-purple);
1124
+ }
1125
+
1126
+ .scene-graph .node > .item .name {
1127
+ color: var(--system-blue);
1128
+ }
1129
+
1130
+ .scene-graph [node-id=NULL] > .item .name {
1131
+ color: var(--system-teal);
1132
+ }
1133
+
1134
+ .scene-graph .imported-node > .item .name,
1135
+ .scene-graph .exported-node > .item .name {
1136
+ color: var(--system-brown);
1137
+ }
1138
+
1139
+ .scene-graph .exported-node > .item .boolean-button {
1140
+ top: 2px
1141
+ }
1142
+
1143
+ .scene-graph .field > .item .name {
1144
+ color: var(--system-orange);
1145
+ }
1146
+
1147
+ .scene-graph .field.user-defined > .item .name {
1148
+ font-weight: bold;
1149
+ }
1150
+
1151
+ .scene-graph .field.references > .item .name {
1152
+ font-weight: bold;
1153
+ color: var(--system-brown);
1154
+ }
1155
+
1156
+ .scene-graph .special > .item .name {
1157
+ font-style: italic;
1158
+ font-weight: bold;
1159
+ color: var(--system-purple);
1160
+ }
1161
+
1162
+ .scene-graph .boolean-button {
1163
+ position: relative;
1164
+ margin-left: 10px;
1165
+ width: 28px;
1166
+ height: 12px;
1167
+ top: 4px;
1168
+ }
1169
+
1170
+ .scene-graph .color-button {
1171
+ position: relative;
1172
+ box-sizing: border-box;
1173
+ margin-left: 10px;
1174
+ top: 4px;
1175
+ width: 12px;
1176
+ height: 12px;
1177
+ border: 1px solid var(--border-color);
1178
+ border-radius: 50%;
1179
+ background: var(--border-color);
1180
+ }
1181
+
1182
+ .scene-graph .time-button {
1183
+ position: relative;
1184
+ margin-left: 10px;
1185
+ width: 12px;
1186
+ height: 12px;
1187
+ top: 4px;
1188
+ }
1189
+
1190
+ .scene-graph .url-button {
1191
+ position: relative;
1192
+ top: 4px;
1193
+ margin-left: 10px;
1194
+ font-variation-settings: 'GRAD' 200;
1195
+ }
1196
+
1197
+ .scene-graph .pointer {
1198
+ cursor: pointer;
1199
+ }
1200
+
1201
+ .scene-graph .access-type {
1202
+ flex: 1 1 auto;
1203
+ overflow: hidden;
1204
+ position: relative;
1205
+ top: 4px;
1206
+ margin-left: 10px;
1207
+ min-width: 50px;
1208
+ }
1209
+
1210
+ .scene-graph .route .access-type {
1211
+ top: 6px;
1212
+ }
1213
+
1214
+ .scene-graph .access-type img.active {
1215
+ display: none;
1216
+ position: absolute;
1217
+ pointer-events: none;
1218
+ }
1219
+
1220
+ .scene-graph .access-type img.active.activated {
1221
+ display: initial;
1222
+ }
1223
+
1224
+ .scene-graph .access-type.inputOnly img.active.input,
1225
+ .scene-graph .access-type.outputOnly img.active.output,
1226
+ .scene-graph .access-type.inputOutput img.active.input,
1227
+ .scene-graph .access-type.input img.active.input,
1228
+ .scene-graph .access-type.output img.active.output {
1229
+ left: 0;
1230
+ }
1231
+
1232
+ .scene-graph .access-type.inputOutput img.active.output {
1233
+ left: 14px;
1234
+ }
1235
+
1236
+ .externproto area.input-selector,
1237
+ .externproto area.output-selector,
1238
+ .scene.instance-scene area.input-selector,
1239
+ .scene.instance-scene area.output-selector,
1240
+ .scene.internal-scene area.input-selector,
1241
+ .scene.internal-scene area.output-selector {
1242
+ cursor: inherit;
1243
+ }
1244
+
1245
+ .scene-graph .field-routes,
1246
+ .scene-graph .single-route {
1247
+ position: absolute;
1248
+ top: 0;
1249
+ left: 0;
1250
+ width: 100%;
1251
+ height: 100%;
1252
+ pointer-events: none;
1253
+ }
1254
+
1255
+ .scene-graph .route-curves-wrapper {
1256
+ position: relative;
1257
+ width: 40px;
1258
+ }
1259
+
1260
+ .scene-graph .route-curves {
1261
+ position: absolute;
1262
+ top: -2px;
1263
+ width: 20px;
1264
+ height: 25px;
1265
+ }
1266
+
1267
+ .scene-graph .field-value-container,
1268
+ .scene-graph .special-value-container {
1269
+ flex: 1 1 auto;
1270
+ }
1271
+
1272
+ .scene-graph .field-value input,
1273
+ .scene-graph .field-value textarea,
1274
+ .scene-graph .special-value textarea {
1275
+ display: block;
1276
+ box-sizing: border-box;
1277
+ outline: none;
1278
+ border: 0;
1279
+ margin: 2px 0 2px 20px;
1280
+ padding: 0;
1281
+ min-width: 300px;
1282
+ max-width: calc(100% - 20px);
1283
+ width: calc(100% - 20px);
1284
+ background: var(--tint-color1);
1285
+ color: inherit;
1286
+ font-family: var(--sans-serif);
1287
+ font-size: inherit;
1288
+ white-space: pre;
1289
+ tab-size: 3;
1290
+ }
1291
+
1292
+ .scene-graph .field-value input {
1293
+ margin-top: 2px;
1294
+ margin-bottom: 2px;
1295
+ }
1296
+
1297
+ .scene-graph .field-value textarea,
1298
+ .scene-graph .special-value textarea {
1299
+ position: relative;
1300
+ top: -4px;
1301
+ overflow: scroll;
1302
+ height: 140px;
1303
+ white-space: pre;
1304
+ resize: vertical;
1305
+ }
1306
+
1307
+ .scene-graph .field-value input[disabled],
1308
+ .scene-graph .field-value textarea[disabled],
1309
+ .scene-graph .special-value textarea[disabled] {
1310
+ background: var(--background-disabled);
1311
+ }
1312
+
1313
+ .scene-graph .drag-before {
1314
+ box-shadow: 0 -1px 0 var(--system-green);
1315
+ }
1316
+
1317
+ .scene-graph .primary.drag-before {
1318
+ box-shadow: 0 -2px 0 var(--system-green);
1319
+ }
1320
+
1321
+ .scene-graph .drag-into > .item {
1322
+ outline: 1px solid var(--system-green);
1323
+ }
1324
+
1325
+ .scene-graph.drag-after {
1326
+ outline: 1px solid var(--system-green);
1327
+ }
1328
+
1329
+ .scene-graph .drag-after + * {
1330
+ box-shadow: 0 -1px 0 var(--system-green);
1331
+ }
1332
+
1333
+ .scene-graph .drag-after:last-child {
1334
+ box-shadow: 0 1px 0 var(--system-green);
1335
+ }
1336
+
1337
+ .scene-graph .drag-after + .primary {
1338
+ box-shadow: 0 -2px 0 var(--system-green);
1339
+ }
1340
+
1341
+ .scene-graph .primary.drag-after:last-child {
1342
+ box-shadow: 0 2px 0 var(--system-green);
1343
+ }
1344
+
1345
+ .scene-graph .button {
1346
+ cursor: pointer;
1347
+ }
1348
+
1349
+ .scene-graph .button.off {
1350
+ color: var(--system-gray1);
1351
+ }
1352
+
1353
+ .scene-graph .button.off:hover {
1354
+ color: var(--system-gray0);
1355
+ }
1356
+
1357
+ /* Spectrum Color Picker */
1358
+
1359
+ .sp-container {
1360
+ backdrop-filter: var(--tool-backdrop-filter);
1361
+ background-color: var(--tool-background-color);
1362
+ border-radius: var(--tool-border-radius);
1363
+ outline: var(--tool-border);
1364
+ box-shadow: var(--tool-shadow);
1365
+ }
1366
+
1367
+ .sp-palette-container {
1368
+ border: var(--tool-outline);
1369
+ }
1370
+
1371
+ .sp-slider,
1372
+ .sp-alpha-handle {
1373
+ backdrop-filter: var(--tool-backdrop-filter);
1374
+ background-color: var(--tool-background-color);
1375
+ border: var(--tool-border);
1376
+ }
1377
+
1378
+ .sp-slider {
1379
+ left: -3px;
1380
+ }
1381
+
1382
+ .sp-dragger {
1383
+ border-radius: 50%;
1384
+ }
1385
+
1386
+ /* Tweakpane */
1387
+
1388
+ .tp-dfwv {
1389
+ overflow: auto;
1390
+ }
1391
+
1392
+ .tp-lblv_v {
1393
+ width: 185px !important;
1394
+ }
1395
+
1396
+ .tp-mllv_i:active {
1397
+ background-color: var(--tp-monitor-background-color-active);
1398
+ }
1399
+
1400
+ .tp-mllv_i:hover {
1401
+ background-color: var(--tp-monitor-background-color-hover);
1402
+ }
1403
+
1404
+ .tp-mllv_i:active {
1405
+ background-color: var(--tp-monitor-background-color-focus);
1406
+ }
1407
+
1408
+ .tp-mllv_i:read-only {
1409
+ background-color: var(--tp-monitor-background-color-readonly);
1410
+ }
1411
+
1412
+ .tp-colv_s,
1413
+ .tp-colswv_b {
1414
+ width: 100% !important;
1415
+ }
1416
+
1417
+ .tp-colv_t {
1418
+ display: none;
1419
+ }
1420
+
1421
+ /* monaco editor */
1422
+
1423
+ .monaco-editor,
1424
+ .monaco-editor * {
1425
+ all: revert;
1426
+ }
1427
+
1428
+ .monaco-scrollable-element > .shadow {
1429
+ display: none !important;
1430
+ }
1431
+
1432
+ .monaco-inputbox > .ibwrapper {
1433
+ height: auto !important;
1434
+ }