sunrize 1.2.4 → 1.2.6

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