sunrize 1.7.35 → 1.7.36

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