sunrize 1.7.33 → 1.7.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,1440 +0,0 @@
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
- white-space: nowrap;
987
- }
988
-
989
- .tree-view .item > * {
990
- position: relative;
991
- top: 2px;
992
- }
993
-
994
- .tree-view .jstree-ocl {
995
- position: relative;
996
- top: 0;
997
- width: 22px;
998
- cursor: pointer;
999
- color: var(--expander-color);
1000
- }
1001
-
1002
- .tree-view .jstree-anchor {
1003
- display: flex;
1004
- flex-direction: row;
1005
- flex: 1 1 auto;
1006
- color: inherit;
1007
- }
1008
-
1009
- .tree-view .jstree-node.selected {
1010
- background-color: var(--tint-color1);
1011
- }
1012
-
1013
- .tree-view .jstree-node.manually.node {
1014
- outline: 1px dashed var(--system-blue);
1015
- }
1016
-
1017
- .tree-view .jstree-node.manually.externproto,
1018
- .tree-view .jstree-node.manually.proto {
1019
- outline: 1px dashed var(--system-indigo);
1020
- }
1021
-
1022
- .tree-view .jstree-node.primary.externproto,
1023
- .tree-view .jstree-node.primary.proto {
1024
- outline: 1px solid var(--system-indigo);
1025
- }
1026
-
1027
- .tree-view .jstree-node.primary.node {
1028
- outline: 1px solid var(--system-blue);
1029
- }
1030
-
1031
- .tree-view .jstree-node.primary.field {
1032
- outline: 1px solid var(--system-orange);
1033
- }
1034
-
1035
- .tree-view .no-select {
1036
- user-select: none;
1037
- }
1038
-
1039
- /* Outline Editor */
1040
-
1041
- .scene-graph {
1042
- width: min-content;
1043
- }
1044
-
1045
- .scene-graph .material-symbols-outlined {
1046
- font-size: var(--font-size);
1047
- position: relative;
1048
- top: 2.5px;
1049
- color: var(--system-blue);
1050
- }
1051
-
1052
- .scene-graph .material-symbols-outlined:hover {
1053
- color: var(--system-gray0);
1054
- }
1055
-
1056
- .scene-graph .hidden {
1057
- display: none;
1058
- }
1059
-
1060
- .scene-graph .description .jstree-anchor {
1061
- padding: 2px 0;
1062
- font-size: smaller;
1063
- }
1064
-
1065
- .scene-graph .not-started-state {
1066
- color: var(--text-color);
1067
- }
1068
-
1069
- .scene-graph .in-progress-state {
1070
- color: var(--system-yellow);
1071
- }
1072
-
1073
- .scene-graph .complete-state {
1074
- color: var(--system-green);
1075
- }
1076
-
1077
- .scene-graph .failed-state {
1078
- color: var(--system-red);
1079
- }
1080
-
1081
- /* make drag & drop work */
1082
- .scene-graph .last {
1083
- height: 2px;
1084
- }
1085
-
1086
- .scene-graph .last .item *:not(.route-curves-wrapper, .route-curves) {
1087
- visibility: hidden;
1088
- }
1089
-
1090
- .scene-graph .no-expand .jstree-ocl {
1091
- visibility: hidden;
1092
- }
1093
-
1094
- .scene-graph .description .jstree-ocl {
1095
- display: none;
1096
- }
1097
-
1098
- .scene-graph .icon {
1099
- position: relative;
1100
- top: 4px;
1101
- margin-right: 5px;
1102
- width: 16px;
1103
- height: 12px;
1104
- }
1105
-
1106
- .scene-graph .item * {
1107
- vertical-align: top;
1108
- }
1109
-
1110
- .scene-graph .item .node-type-name,
1111
- .scene-graph .item .as {
1112
- font-weight: bold;
1113
- }
1114
-
1115
- .scene-graph .name {
1116
- position: relative;
1117
- top: 2px;
1118
- white-space: nowrap;
1119
- }
1120
-
1121
- .scene-graph .externproto > .item .name,
1122
- .scene-graph .proto > .item .name{
1123
- color: var(--system-indigo);
1124
- }
1125
-
1126
- .scene-graph .scene > .item .name {
1127
- font-weight: bold;;
1128
- font-style: italic;
1129
- color: var(--system-purple);
1130
- }
1131
-
1132
- .scene-graph .node > .item .name {
1133
- color: var(--system-blue);
1134
- }
1135
-
1136
- .scene-graph [node-id=NULL] > .item .name {
1137
- color: var(--system-teal);
1138
- }
1139
-
1140
- .scene-graph .imported-node > .item .name,
1141
- .scene-graph .exported-node > .item .name {
1142
- color: var(--system-brown);
1143
- }
1144
-
1145
- .scene-graph .exported-node > .item .boolean-button {
1146
- top: 2px
1147
- }
1148
-
1149
- .scene-graph .field > .item .name {
1150
- color: var(--system-orange);
1151
- }
1152
-
1153
- .scene-graph .field.user-defined > .item .name {
1154
- font-weight: bold;
1155
- }
1156
-
1157
- .scene-graph .field.references > .item .name {
1158
- font-weight: bold;
1159
- color: var(--system-brown);
1160
- }
1161
-
1162
- .scene-graph .special > .item .name {
1163
- font-style: italic;
1164
- font-weight: bold;
1165
- color: var(--system-purple);
1166
- }
1167
-
1168
- .scene-graph .boolean-button {
1169
- position: relative;
1170
- margin-left: 10px;
1171
- width: 28px;
1172
- height: 12px;
1173
- top: 4px;
1174
- }
1175
-
1176
- .scene-graph .color-button {
1177
- position: relative;
1178
- box-sizing: border-box;
1179
- margin-left: 10px;
1180
- top: 4px;
1181
- width: 12px;
1182
- height: 12px;
1183
- border: 1px solid var(--border-color);
1184
- border-radius: 50%;
1185
- background: var(--border-color);
1186
- }
1187
-
1188
- .scene-graph .time-button {
1189
- position: relative;
1190
- margin-left: 10px;
1191
- width: 12px;
1192
- height: 12px;
1193
- top: 4px;
1194
- }
1195
-
1196
- .scene-graph .url-button {
1197
- position: relative;
1198
- top: 4px;
1199
- margin-left: 10px;
1200
- font-variation-settings: 'GRAD' 200;
1201
- }
1202
-
1203
- .scene-graph .pointer {
1204
- cursor: pointer;
1205
- }
1206
-
1207
- .scene-graph .access-type {
1208
- flex: 1 1 auto;
1209
- overflow: hidden;
1210
- position: relative;
1211
- top: 4px;
1212
- margin-left: 10px;
1213
- min-width: 50px;
1214
- }
1215
-
1216
- .scene-graph .route .access-type {
1217
- top: 6px;
1218
- }
1219
-
1220
- .scene-graph .access-type img.active {
1221
- display: none;
1222
- position: absolute;
1223
- pointer-events: none;
1224
- }
1225
-
1226
- .scene-graph .access-type img.active.activated {
1227
- display: initial;
1228
- }
1229
-
1230
- .scene-graph .access-type.inputOnly img.active.input,
1231
- .scene-graph .access-type.outputOnly img.active.output,
1232
- .scene-graph .access-type.inputOutput img.active.input,
1233
- .scene-graph .access-type.input img.active.input,
1234
- .scene-graph .access-type.output img.active.output {
1235
- left: 0;
1236
- }
1237
-
1238
- .scene-graph .access-type.inputOutput img.active.output {
1239
- left: 14px;
1240
- }
1241
-
1242
- .externproto area.input-selector,
1243
- .externproto area.output-selector,
1244
- .scene.instance-scene area.input-selector,
1245
- .scene.instance-scene area.output-selector,
1246
- .scene.internal-scene area.input-selector,
1247
- .scene.internal-scene area.output-selector {
1248
- cursor: inherit;
1249
- }
1250
-
1251
- .scene-graph .field-routes,
1252
- .scene-graph .single-route {
1253
- position: absolute;
1254
- top: 0;
1255
- left: 0;
1256
- width: 100%;
1257
- height: 100%;
1258
- pointer-events: none;
1259
- }
1260
-
1261
- .scene-graph .route-curves-wrapper {
1262
- position: relative;
1263
- width: 40px;
1264
- }
1265
-
1266
- .scene-graph .route-curves {
1267
- position: absolute;
1268
- top: -2px;
1269
- width: 20px;
1270
- height: 25px;
1271
- }
1272
-
1273
- .scene-graph .field-value-container,
1274
- .scene-graph .special-value-container {
1275
- flex: 1 1 auto;
1276
- }
1277
-
1278
- .scene-graph .field-value input,
1279
- .scene-graph .field-value textarea,
1280
- .scene-graph .special-value textarea {
1281
- display: block;
1282
- box-sizing: border-box;
1283
- outline: none;
1284
- border: 0;
1285
- margin: 2px 0 2px 20px;
1286
- padding: 0;
1287
- min-width: 300px;
1288
- max-width: calc(100% - 20px);
1289
- width: calc(100% - 20px);
1290
- background: var(--tint-color1);
1291
- color: inherit;
1292
- font-family: var(--sans-serif);
1293
- font-size: inherit;
1294
- white-space: pre;
1295
- tab-size: 3;
1296
- }
1297
-
1298
- .scene-graph .field-value input {
1299
- margin-top: 2px;
1300
- margin-bottom: 2px;
1301
- }
1302
-
1303
- .scene-graph .field-value textarea,
1304
- .scene-graph .special-value textarea {
1305
- position: relative;
1306
- top: -4px;
1307
- overflow: scroll;
1308
- height: 140px;
1309
- white-space: pre;
1310
- resize: vertical;
1311
- }
1312
-
1313
- .scene-graph .field-value input[disabled],
1314
- .scene-graph .field-value textarea[disabled],
1315
- .scene-graph .special-value textarea[disabled] {
1316
- background: var(--background-disabled);
1317
- }
1318
-
1319
- .scene-graph .drag-before {
1320
- box-shadow: 0 -1px 0 var(--system-green);
1321
- }
1322
-
1323
- .scene-graph .primary.drag-before {
1324
- box-shadow: 0 -2px 0 var(--system-green);
1325
- }
1326
-
1327
- .scene-graph .drag-into > .item {
1328
- outline: 1px solid var(--system-green);
1329
- }
1330
-
1331
- .scene-graph.drag-after {
1332
- outline: 1px solid var(--system-green);
1333
- }
1334
-
1335
- .scene-graph .drag-after + * {
1336
- box-shadow: 0 -1px 0 var(--system-green);
1337
- }
1338
-
1339
- .scene-graph .drag-after:last-child {
1340
- box-shadow: 0 1px 0 var(--system-green);
1341
- }
1342
-
1343
- .scene-graph .drag-after + .primary {
1344
- box-shadow: 0 -2px 0 var(--system-green);
1345
- }
1346
-
1347
- .scene-graph .primary.drag-after:last-child {
1348
- box-shadow: 0 2px 0 var(--system-green);
1349
- }
1350
-
1351
- .scene-graph .button {
1352
- cursor: pointer;
1353
- }
1354
-
1355
- .scene-graph .button.off {
1356
- color: var(--system-gray1);
1357
- }
1358
-
1359
- .scene-graph .button.off:hover {
1360
- color: var(--system-gray0);
1361
- }
1362
-
1363
- /* Spectrum Color Picker */
1364
-
1365
- .sp-container {
1366
- backdrop-filter: var(--tool-backdrop-filter);
1367
- background-color: var(--tool-background-color);
1368
- border-radius: var(--tool-border-radius);
1369
- outline: var(--tool-border);
1370
- box-shadow: var(--tool-shadow);
1371
- }
1372
-
1373
- .sp-palette-container {
1374
- border: var(--tool-outline);
1375
- }
1376
-
1377
- .sp-slider,
1378
- .sp-alpha-handle {
1379
- backdrop-filter: var(--tool-backdrop-filter);
1380
- background-color: var(--tool-background-color);
1381
- border: var(--tool-border);
1382
- }
1383
-
1384
- .sp-slider {
1385
- left: -3px;
1386
- }
1387
-
1388
- .sp-dragger {
1389
- border-radius: 50%;
1390
- }
1391
-
1392
- /* Tweakpane */
1393
-
1394
- .tp-dfwv {
1395
- overflow: auto;
1396
- }
1397
-
1398
- .tp-lblv_v {
1399
- width: 185px !important;
1400
- }
1401
-
1402
- .tp-mllv_i:active {
1403
- background-color: var(--tp-monitor-background-color-active);
1404
- }
1405
-
1406
- .tp-mllv_i:hover {
1407
- background-color: var(--tp-monitor-background-color-hover);
1408
- }
1409
-
1410
- .tp-mllv_i:active {
1411
- background-color: var(--tp-monitor-background-color-focus);
1412
- }
1413
-
1414
- .tp-mllv_i:read-only {
1415
- background-color: var(--tp-monitor-background-color-readonly);
1416
- }
1417
-
1418
- .tp-colv_s,
1419
- .tp-colswv_b {
1420
- width: 100% !important;
1421
- }
1422
-
1423
- .tp-colv_t {
1424
- display: none;
1425
- }
1426
-
1427
- /* monaco editor */
1428
-
1429
- .monaco-editor,
1430
- .monaco-editor * {
1431
- all: revert;
1432
- }
1433
-
1434
- .monaco-scrollable-element > .shadow {
1435
- display: none !important;
1436
- }
1437
-
1438
- .monaco-inputbox > .ibwrapper {
1439
- height: auto !important;
1440
- }