lexgui 0.1.0

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,2925 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400&display=swap');
2
+ @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700;800;900&display=swap');
3
+ @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');
4
+
5
+ :root {
6
+ --global-font: 'Noto Sans', sans-serif; /*'Rubik', sans-serif; */
7
+ --global-selected: #3e57e4;
8
+ --global-selected-light: #7b8ae2;
9
+ --global-color-primary: #232323;
10
+ --global-color-secondary: #343434;
11
+ --global-color-terciary: #444;
12
+ --global-branch-darker: #28282a;
13
+ --branch-title-background: #2e3338;
14
+ --branch-title-inactive-background: #42484e;
15
+ --global-button-color: #4e4e4e;
16
+ --global-text: #d4d4dce6;
17
+ --global-text-primary: #f4f4ffe6;
18
+ --global-text-secondary: #c6c6cfd9;
19
+ --global-dark-background: #14161a;
20
+ --global-blur-background: #292b2da9;
21
+ --transition-time: 1000;
22
+ }
23
+
24
+ ::-webkit-scrollbar {
25
+ height: 3px;
26
+ width: 4px;
27
+ background: none;
28
+ margin-right: 2px;
29
+ }
30
+
31
+ ::-webkit-scrollbar-thumb {
32
+ background: #aaaaaaa5;
33
+ border-radius: 6px;
34
+ }
35
+
36
+ ::-webkit-scrollbar-corner {
37
+ display: none;
38
+ }
39
+
40
+ ::-webkit-scrollbar-thumb:hover {
41
+ background: #aaaaaa;
42
+ }
43
+
44
+ html, body {
45
+ width: 100%;
46
+ height: 100%;
47
+ overflow: hidden; /* no general overflow in desktop app */
48
+ margin: 0;
49
+ padding: 0;
50
+ font-family: var(--global-font);
51
+ letter-spacing: -0.02em;
52
+ font-weight: 400;
53
+ }
54
+
55
+ a:any-link {
56
+ color: var(--global-selected-light);
57
+ }
58
+
59
+ canvas {
60
+ border-radius: 6px;
61
+ }
62
+
63
+ body.nocursor * {
64
+ cursor: none !important;
65
+ }
66
+
67
+ .grabbing {
68
+ cursor: move;
69
+ }
70
+
71
+ .hidden {
72
+ display: none !important;
73
+ }
74
+
75
+ ::-webkit-file-upload-button {
76
+ display: none;
77
+ }
78
+
79
+ #modal{
80
+ left: 0;
81
+ right: 0;
82
+ top: 0;
83
+ bottom: 0;
84
+ width: 100%;
85
+ height: 100%;
86
+ background-color: rgba(0, 0, 0, 0.6);
87
+ position: absolute;
88
+ z-index: 99;
89
+ }
90
+
91
+ #lexroot {
92
+ left: 0;
93
+ right: 0;
94
+ top: 0;
95
+ bottom: 0;
96
+ width: 100%;
97
+ height: 100%;
98
+ position: absolute;
99
+ }
100
+
101
+ .leximage {
102
+ text-align: center;
103
+ }
104
+
105
+ .leximage img {
106
+ max-width: 256px;
107
+ }
108
+
109
+ .lexicon {
110
+ margin-left: 4px;
111
+ cursor: pointer;
112
+ line-height: inherit !important;
113
+ }
114
+
115
+ .lexicon:hover {
116
+ color: var(--global-text-primary);
117
+ }
118
+
119
+ .lexicon:active {
120
+ color: var(--global-text-secondary);
121
+ margin-top: 0.01em;
122
+ }
123
+
124
+ #global_search {
125
+ position: absolute;
126
+ background-color: var(--global-blur-background);
127
+ -webkit-backdrop-filter: blur(12px);
128
+ backdrop-filter: blur(12px);
129
+ border-radius: 12px;
130
+ border: 1px solid #d0d0ec6b;
131
+ width: 30%;
132
+ top: 15%;
133
+ left: calc(50% - 15%);
134
+ display: flex;
135
+ flex-wrap: wrap;
136
+ z-index: 105;
137
+ -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC); /* this fixes the overflow:hidden in Chrome/Opera */
138
+ /* box-shadow: 0 2px 10px black; */
139
+ }
140
+
141
+ #global_search a {
142
+ color: var(--global-text);
143
+ padding: 16px;
144
+ border-top-left-radius: 6px;
145
+ }
146
+
147
+ #global_search input {
148
+ border-top-right-radius: 6px;
149
+ width: 100%;
150
+ flex: 50%;
151
+ background: none;
152
+ color: var(--global-text-secondary);
153
+ outline: none;
154
+ border: none;
155
+ font-family: var(--global-font);
156
+ line-height: 23px;
157
+ font-size: 14px;
158
+ font-weight: 500;
159
+ }
160
+
161
+ #global_search .searchitembox {
162
+ flex-basis: 100%;
163
+ overflow-y: scroll;
164
+ max-height: calc(512px - 48px);
165
+ }
166
+
167
+ #global_search .searchitembox::-webkit-scrollbar {
168
+ display: none;
169
+ }
170
+
171
+ #global_search .searchitembox .searchitem {
172
+ padding: 10px;
173
+ padding-left: 50px;
174
+ color: var(--global-text-primary);
175
+ font-size: 14px;
176
+ cursor: pointer;
177
+ }
178
+
179
+ #global_search .searchitembox .searchitem a {
180
+ padding: 0px;
181
+ margin-left: -28px;
182
+ margin-top: 2px;
183
+ color: var(--global-selected-light);
184
+ float: left;
185
+ }
186
+
187
+ #global_search .searchitembox .searchitem.last {
188
+ border-bottom-left-radius: 6px;
189
+ border-bottom-right-radius: 6px;
190
+ }
191
+
192
+ #global_search .searchitembox .searchitem.hovered {
193
+ background-color: var(--global-selected);
194
+ color: #f5f5f5;
195
+ }
196
+
197
+ /* Dialogs and alerts */
198
+
199
+ .lexdialog {
200
+ background: none;
201
+ position: absolute;
202
+ min-width: 256px;
203
+ /* overflow: hidden; */
204
+ box-shadow: 0 2px 8px #101010;
205
+ border-radius: 8px;
206
+ z-index: 101;
207
+ background-color: var(--global-color-secondary);
208
+ }
209
+
210
+ .lexdialogtitle {
211
+ border-top-left-radius: 8px;
212
+ border-top-right-radius: 8px;
213
+ font-size: 18px;
214
+ font-weight: bold;
215
+ color: #d9d9e3;
216
+ text-shadow: 0px 1px 4px #000;
217
+ width: calc( 100% - 24px);
218
+ padding: 8px;
219
+ padding-left: 16px;
220
+ display: flex;
221
+ justify-content: space-between;
222
+ -webkit-user-select: none; /* Safari 3.1+ */
223
+ -moz-user-select: none; /* Firefox 2+ */
224
+ -ms-user-select: none; /* IE 10+ */
225
+ user-select: none; /* Standard syntax */
226
+ align-items: center;
227
+ }
228
+
229
+ .lexdialogcontent {
230
+ padding: 15px;
231
+ word-break: break-all;
232
+ color: var(--global-text-primary);
233
+ font-size: 14px;
234
+ border-bottom-left-radius: 8px;
235
+ border-bottom-right-radius: 8px;
236
+ margin-left: 0px !important;
237
+ }
238
+
239
+ .lexdialogcontent.notitle {
240
+ border-top-left-radius: 8px;
241
+ border-top-right-radius: 8px;
242
+ padding-top: 36px;
243
+ }
244
+
245
+ .lexdialogcloser {
246
+ font-size: 16px;
247
+ color: #d9d9e3;
248
+ cursor: pointer;
249
+ margin-right: 0.4em;
250
+ -webkit-user-select: none; /* Safari 3.1+ */
251
+ -moz-user-select: none; /* Firefox 2+ */
252
+ -ms-user-select: none; /* IE 10+ */
253
+ user-select: none; /* Standard syntax */
254
+ }
255
+
256
+ .lexdialogcloser.notitle {
257
+ position: absolute;
258
+ top: 0.8em;
259
+ right: 0.6em;
260
+ }
261
+
262
+ .lexdialogcloser:hover {
263
+ color: #aaa;
264
+ }
265
+
266
+ .lexdialogcloser:active {
267
+ margin-top: 0.1em;
268
+ }
269
+
270
+ .lexdialogcloser.notitle:active {
271
+ margin-top: 0.05em;
272
+ }
273
+
274
+ /* Pocket Dialog */
275
+
276
+ .lexdialog.pocket {
277
+ margin: 3px;
278
+ background-color: var(--global-color-primary);
279
+ }
280
+
281
+ .lexdialog.pocket.dockable {
282
+ transition: ease-out left 0.2s, ease-out top 0.2s;
283
+ }
284
+
285
+ .lexdialog.pocket .lexdialogtitle {
286
+ background: var(--global-dark-background);
287
+ font-size: 14px;
288
+ }
289
+
290
+ .lexdialog.pocket .lexdialogcontent {
291
+ padding: 4px;
292
+ padding-left: 8px;
293
+ max-height: -webkit-fill-available;
294
+ opacity: 1;
295
+
296
+ -webkit-transition: max-height 0.2s;
297
+ -moz-transition: max-height 0.2s;
298
+ -ms-transition: max-height 0.2s;
299
+ -o-transition: max-height 0.2s;
300
+ transition: max-height 0.2s;
301
+
302
+ -webkit-transition: opacity 0.2s;
303
+ -moz-transition: opacity 0.2s;
304
+ -ms-transition: opacity 0.2s;
305
+ -o-transition: opacity 0.2s;
306
+ transition: opacity 0.2s;
307
+ }
308
+
309
+ .lexdialog.pocket.minimized .lexdialogtitle {
310
+ border-bottom-left-radius: 8px;
311
+ border-bottom-right-radius: 8px;
312
+ }
313
+
314
+ .lexdialog.pocket.minimized .lexdialogcontent {
315
+ max-height: 0px;
316
+ padding: 0px;
317
+ opacity: 0;
318
+
319
+ -webkit-transition: max-height 0.2s;
320
+ -moz-transition: max-height 0.2s;
321
+ -ms-transition: max-height 0.2s;
322
+ -o-transition: max-height 0.2s;
323
+ transition: max-height 0.2s;
324
+
325
+ -webkit-transition: opacity 0.2s;
326
+ -moz-transition: opacity 0.2s;
327
+ -ms-transition: opacity 0.2s;
328
+ -o-transition: opacity 0.2s;
329
+ transition: opacity 0.2s;
330
+
331
+ -webkit-transition: padding 0.2s;
332
+ -moz-transition: padding 0.2s;
333
+ -ms-transition: padding 0.2s;
334
+ -o-transition: padding 0.2s;
335
+ transition: padding 0.2s;
336
+ }
337
+
338
+ /* Pop up dialog */
339
+ .lexpopup {
340
+ background: var(--global-blur-background);
341
+ opacity: 0;
342
+ transition: opacity 1s;
343
+ }
344
+
345
+ .lexpopup.fadein {
346
+ opacity: 1;
347
+ }
348
+
349
+ .lexpopup.fadeout {
350
+ opacity: 0;
351
+ }
352
+
353
+ /* Area */
354
+
355
+ .lexarea {
356
+ background-color: var(--global-color-primary);
357
+ margin: 0;
358
+ }
359
+
360
+ /* Split bar */
361
+
362
+ .lexsplitbar {
363
+ background: rgba(186, 188, 207, 0.01);
364
+ border-radius: 8px;
365
+ }
366
+
367
+ .lexsplitbar:hover {
368
+ background-color: #8e949be8;
369
+ }
370
+
371
+ .lexsplitbar.horizontal {
372
+ cursor: e-resize;
373
+ }
374
+
375
+ .lexsplitbar.vertical {
376
+ cursor: n-resize;
377
+ transform: translateY(-3px);
378
+ left: calc(50% - 32px);
379
+ }
380
+
381
+ .lexsplitbar:hover {
382
+ background: rgba(186, 188, 207, 0.45);
383
+ }
384
+
385
+ .lexsplitbar.dragging-split-area {
386
+ background-color: var(--global-button-color);
387
+ }
388
+
389
+ /* Branches */
390
+
391
+ .lexpanel {
392
+ margin: 0;
393
+ margin-left: 3px;
394
+ overflow: hidden;
395
+ overflow-y: scroll;
396
+ }
397
+
398
+ .lexpanel::-webkit-scrollbar {
399
+ display: none;
400
+ }
401
+
402
+ .lexbranch {
403
+ border-radius: 8px;
404
+ margin-bottom: 4px !important;
405
+ }
406
+
407
+ .lexbranch .lexbranchcontent {
408
+ padding: 4px;
409
+ background-color: var(--global-color-secondary);
410
+ border-bottom-left-radius: 8px;
411
+ border-bottom-right-radius: 8px;
412
+ }
413
+
414
+ .lexbranch.last .lexbranchcontent {
415
+ overflow: hidden;
416
+ margin-bottom: 6px;
417
+ }
418
+
419
+ .lexbranchtitle {
420
+ font-size: 14px;
421
+ font-weight: bold;
422
+ color: var(--global-text);
423
+ background-color: var(--global-color-secondary);
424
+ padding: 10px;
425
+ text-shadow: 0px 1px 2px #000;
426
+ border-top-left-radius: 8px;
427
+ border-top-right-radius: 8px;
428
+ cursor: pointer;
429
+ -webkit-user-select: none; /* Safari 3.1+ */
430
+ -moz-user-select: none; /* Firefox 2+ */
431
+ -ms-user-select: none; /* IE 10+ */
432
+ user-select: none; /* Standard syntax */
433
+ }
434
+
435
+ .lexbranch.closed .lexbranchtitle {
436
+ background-color: inherit;
437
+ }
438
+
439
+ .lexbranchtitle:active {
440
+ padding-left: 11px;
441
+ }
442
+
443
+ .lexbranchtitle.wtabs {
444
+ display: flex;
445
+ padding: 0px;
446
+ cursor: default;
447
+ background-color: var(--branch-title-inactive-background);
448
+ text-shadow: none;
449
+ color: #5f6770;
450
+ }
451
+
452
+ /* Tab */
453
+ .lexbranchtitle.wtabs span {
454
+ padding: 10px;
455
+ cursor: pointer;
456
+ }
457
+
458
+ .lexbranchtitle.wtabs span:hover {
459
+ background-color: #47505872;
460
+ }
461
+
462
+ .lexbranchtitle.wtabs span:active {
463
+ margin-top: 1px;
464
+ }
465
+
466
+ .lexbranchtitle.wtabs span.first {
467
+ border-top-left-radius: 8px;
468
+ }
469
+
470
+ .lexbranchtitle.wtabs span.selected {
471
+ border-top: 2px solid var(--global-selected-light);
472
+ background-color: var(--branch-title-background);
473
+ color: var(--global-text);
474
+ text-shadow: 0px 1px 2px #000;
475
+ }
476
+
477
+ .lexbranch .branchicon {
478
+ font-size: 12px;
479
+ }
480
+
481
+ .lexbranch.first .lexbranchtitle {
482
+ margin-top: 4px;
483
+ }
484
+
485
+ .lexbranch.last.closed .lexbranchtitle {
486
+ margin-bottom: 6px;
487
+ }
488
+
489
+ .lexbranch .switch-branch-button {
490
+ float: right;
491
+ font-size: 11px;
492
+ margin: 8px 6px -4px 2px;
493
+ transition: 0.1s;
494
+ }
495
+
496
+ .lexbranch.closed .switch-branch-button {
497
+ transform: rotate(180deg);
498
+ }
499
+
500
+ /* Widgets */
501
+
502
+ .lexwidget {
503
+ display: flex;
504
+ align-items: center;
505
+ padding: 5px;
506
+ font-size: 13px;
507
+ color: #DCDCDC;
508
+ line-height: 2;
509
+ overflow: hidden;
510
+ }
511
+
512
+ .lexinlinewidgets .lexwidget {
513
+ padding-left: 10px;
514
+ padding-right: 10px;
515
+ }
516
+
517
+ .lexinlinewidgets .lexwidgetname {
518
+ justify-content: end;
519
+ -moz-transform: translateX(-1em);
520
+ -webkit-transform: translateX(-1em);
521
+ transform: translateX(-1em);
522
+ }
523
+
524
+ .lexwidget.nobranch {
525
+ padding-left: 12px;
526
+ }
527
+
528
+ .lexwidget.auto {
529
+ width: unset !important;
530
+ }
531
+
532
+ .lexwidget.micro {
533
+ min-width: 24px;
534
+ width: 3% !important;
535
+ padding-left: 4px;
536
+ padding-right: 4px;
537
+ }
538
+
539
+ .lexwidget.micro button {
540
+ padding-left: 4px;
541
+ padding-right: 4px;
542
+ }
543
+
544
+ .lexwidget.small {
545
+ width: 5% !important;
546
+ }
547
+
548
+ .lexwidget.md {
549
+ width: 75% !important;
550
+ }
551
+
552
+ .lexinlinewidgets {
553
+ display: flex;
554
+ }
555
+
556
+ .lexwidgetseparator div {
557
+ -ms-transform: translateY(-11px);
558
+ -webkit-transform: translateY(-11px);
559
+ transform: translateY(-11px);
560
+ height: 2px;
561
+ width: 11px;
562
+ cursor: ew-resize;
563
+ color: var(--global-button-color);
564
+ }
565
+
566
+ .lexwidgetseparator div:hover {
567
+ color: #4d4d5ac4;
568
+ }
569
+
570
+ .lexwidgetseparator div div {
571
+ background: #dddddd33;
572
+ }
573
+
574
+ .lexwidgetname {
575
+ white-space: nowrap;
576
+ overflow: hidden;
577
+ display: flex;
578
+ justify-content: space-between;
579
+ font-family: var(--global-font);
580
+ color: var(--global-text-secondary);
581
+ }
582
+
583
+ .lexwidget input {
584
+ font-family: var(--global-font);
585
+ background: none;
586
+ padding: 3px;
587
+ color: var(--global-text-primary);
588
+ font-size: 13px;
589
+ font-weight: 500;
590
+ outline: none;
591
+ border: none;
592
+ border-bottom: 1px solid #bbbbbb47;
593
+ }
594
+
595
+ .lexwidget .lextext, .lexwidget .lexnumber {
596
+ padding-left: 4px;
597
+ }
598
+
599
+ .lexwidget .lextext div {
600
+ color: #b2b2b5d6;
601
+ }
602
+
603
+ .lexwidget .lextext input:focus {
604
+ border-bottom: 2px solid var(--global-selected);
605
+ }
606
+
607
+ .lexwidget .inputicon {
608
+ border-bottom: 1px solid #bbbbbb47;
609
+ padding: 4px;
610
+ font-size: 11px;
611
+ margin-top: 2px;
612
+ }
613
+
614
+ .lexwidget:has(input:focus) .inputicon {
615
+ border-bottom: 2px solid var(--global-selected);
616
+ }
617
+
618
+ .lexwidget textarea {
619
+ word-break: break-word;
620
+ font-family: var(--global-font);
621
+ font-size: 13px;
622
+ background: none;
623
+ padding: 3px;
624
+ color: var(--global-text-primary);
625
+ font-weight: 600;
626
+ outline:none;
627
+ border: none;
628
+ border-bottom: 1px solid #bbbbbb47;
629
+ }
630
+
631
+ .lexwidget textarea:disabled {
632
+ resize: none;
633
+ border-bottom: none;
634
+ }
635
+
636
+ .lexwidget input.colorinput {
637
+ border: none;
638
+ margin-left: -4px;
639
+ }
640
+
641
+ .lexwidget input:disabled {
642
+ outline: none;
643
+ border: none;
644
+ color: #919098db;
645
+ }
646
+
647
+ .lexseparator {
648
+ /* border-top: 1px solid #111; */
649
+ border-bottom: 1px solid var(--global-button-color);
650
+ margin: 5px 0 5px 10px;
651
+ }
652
+
653
+ .lexbranch .lexseparator {
654
+ border-top: 1px solid var(--global-dark-background);
655
+ border-bottom: 2px solid var(--global-button-color);
656
+ width: -moz-calc(100% - 8px);
657
+ width: -webkit-calc(100% - 8px);
658
+ width: calc(100% - 8px);
659
+ margin: 5px 0 5px 4px;
660
+ }
661
+
662
+ .lexfilter input {
663
+ font-size: 12px;
664
+ font-family: var(--global-font);
665
+ }
666
+
667
+ .lextitle {
668
+ width: fit-content;
669
+ width: -moz-fit-content;
670
+ color: #ddd;
671
+ font-weight: 600;
672
+ font-size: 14px;
673
+ margin: 12px;
674
+ padding: 2px;
675
+ padding-left: 12px;
676
+ padding-right: 12px;
677
+ display: grid;
678
+ align-content: center;
679
+ border-radius: 12px;
680
+ background-color: var(--global-color-secondary);
681
+ display: flex;
682
+ -webkit-user-select: none; /* Safari 3.1+ */
683
+ -moz-user-select: none; /* Firefox 2+ */
684
+ -ms-user-select: none; /* IE 10+ */
685
+ user-select: none; /* Standard syntax */
686
+ }
687
+
688
+ .lexinlinewidgets .lextitle {
689
+ margin: 8px;
690
+ height: 20px;
691
+ flex: none;
692
+ }
693
+
694
+ .lextitle a {
695
+ font-size: 12px;
696
+ margin-top: 0.3em;
697
+ margin-right: 0.7em;
698
+ color: var(--global-selected-light);
699
+ }
700
+
701
+ .lextitle.link {
702
+ color: #aaa;
703
+ text-decoration: none;
704
+ transition: padding-left 0.1s;
705
+ }
706
+
707
+ .lextitle.link:hover {
708
+ color: #049EF4;
709
+ padding-left: 8px;
710
+ }
711
+
712
+
713
+ /* Buttons */
714
+
715
+ .lexbutton {
716
+ display: grid;
717
+ align-content: center;
718
+ background-color: var(--global-button-color);
719
+ border-radius: 8px;
720
+ border: none;
721
+ margin-top: 2px;
722
+ height: 22px !important;
723
+ color: var(--global-text);
724
+ font-weight: 500;
725
+ outline: none;
726
+ white-space: nowrap;
727
+ overflow: hidden;
728
+ cursor: pointer;
729
+ font-size: 12px;
730
+ font-family: var(--global-font);
731
+ }
732
+
733
+ .lexbutton.accept {
734
+ background-color: var(--global-selected);
735
+ }
736
+
737
+ .lexbutton.foldback {
738
+ padding: 11px 10px;
739
+ padding-bottom: 14px;
740
+ float: right;
741
+ align-items: center;
742
+ margin-right: 4px;
743
+ margin-top: 2px;
744
+ }
745
+
746
+ .lexbutton a {
747
+ margin-left: 0px;
748
+ font-size: 10px;
749
+ }
750
+
751
+ .lexbutton.array a {
752
+ margin-top: 3px;
753
+ }
754
+
755
+ .lexbutton:hover {
756
+ background-color: #ffffff30;
757
+ color: var(--global-text-primary);
758
+ }
759
+
760
+ .lexbutton.accept:hover {
761
+ background-color: #3b6790;
762
+ }
763
+
764
+ .lexbutton:active:not(.lexbutton.combo) {
765
+ background-color: #4e4e4e;
766
+ color: var(--global-text-secondary);
767
+ transform: scale(0.99);
768
+ }
769
+
770
+ .lexbutton.selected {
771
+ background: #3c4145;
772
+ outline: 1px solid #8c9bc7;
773
+ color: #DDD;
774
+ }
775
+
776
+ .lexbutton.noname {
777
+ margin-left: 0px;
778
+ margin-top: 0px;
779
+ }
780
+
781
+ /* Combo Buttons */
782
+
783
+ .lexcombobuttons {
784
+ display: flex;
785
+ justify-content: center;
786
+ }
787
+
788
+ .lexcombobuttons.right {
789
+ justify-content: right;
790
+ }
791
+
792
+ .lexcombobuttons.left {
793
+ justify-content: left;
794
+ }
795
+
796
+ .lexcombobuttons .lexbutton.combo {
797
+ margin-left: 0px;
798
+ border-radius: 0px;
799
+ display: flex;
800
+ padding-top: 0.35em;
801
+ padding-bottom: 1.7em;
802
+ transition: 0.2s;
803
+ }
804
+
805
+ .lexcombobuttons .lexbutton.combo:first-child {
806
+ border-top-left-radius: 5px;
807
+ border-bottom-left-radius: 5px;
808
+ }
809
+
810
+ .lexcombobuttons .lexbutton.combo:last-child {
811
+ border-top-right-radius: 5px;
812
+ border-bottom-right-radius: 5px;
813
+ }
814
+
815
+ .lexcombobuttons .lexbutton.combo.selected {
816
+ background-color: var(--global-selected);
817
+ outline: none;
818
+ color: #fff;
819
+ }
820
+
821
+ .lexcombobuttons .lexbutton.combo:active {
822
+ outline: none;
823
+ color: #fff;
824
+ padding-top: 0.2em;
825
+ }
826
+
827
+ .lexcombobuttons .lexbutton.combo a {
828
+ padding: 2px;
829
+ /* margin-right: 2px; */
830
+ padding-top: 0.3em;
831
+ }
832
+
833
+ .lexcombobuttons .lexbutton.combo span {
834
+ line-height: 18px;
835
+ }
836
+
837
+ /* Dropdown (Combo) */
838
+
839
+ .lexdropdown {
840
+ display: grid;
841
+ align-content: center;
842
+ }
843
+
844
+ .lexdropdown .lexwidget {
845
+ padding: 0;
846
+ }
847
+
848
+ .lexdropdown .lexfilter {
849
+ width: calc(100% - 6px)!important;
850
+ background-color: var(--global-color-primary);
851
+ padding: 2px 3px;
852
+ }
853
+
854
+ .lexdropdown .lexoptions .lexlistitem {
855
+ font-size: 11px;
856
+ }
857
+
858
+ .lexdropdown .option {
859
+ display: flex;
860
+ flex-direction: column;
861
+ align-items: center;
862
+ width: 100%;
863
+ }
864
+
865
+ .lexdropdown .option:not(.media) {
866
+ padding-left: 12px;
867
+ }
868
+
869
+ .lexdropdown .lexlistitem {
870
+ height: fit-content;
871
+ }
872
+
873
+ .lexdropdown ul {
874
+ position: fixed;
875
+ list-style: none;
876
+ background-color: var(--global-blur-background);
877
+ -webkit-backdrop-filter: blur(12px);
878
+ backdrop-filter: blur(12px);
879
+ padding: 4px 0px;
880
+ z-index: 10;
881
+ margin-top: 5px;
882
+ width: 100%;
883
+ box-shadow: 0 2px 10px black;
884
+ border-bottom-left-radius: 10px;
885
+ border-bottom-right-radius: 10px;
886
+ height: -webkit-fill-available;
887
+ max-height: 400px;
888
+ /* overflow: scroll; */
889
+ }
890
+
891
+ .lexdropdown ul::-webkit-scrollbar {
892
+ display: none;
893
+ }
894
+
895
+ .lexdropdown ul span{
896
+ display: block;
897
+ overflow-y: scroll;
898
+ overflow-x: hidden;
899
+ height: 100%;
900
+ }
901
+
902
+ .lexdropdown .lexdropdownitem {
903
+ width: 100%;
904
+ cursor: pointer;
905
+ color: rgba(216, 218, 230, 0.826);
906
+ font-size: 13px;
907
+ height: 20px;
908
+ line-height: 22px;
909
+ align-content: center;
910
+ display: flow-root;
911
+ padding: 2px 0px;
912
+ -webkit-user-select: none; /* Safari 3.1+ */
913
+ -moz-user-select: none; /* Firefox 2+ */
914
+ -ms-user-select: none; /* IE 10+ */
915
+ user-select: none; /* Standard syntax */
916
+ }
917
+
918
+ .lexdropdown .lexdropdownitem:hover {
919
+ background-color: var(--branch-title-inactive-background);
920
+ color: var(--global-text-primary);
921
+ }
922
+
923
+ .lexdropdown .lexdropdownitem:active {
924
+ color: #fff;
925
+ }
926
+
927
+ .lexdropdown .lexdropdownitem a {
928
+ display: none;
929
+ right: 16px;
930
+ position: absolute;
931
+ }
932
+
933
+ .lexdropdown .lexdropdownitem.selected {
934
+ font-weight: 700;
935
+ background-color: var(--global-selected);
936
+ }
937
+
938
+ .lexdropdown .lexdropdownitem.selected a {
939
+ display: block;
940
+ }
941
+
942
+ .lexdropdown img {
943
+ max-height: 64px;
944
+ margin-top: 8px;
945
+ }
946
+
947
+ /* Toggle check box */
948
+
949
+ input[type=checkbox] {
950
+ position: relative;
951
+ cursor: pointer;
952
+ appearance: none;
953
+ -moz-appearance: none;
954
+ -webkit-appearance: none;
955
+ }
956
+
957
+ input[type=checkbox]:before {
958
+ content: "";
959
+ display: block;
960
+ position: absolute;
961
+ width: 0.8em;
962
+ height: 0.8em;
963
+ top: 0;
964
+ left: 0;
965
+ }
966
+
967
+ input[type=checkbox]:checked:after {
968
+ content: "";
969
+ display: block;
970
+ width: 4px;
971
+ height: 8px;
972
+ border: solid var(--global-selected);
973
+ border-width: 0 2px 2px 0;
974
+ -webkit-transform: rotate(45deg);
975
+ -ms-transform: rotate(45deg);
976
+ transform: rotate(45deg);
977
+ position: absolute;
978
+ top: -1px;
979
+ left: 6px;
980
+ }
981
+
982
+ .lexcheckbox {
983
+ width: 1.1em;
984
+ height: 1.1em;
985
+ display: inline-block;
986
+ background-color: #1f1f1f;
987
+ color: #fff;
988
+ border: 1px solid var(--global-dark-background);
989
+ vertical-align: -3px;
990
+ border-radius: 2px;
991
+ margin: 0 4px;
992
+ margin-top: 2px;
993
+ text-align: center;
994
+ -webkit-user-select: none; /* Safari 3.1+ */
995
+ -moz-user-select: none; /* Firefox 2+ */
996
+ -ms-user-select: none; /* IE 10+ */
997
+ user-select: none; /* Standard syntax */
998
+ cursor: pointer;
999
+ }
1000
+
1001
+ .lexcheckbox a {
1002
+ line-height: 16px;
1003
+ }
1004
+
1005
+ .lexcheckbox:has(.checkbox.on) {
1006
+ vertical-align: 0px;
1007
+ border: none;
1008
+ }
1009
+
1010
+ .lexcheckbox.disabled {
1011
+ cursor: default;
1012
+ border: 1px solid rgba(221, 218, 218, 0.672);
1013
+ }
1014
+
1015
+ .lexcheckbox .checkbox {
1016
+ display: block;
1017
+ width: 100%;
1018
+ height: 100%;
1019
+ border-radius: 2px;
1020
+ -webkit-user-select: none; /* Safari 3.1+ */
1021
+ -moz-user-select: none; /* Firefox 2+ */
1022
+ -ms-user-select: none; /* IE 10+ */
1023
+ user-select: none; /* Standard syntax */
1024
+ }
1025
+
1026
+ .lexcheckbox .checkbox.on {
1027
+ background-color: var(--global-selected);
1028
+ }
1029
+
1030
+ .lexcheckboxcont #checkboxtext {
1031
+ font-weight: bold;
1032
+ margin-left: 4px;
1033
+ }
1034
+
1035
+ .lexcheckboxsubmenu {
1036
+ width: 100%;
1037
+ padding: 6px;
1038
+ color: var(--global-text-secondary);
1039
+ font-size: 12px;
1040
+ margin-top: -1px;
1041
+ }
1042
+
1043
+ /* Input Color Widget */
1044
+
1045
+ .lexcolor {
1046
+ display: flex;
1047
+ flex-wrap: wrap;
1048
+ padding-left: 6px;
1049
+ padding-right: 6px;
1050
+ align-items: center;
1051
+ }
1052
+
1053
+ .lexcolor input {
1054
+ width: 96px;
1055
+ }
1056
+
1057
+ .lexcolor input[type="color"]::-webkit-color-swatch-wrapper {
1058
+ padding: 2px;
1059
+ border-radius: 4px;
1060
+
1061
+ }
1062
+ .lexcolor input[type="color"]::-webkit-color-swatch {
1063
+ border-radius: 4px;
1064
+ }
1065
+
1066
+ .lexcolor:has(input:focus) input[type="color"] {
1067
+ outline: 2px solid var(--global-selected);
1068
+ border-radius: 4px;
1069
+ }
1070
+
1071
+ .lexcolor .colorinfo {
1072
+ color: var(--global-text-primary);
1073
+ min-width: 56px;
1074
+ margin-left: 8px;
1075
+ font-weight: 600;
1076
+ }
1077
+
1078
+ .lexcolor input[type="color"] {
1079
+ cursor: pointer;
1080
+ }
1081
+
1082
+ /* Vector Widgets */
1083
+
1084
+ .lexvector {
1085
+ display: flex;
1086
+ }
1087
+
1088
+ .lexvector a {
1089
+ width: 48px;
1090
+ font-size: 11px;
1091
+ margin-left: 6px;
1092
+ margin-right: 6px;
1093
+ }
1094
+
1095
+ .lexvector .vecbox {
1096
+ display: flex;
1097
+ position: relative;
1098
+ width: 100%;
1099
+ border-radius: 4px;
1100
+ border: 1px solid #908fa356;
1101
+ margin-right: 2px;
1102
+ background: var(--global-color-secondary);
1103
+ }
1104
+
1105
+ .lexwidget .numberbox .drag-icon, .lexwidget .vecbox .drag-icon {
1106
+ position: absolute;
1107
+ width: 2px;
1108
+ right: 0.25em;
1109
+ top: 25%;
1110
+ font-size: 11px;
1111
+ color: var(--global-text-secondary);
1112
+ z-index: 11;
1113
+ }
1114
+
1115
+ .lexvector .vecbox:has(input:focus) {
1116
+ outline: 2px solid var(--global-selected);
1117
+ }
1118
+
1119
+ .lexvector .vecbox span {
1120
+ min-width: 3px;
1121
+ width: 3px;
1122
+ justify-content: center;
1123
+ background-color: #22292fbf;
1124
+ display: flex;
1125
+ font-weight: 600;
1126
+ border-radius: 4px;
1127
+ -webkit-user-select: none; /* Safari 3.1+ */
1128
+ -moz-user-select: none; /* Firefox 2+ */
1129
+ -ms-user-select: none; /* IE 10+ */
1130
+ user-select: none; /* Standard syntax */
1131
+ }
1132
+
1133
+ .lexvector .vecbox span.x {
1134
+ background-color:#fb8080;
1135
+ }
1136
+
1137
+ .lexvector .vecbox span.y {
1138
+ background-color:#8eef97;
1139
+ }
1140
+
1141
+ .lexvector .vecbox span.z {
1142
+ background-color:#8da5f3;
1143
+ }
1144
+
1145
+ .lexvector .vecbox span.w {
1146
+ background-color:#ffffff;
1147
+ }
1148
+
1149
+ /* Chrome, Safari, Edge, Opera */
1150
+ input::-webkit-outer-spin-button,
1151
+ input::-webkit-inner-spin-button {
1152
+ appearance: none;
1153
+ -webkit-appearance: none;
1154
+ -moz-appearance: none;
1155
+ margin: 0;
1156
+ }
1157
+
1158
+ /* Firefox */
1159
+ input[type=number] {
1160
+ -moz-appearance: textfield;
1161
+ }
1162
+
1163
+ .lexvector .vecbox .vecinput, .numberbox .vecinput {
1164
+ font-size: 12px;
1165
+ margin-left: 2px;
1166
+ border: none;
1167
+ width: 100%;
1168
+ }
1169
+
1170
+ .lexvector .vecbox .vecinput:focus, .numberbox .vecinput:focus {
1171
+ color: #c1c1dbef;
1172
+ }
1173
+
1174
+ /* .lexvector .vecbox .vecinput.v2 {
1175
+ width: 66%;
1176
+ }
1177
+
1178
+ .lexvector .vecbox .vecinput.v3 {
1179
+ width: 50%;
1180
+ }
1181
+
1182
+ .lexvector .vecbox .vecinput.v4 {
1183
+ width: 33%;
1184
+ } */
1185
+
1186
+ /* Number Widget */
1187
+
1188
+ .lexwidget .numberbox {
1189
+ display: grid;
1190
+ border-radius: 4px;
1191
+ border: 1px solid #908fa356;
1192
+ margin-right: 2px;
1193
+ position: relative;
1194
+ }
1195
+
1196
+ .lexwidget .numberbox:has(input:focus) {
1197
+ outline: 2px solid var(--global-selected-light);
1198
+ }
1199
+
1200
+ .lexinputslider {
1201
+ appearance: none;
1202
+ -moz-appearance: none;
1203
+ -webkit-appearance: none;
1204
+ border: none !important;
1205
+ width: calc( 100% - 12px );
1206
+ outline: none;
1207
+ opacity: 0.7;
1208
+ transition: opacity .2s;
1209
+ -moz-transition: .2s;
1210
+ -webkit-transition: .2s;
1211
+ }
1212
+
1213
+ .lexinputslider:hover {
1214
+ opacity: 1;
1215
+ }
1216
+
1217
+ input[type="range"] {
1218
+ height: 1px;
1219
+ }
1220
+
1221
+ .lexinputslider::-moz-range-track {
1222
+ height: 1px;
1223
+ background: #a19dc9;
1224
+ }
1225
+
1226
+ .lexinputslider::-webkit-slider-runnable-track {
1227
+ height: 1px;
1228
+ background: #a19dc9;
1229
+ }
1230
+
1231
+ .lexinputslider::-webkit-slider-thumb {
1232
+ appearance: none;
1233
+ -webkit-appearance: none;
1234
+ margin-top: -4px;
1235
+ width: 8px;
1236
+ height: 8px;
1237
+ border-radius: 8px;
1238
+ background: #c9c7de;
1239
+ cursor: pointer;
1240
+ }
1241
+
1242
+ .lexinputslider::-moz-range-thumb {
1243
+ margin-top: -8px;
1244
+ width: 8px;
1245
+ height: 8px;
1246
+ border-radius: 8px;
1247
+ background: #a19dc9;
1248
+ cursor: pointer;
1249
+ }
1250
+
1251
+ .lexwidget .numberbox .drag-icon {
1252
+ right: 0.8em;
1253
+ }
1254
+
1255
+ /* Tabs Widget */
1256
+
1257
+ .lextabscontainer {
1258
+ width: 100%;
1259
+ height: 100%;
1260
+ display: flex;
1261
+ }
1262
+
1263
+ .lextabscontainer.horizontal {
1264
+ display: table;
1265
+ }
1266
+
1267
+ .lextabscontainer .tabs {
1268
+ padding: 4px;
1269
+ background: none !important;
1270
+ border-right: 1px solid #a2a5c36a;
1271
+ justify-items: center;
1272
+ min-width: 32px;
1273
+ }
1274
+
1275
+ .lextabscontainer.horizontal .tabs {
1276
+ border-right: none;
1277
+ border-bottom: 1px solid #a2a5c36a;
1278
+ display: flex;
1279
+ }
1280
+
1281
+ .lextabscontainer .widgets {
1282
+ width: 100%;
1283
+ padding: 4px;
1284
+ }
1285
+
1286
+ .lextabscontainer .tabs .lextab {
1287
+ padding: 4px;
1288
+ margin-bottom: 10px;
1289
+ border-radius: 4px;
1290
+ color: #8184a264;
1291
+ cursor: pointer;
1292
+ margin-right: 4px;
1293
+ text-align: center;
1294
+ }
1295
+
1296
+ .lextabscontainer.horizontal .tabs .lextab {
1297
+ margin-bottom: 0px;
1298
+ margin-right: 10px;
1299
+ }
1300
+
1301
+ .lextabscontainer.horizontal .tabs .lextab a.withname {
1302
+ margin-left: 6px;
1303
+ }
1304
+
1305
+ .lextabscontainer .tabs .lextab:hover {
1306
+ color: var(--global-text-primary);
1307
+ }
1308
+
1309
+ .lextabscontainer .tabs .lextab.last {
1310
+ margin-right: 4px;
1311
+ }
1312
+
1313
+ .lextabscontainer .tabs .lextab.selected {
1314
+ color: var(--global-text-primary);
1315
+ }
1316
+
1317
+ .lextabscontainer .tabs .lextab:active {
1318
+ color: var(--global-text-secondary);
1319
+ }
1320
+
1321
+ /* Data Tree Widget */
1322
+
1323
+ .lextree {
1324
+ border-radius: 8px;
1325
+ width: calc( 100% - 6px );
1326
+ min-height: 12px;
1327
+ margin: 0 auto;
1328
+ margin-top: 6px;
1329
+ margin-bottom: -8px;
1330
+ color: var(--global-text-secondary);
1331
+ font-weight: 600;
1332
+ font-size: 13px;
1333
+ }
1334
+
1335
+ .lextree .lextreetools {
1336
+ background: var(--global-color-secondary);
1337
+ padding: 2px;
1338
+ padding-left: 6px;
1339
+ padding-right: 6px;
1340
+ display: flex;
1341
+ align-items: center;
1342
+ border-radius: 10px;
1343
+ margin-top: 4px;
1344
+ }
1345
+
1346
+ .lextree .lextreetools.notitle {
1347
+ padding-top: 14px;
1348
+ border-top-left-radius: 8px;
1349
+ border-top-right-radius: 8px;
1350
+ }
1351
+
1352
+ .lextree .lextreetools a {
1353
+ margin-right: 8px;
1354
+ }
1355
+
1356
+ .lextree span {
1357
+ padding: 8px;
1358
+ display: block;
1359
+ border-top-left-radius: 8px;
1360
+ border-top-right-radius: 8px;
1361
+ color: var(--global-text-secondary);
1362
+ -webkit-user-select: none; /* Safari 3.1+ */
1363
+ -moz-user-select: none; /* Firefox 2+ */
1364
+ -ms-user-select: none; /* IE 10+ */
1365
+ user-select: none; /* Standard syntax */
1366
+ font-size: 16px;
1367
+ font-weight: 800;
1368
+ }
1369
+
1370
+ .lextree ul {
1371
+ padding-bottom: 16px;
1372
+ padding-inline-start: 0px;
1373
+ font-size: 14px;
1374
+ }
1375
+
1376
+ .lextree input {
1377
+ background: none;
1378
+ color: var(--global-text-primary);
1379
+ outline:none;
1380
+ border: none;
1381
+ font-family: var(--global-font);
1382
+ line-height: 23px;
1383
+ font-size: 13px;
1384
+ }
1385
+
1386
+ .lextree .lextreeitem {
1387
+ list-style-type: none;
1388
+ align-items: center;
1389
+ margin-bottom: 3px;
1390
+ line-height: 25px;
1391
+ font-size: 13px;
1392
+ cursor: pointer;
1393
+ outline: none;
1394
+ border-radius: 6px;
1395
+ -webkit-user-select: none; /* Safari 3.1+ */
1396
+ -moz-user-select: none; /* Firefox 2+ */
1397
+ -ms-user-select: none; /* IE 10+ */
1398
+ user-select: none; /* Standard syntax */
1399
+ }
1400
+
1401
+ .lextree .lextreeitem.draggingover {
1402
+ background: #7b8ae27b;
1403
+ }
1404
+
1405
+ .lextree .lextreeitem:hover {
1406
+ color: var(--global-text-primary);
1407
+ background: rgba(129, 132, 163, 0.191);
1408
+ }
1409
+
1410
+ .lextree .lextreeitem.selected {
1411
+ color: var(--global-text-primary);
1412
+ background: var(--global-selected);
1413
+ }
1414
+
1415
+ .lextree .lextreeitem a {
1416
+ margin-right: 6px;
1417
+ margin-top: 4px;
1418
+ font-size: 10px;
1419
+ }
1420
+
1421
+ .lextree .lextreeitem a.hierarchy {
1422
+ font-size: 5px;
1423
+ margin-right: 6px;
1424
+ margin-top: 4px;
1425
+ vertical-align: 2px;
1426
+ }
1427
+
1428
+ .lextree .lextreeitem a:hover {
1429
+ color: var(--global-text-primary);
1430
+ }
1431
+
1432
+ .lextree .lextreeitem a:active {
1433
+ color: var(--global-button-color);
1434
+ margin-top: 6px;
1435
+ }
1436
+
1437
+ .lextree .lextreeitem.parent a {
1438
+ font-size: 10px;
1439
+ vertical-align: 1px;
1440
+ }
1441
+
1442
+ /* .lextree .lextreeitem.parent a.caret {
1443
+ margin-right: 6px;
1444
+ } */
1445
+
1446
+ .lextree .lextreeitem .itemicon {
1447
+ font-size: 10px !important;
1448
+ float: right;
1449
+ margin-top: 7px;
1450
+ margin-right: 8px;
1451
+ }
1452
+
1453
+ .lextree .lextreeitem .itemicon:hover {
1454
+ color: var(--global-selected);
1455
+ }
1456
+
1457
+ .lextree .lextreeitem.selected .itemicon:hover {
1458
+ color: var(--global-text-secondary);
1459
+ }
1460
+
1461
+ .lextree .lextreeitem .itemicon:active {
1462
+ margin-top: 7px;
1463
+ }
1464
+
1465
+
1466
+ /* Progress bar */
1467
+
1468
+ .lexprogress {
1469
+ display: flex;
1470
+ justify-content: center;
1471
+ align-items: center;
1472
+ }
1473
+
1474
+ .lexprogressbar {
1475
+ border: none !important;
1476
+ width: 100%;
1477
+ outline: none;
1478
+ opacity: 0.7;
1479
+ -webkit-transition: .2s;
1480
+ transition: opacity .2s;
1481
+ margin-top: 2px;
1482
+ }
1483
+
1484
+ .lexprogressbar.editable:hover{
1485
+ cursor: grab;
1486
+ }
1487
+
1488
+ .lexprogressbar.editable:active{
1489
+ cursor: grabbing;
1490
+ }
1491
+
1492
+ /* The gray background in Chrome, etc. */
1493
+ meter::-webkit-meter-bar {
1494
+ background: var(--global-color-primary);
1495
+ height: 12px;
1496
+ }
1497
+
1498
+ /* (optimum) */
1499
+ meter:-moz-meter-optimum::-moz-meter-bar {
1500
+ background: var(--global-selected-light);
1501
+ }
1502
+ meter::-webkit-meter-optimum-value {
1503
+ background: var(--global-selected-light);
1504
+ }
1505
+
1506
+ /* (sub-optimum)*/
1507
+ meter:-moz-meter-sub-optimum::-moz-meter-bar {
1508
+ background: #ffc107;
1509
+ }
1510
+ meter::-webkit-meter-suboptimum-value {
1511
+ background: #ffc107;
1512
+ }
1513
+
1514
+ /* (even less good)*/
1515
+ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
1516
+ background: #dc3545;
1517
+ }
1518
+ meter::-webkit-meter-even-less-good-value {
1519
+ background: #dc3545;
1520
+ }
1521
+
1522
+ /* Menu Bar */
1523
+
1524
+ .lexmenubar {
1525
+ width: 100%;
1526
+ background-color: var(--global-color-primary);
1527
+ display: flex;
1528
+ height: 100%;
1529
+ color: var(--global-text);
1530
+ font-size: 14px;
1531
+ font-weight: 500;
1532
+ }
1533
+
1534
+ .lexmenubar .lexmenuentry {
1535
+ font-size: 13px;
1536
+ min-height: 48px;
1537
+ height: 100%;
1538
+ display: flex;
1539
+ justify-content: center;
1540
+ align-items: center;
1541
+ padding-left: 10px;
1542
+ padding-right: 10px;
1543
+ cursor: pointer;
1544
+ margin-left: 4px;
1545
+ -webkit-user-select: none; /* Safari 3.1+ */
1546
+ -moz-user-select: none; /* Firefox 2+ */
1547
+ -ms-user-select: none; /* IE 10+ */
1548
+ user-select: none; /* Standard syntax */
1549
+ }
1550
+
1551
+ .lexmenubar .lexmenuentry:hover{
1552
+ color: var(--global-text-primary);
1553
+ }
1554
+
1555
+ .lexmenubar .lexmenuentry:active{
1556
+ color: #b7b7cba4;
1557
+ margin-top: 0.05em;
1558
+ }
1559
+
1560
+ .lexcontextmenu {
1561
+ position: absolute;
1562
+ padding-right: 14px;
1563
+ z-index: 1001;
1564
+ border-bottom-right-radius: 6px;
1565
+ border-bottom-left-radius: 6px;
1566
+ }
1567
+
1568
+ .lexcontextmenu:focus {
1569
+ outline: none;
1570
+ }
1571
+
1572
+ .lexcontextmenu .lexcontextmenuentry {
1573
+ font-size: 12px;
1574
+ width: 100%;
1575
+ background-color: #343434c2;
1576
+ color: #d5d7dbee;
1577
+ padding: 4px;
1578
+ padding-left: 14px;
1579
+ padding-right: 0px;
1580
+ padding-bottom: 6px;
1581
+ cursor: pointer;
1582
+ -webkit-user-select: none;
1583
+ -moz-user-select: none;
1584
+ -ms-user-select: none;
1585
+ user-select: none;
1586
+ /* This makes properties like top, left to be relative to parents */
1587
+ transform: translateZ(0);
1588
+ -webkit-transform: translateZ(0);
1589
+ -moz-transform: translateZ(0);
1590
+ display: flex;
1591
+ flex-direction: row;
1592
+ align-content: center;
1593
+ justify-content: space-between;
1594
+ position: relative;
1595
+ }
1596
+
1597
+ .lexcontextmenu .lexcontextmenuentry:before {
1598
+ content:"";
1599
+ position:absolute;
1600
+ width: 100%;
1601
+ height: 100%;
1602
+ top:0;
1603
+ left:0;
1604
+ -webkit-backdrop-filter: blur(16px);
1605
+ backdrop-filter: blur(16px);
1606
+ z-index:-1;
1607
+ }
1608
+
1609
+ .lexcontextmenu .lexcontextmenuentry.last {
1610
+ border-bottom-right-radius: 6px;
1611
+ border-bottom-left-radius: 6px;
1612
+ }
1613
+
1614
+ .lexcontextmenu .lexcontextmenuentrycontainer {
1615
+ display: flex;
1616
+ flex-direction: row;
1617
+ }
1618
+
1619
+ .lexcontextmenu .lexcontextmenuentry .lexentryname {
1620
+ margin-right: 32px;
1621
+ margin-top: 2px;
1622
+ }
1623
+
1624
+ .lexcontextmenu .lexcontextmenuentry.noicon .lexentryname {
1625
+ margin-left: 10px;
1626
+ }
1627
+
1628
+ /* normal icons */
1629
+ .lexcontextmenu .lexcontextmenuentry a {
1630
+ font-size: 10px;
1631
+ float: left;
1632
+ margin-right: 13px;
1633
+ margin-top: 9px;
1634
+ margin-left: 9px;
1635
+ min-width: 10px;
1636
+ }
1637
+
1638
+ /* submenu specified arrow */
1639
+ .lexcontextmenu .lexcontextmenuentry a.fa-xs {
1640
+ float: right;
1641
+ /* margin-top: -8px; */
1642
+ margin-right: 8px;
1643
+ }
1644
+
1645
+ .lexcontextmenu .lexcontextmenuentry:hover {
1646
+ background-color: var(--global-selected);
1647
+ color: #f5f5f5;
1648
+ }
1649
+
1650
+ .lexcontextmenu .lexcontextmenuentry:active {
1651
+ color: var(--global-text-secondary);
1652
+ }
1653
+
1654
+ .lexcontextmenu .lexcontextmenuentry input {
1655
+ float: left;
1656
+ margin-right: 28px;
1657
+ margin-left: 5px;
1658
+ }
1659
+
1660
+ .lexcontextmenu .lexcontextmenuentry:hover input::after {
1661
+ border-color: #f5f5f5;
1662
+ }
1663
+
1664
+ .lexcontextmenu .lexseparator {
1665
+ margin: 2px 0 2px;
1666
+ width: -moz-calc(100% + 14px);
1667
+ width: -webkit-calc(100% + 14px);
1668
+ width: calc(100% + 14px);
1669
+ }
1670
+
1671
+ .lexcontextmenu .lexentryshort {
1672
+ font-size: 10px;
1673
+ float: right;
1674
+ /* margin-top: -12px; */
1675
+ font-weight: bold;
1676
+ color: var(--global-text-secondary);
1677
+ margin-right: 8px;
1678
+ }
1679
+
1680
+ .lexcontextmenu .lexcontextmenuentry:hover .lexentryshort {
1681
+ color: #f5f5f5;
1682
+ }
1683
+
1684
+ .lexmenubar .lexmenubuttons {
1685
+ display: flex;
1686
+ background-color: var(--global-color-secondary);
1687
+ margin-top: 10px;
1688
+ margin-bottom: 8px;
1689
+ border-radius: 10px;
1690
+ padding-left: 4px;
1691
+ padding-right: 4px;
1692
+ }
1693
+
1694
+ .lexmenubar .lexmenubuttons.center {
1695
+ margin: 0 auto;
1696
+ margin-top: 10px;
1697
+ margin-bottom: 8px;
1698
+ }
1699
+
1700
+ .lexmenubar .lexmenubuttons.right {
1701
+ margin-left: auto;
1702
+ margin-right: 16px;
1703
+ }
1704
+
1705
+ .lexmenubar .lexmenubutton {
1706
+ display: flex;
1707
+ justify-content: center;
1708
+ padding: 8px;
1709
+ padding-top: 0.6em;
1710
+ color: var(--global-text-secondary);
1711
+ cursor: pointer;
1712
+ /* margin-right: 4px; */
1713
+ -webkit-user-select: none; /* Safari 3.1+ */
1714
+ -moz-user-select: none; /* Firefox 2+ */
1715
+ -ms-user-select: none; /* IE 10+ */
1716
+ user-select: none; /* Standard syntax */
1717
+ }
1718
+
1719
+ .lexmenubar .lexmenubutton a {
1720
+ margin-left: 0px !important;
1721
+ }
1722
+
1723
+ .lexmenubar .lexmenubutton.disabled a {
1724
+ color: var(--global-button-color);
1725
+ }
1726
+
1727
+ /* Context Menu */
1728
+
1729
+ .lexcontextmenubox {
1730
+ z-index: 102;
1731
+ position: absolute;
1732
+ padding-right: 20px;
1733
+ border-bottom-left-radius: 6px;
1734
+ border-bottom-right-radius: 6px;
1735
+ box-shadow: 0 0 6px black !important;
1736
+ background-color: var(--global-blur-background);
1737
+ }
1738
+
1739
+ .lexcontextmenubox:before {
1740
+ content:"";
1741
+ position:absolute;
1742
+ width: 100%;
1743
+ height: 100%;
1744
+ top:0;
1745
+ left:0;
1746
+ -webkit-backdrop-filter: blur(10px);
1747
+ backdrop-filter: blur(10px);
1748
+ z-index:-1;
1749
+ }
1750
+
1751
+ .lexcontextmenubox .lexcontextmenuentry {
1752
+ width: 100%;
1753
+ color: #c0c4cbe3;
1754
+ padding: 3px;
1755
+ padding-left: 8px;
1756
+ padding-right: 10px;
1757
+ padding-bottom: 4px;
1758
+ cursor: pointer;
1759
+ -webkit-user-select: none;
1760
+ -moz-user-select: none;
1761
+ -ms-user-select: none;
1762
+ user-select: none;
1763
+ border-left: 2px solid var(--global-selected-light);
1764
+ }
1765
+
1766
+ .lexcontextmenubox .lexcontextmenuentry.cmtitle {
1767
+ background: #020205;
1768
+ font-weight: bold;
1769
+ cursor: default;
1770
+ }
1771
+
1772
+ .lexcontextmenubox .lexcontextmenuentry.cmseparator {
1773
+ height: 1px;
1774
+ border-bottom: 1px solid var(--global-color-terciary);
1775
+ padding-bottom: 0;
1776
+ padding-top: 0;
1777
+ margin-top: -4px;
1778
+ }
1779
+
1780
+ .lexcontextmenubox .lexcontextmenuentry .lexentryname {
1781
+ margin-right: 10px;
1782
+ margin-top: 2px;
1783
+ font-size: 12px;
1784
+ }
1785
+
1786
+ .lexcontextmenubox .lexcontextmenuentry .lexentryname.disabled {
1787
+ color: #c0c4cb53;
1788
+ }
1789
+
1790
+ /* normal icons */
1791
+ .lexcontextmenubox .lexcontextmenuentry a {
1792
+ float: right;
1793
+ margin-right: 0px;
1794
+ margin-top: 10px;
1795
+ font-size: 11px;
1796
+ }
1797
+
1798
+ /* submenu specified arrow */
1799
+ .lexcontextmenubox .lexcontextmenuentry a.fa-xs {
1800
+ float: right;
1801
+ margin-top: -7px;
1802
+ }
1803
+
1804
+ .lexcontextmenubox .lexcontextmenuentry:hover:not(.cmtitle) {
1805
+ background-color: var(--global-selected);
1806
+ color: #f5f5f5;
1807
+ }
1808
+
1809
+ .lexcontextmenubox .lexcontextmenuentry:active:not(.cmtitle):not(.cmseparator) {
1810
+ padding-top: 0.22em;
1811
+ color: #b7b7cba4;
1812
+ }
1813
+
1814
+ .lexcontextmenubox .lexseparator {
1815
+ margin: 3px 0 3px 10px;
1816
+ }
1817
+
1818
+ .lexcontextmenubox .lexentryshort {
1819
+ font-size: 9px;
1820
+ float: right;
1821
+ /* margin-top: -13px; */
1822
+ font-weight: bold;
1823
+ color: #979aa0e3;
1824
+ }
1825
+
1826
+ /* Overlay Buttons */
1827
+
1828
+ .lexoverlaybuttons {
1829
+ position: absolute;
1830
+ display: flex;
1831
+ margin: 12px;
1832
+ top: 0;
1833
+ justify-content: start;
1834
+ pointer-events: none;
1835
+ }
1836
+
1837
+ .lexoverlaybuttons .lexwidget {
1838
+ padding: 0px;
1839
+ margin-right: 6px;
1840
+ pointer-events: auto;
1841
+ min-width: 32px;
1842
+ }
1843
+
1844
+ .lexoverlaybuttons .lexwidget button {
1845
+ min-width: 32px;
1846
+ }
1847
+
1848
+ .lexoverlaybuttons.vertical {
1849
+ display: grid;
1850
+ justify-items: left;
1851
+ }
1852
+
1853
+ .lexoverlaybuttons.vertical .lexwidget {
1854
+ margin-bottom: 6px;
1855
+ margin-right: 0px;
1856
+ }
1857
+
1858
+ .lexoverlaybuttons.vertical .lexwidget button {
1859
+ min-width: 32px;
1860
+ /* max-width: 32px !important; */
1861
+ max-height: 32px !important;
1862
+ }
1863
+
1864
+ .lexoverlaybuttons.bottom {
1865
+ top: unset;
1866
+ bottom: 0;
1867
+ }
1868
+
1869
+ .lexoverlaybuttons.center {
1870
+ justify-content: center;
1871
+ }
1872
+
1873
+ .lexoverlaybuttons.right {
1874
+ justify-content: right;
1875
+ }
1876
+
1877
+ .lexoverlaybuttons.vertical.center {
1878
+ justify-items: center;
1879
+ }
1880
+
1881
+ .lexoverlaybuttons.vertical.right {
1882
+ justify-items: right;
1883
+ }
1884
+
1885
+ .lexoverlaybuttons .lexwidget:hover {
1886
+ background-color: unset;
1887
+ }
1888
+
1889
+ .lexoverlaybuttons .lexbutton {
1890
+ padding: 14px 10px;
1891
+ font-size: 12px;
1892
+ border-radius: 6px;
1893
+ justify-content: center;
1894
+ background-color: #313132a5;
1895
+ -webkit-backdrop-filter: blur(6px);
1896
+ backdrop-filter: blur(6px);
1897
+ color: #d1d1d3bd;
1898
+ }
1899
+
1900
+ .lexoverlaybuttons .lexbutton a {
1901
+ line-height: 19px;
1902
+ font-size: 12px;
1903
+ }
1904
+
1905
+ .lexoverlaybuttons .lexbutton img {
1906
+ filter: brightness(0.7)
1907
+ }
1908
+
1909
+ .lexoverlaybuttons .lexbutton.selected {
1910
+ background-color: #898989d6 !important;
1911
+ color: #fff;
1912
+ outline: none;
1913
+ border-radius: 8px;
1914
+ }
1915
+
1916
+ .lexoverlaybuttons .lexbutton.selected img, .lexoverlaybuttons .lexbutton:hover img {
1917
+ filter: none;
1918
+ }
1919
+
1920
+ .lexoverlaybuttons .lexbutton:hover {
1921
+ color: #f5f5f5;
1922
+ }
1923
+
1924
+ .lexoverlaybuttons .lexbutton:active {
1925
+ outline: none !important;
1926
+ color: #d5d5d5;
1927
+ }
1928
+
1929
+ .lexoverlaybuttons .lexoverlaygroup {
1930
+ display: flex;
1931
+ margin-right: 6px;
1932
+ background-color: #313132a5;
1933
+ -webkit-backdrop-filter: blur(6px);
1934
+ backdrop-filter: blur(6px);
1935
+ border-radius: 8px;
1936
+ }
1937
+
1938
+ .lexoverlaybuttons .lexoverlaygroup .lexbutton {
1939
+ background: none;
1940
+ -webkit-backdrop-filter: none;
1941
+ backdrop-filter: none;
1942
+ }
1943
+
1944
+ .lexoverlaybuttons.vertical .lexoverlaygroup {
1945
+ display: grid;
1946
+ margin-right: 0px;
1947
+ margin-bottom: 6px;
1948
+ }
1949
+
1950
+ .lexoverlaybuttons .lexoverlaygroup .lexwidget {
1951
+ padding: 0px;
1952
+ margin-right: 0px;
1953
+ }
1954
+
1955
+ .lexoverlaybuttons.vertical .lexoverlaygroup .lexwidget {
1956
+ margin-right: 0px;
1957
+ margin-bottom: 0px;
1958
+ }
1959
+
1960
+ .lexoverlaybuttons.vertical .lexoverlaygroup .lexwidget button {
1961
+ width: 100% !important;
1962
+ }
1963
+
1964
+ /* Area Tabs */
1965
+
1966
+ .lexareatabs {
1967
+ display: flex;
1968
+ flex-direction: row;
1969
+ margin-left: 7px;
1970
+ width: fit-content;
1971
+ width: -moz-fit-content;
1972
+ border-radius: 10px;
1973
+ }
1974
+
1975
+ .lexareatabs.dockingtab {
1976
+ background-color: #7cb9f34e;
1977
+ }
1978
+
1979
+ .lexareatabs .lexareatab {
1980
+ font-size: 13px;
1981
+ font-weight: 600;
1982
+ text-shadow: 0.05em 0.05em 1px #0d0d109f;
1983
+ justify-content: center;
1984
+ text-align: center;
1985
+ align-items: center;
1986
+ padding: 3px;
1987
+ color: var(--global-text-secondary);
1988
+ cursor: pointer;
1989
+ -webkit-user-select: none; /* Safari 3.1+ */
1990
+ -moz-user-select: none; /* Firefox 2+ */
1991
+ -ms-user-select: none; /* IE 10+ */
1992
+ user-select: none; /* Standard syntax */
1993
+ transition: 0.2s;
1994
+ }
1995
+
1996
+ .lexareatabs.row {
1997
+ width: 100%;
1998
+ }
1999
+
2000
+ .lexareatabs.row {
2001
+ padding: 4px;
2002
+ padding-bottom: 6px;
2003
+ }
2004
+
2005
+ .lexareatabs.row .lexareatab {
2006
+ background-color: var(--global-color-secondary);
2007
+ padding-left: 16px;
2008
+ padding-right: 16px;
2009
+ margin-right: 4px;
2010
+ border-radius: 8px;
2011
+ }
2012
+
2013
+ .lexareatabs.fit {
2014
+ background-color: var(--global-color-secondary);
2015
+ width: calc(100% - 14px);
2016
+ }
2017
+
2018
+ .lexareatabs.fit .lexareatab {
2019
+ flex: 100%;
2020
+ border-radius: 10px;
2021
+ }
2022
+
2023
+ .lexareatabs .lexareatab:active {
2024
+ color: #b7b7cba4;
2025
+ }
2026
+
2027
+ .lexareatabs.row .lexareatab.selected {
2028
+ color: var(--global-text);
2029
+ background-color: var(--global-selected);
2030
+ }
2031
+
2032
+ .lexareatabs.fit .lexareatab.selected, .lexareatabs.folding .lexareatab.selected {
2033
+ color: var(--global-text-primary);
2034
+ background-color: #555556;
2035
+ }
2036
+
2037
+ .lexareatabs .lexareatab:hover {
2038
+ color: white;
2039
+ }
2040
+
2041
+ .lexareatabscontainer {
2042
+ transition: height 0.1s;
2043
+ transition-timing-function: ease-out;
2044
+ }
2045
+
2046
+ .lexareatabscontainer .lexpanel:not(.lexoverlaybuttons) {
2047
+ margin: 0;
2048
+ }
2049
+
2050
+ .lexareatabscontainer .lexbranch {
2051
+ margin: 4px 7px !important;
2052
+ }
2053
+
2054
+ .lexareatabscontent {
2055
+ /* overflow-y: scroll; */
2056
+ }
2057
+
2058
+ .lexareatabscontent.folded {
2059
+ max-height: 0px;
2060
+ }
2061
+
2062
+ /* Curve Widget */
2063
+
2064
+ .curve canvas {
2065
+ border-radius: 2px;
2066
+ }
2067
+
2068
+ /* Card Widget */
2069
+
2070
+ .lexcard {
2071
+ position: relative;
2072
+ margin-bottom: 4px;
2073
+ }
2074
+
2075
+ .lexcard img {
2076
+ width: 100%;
2077
+ height: 164px;
2078
+ object-fit: cover;
2079
+ border-radius: 6px;
2080
+ outline: 3px solid var(--global-text-secondary);
2081
+ }
2082
+
2083
+ .lexcard:hover a {
2084
+ color: var(--global-selected-light);
2085
+ }
2086
+
2087
+ .lexcard:hover img {
2088
+ outline: 3px solid var(--global-selected-light);
2089
+ }
2090
+
2091
+ .lexcard span {
2092
+ width: calc(100% - 12px);
2093
+ display: flex;
2094
+ background-color: rgba(15, 16, 19, 0.9);
2095
+ align-items: center;
2096
+ height: 16px;
2097
+ position: absolute;
2098
+ top: 0;
2099
+ padding: 6px;
2100
+ border-top-left-radius: 6px;
2101
+ border-top-right-radius: 6px;
2102
+ font-weight: bold;
2103
+ font-size: 1.2em;
2104
+ }
2105
+
2106
+ .lexcard span a {
2107
+ color: var(--global-text);
2108
+ text-decoration: none;
2109
+ }
2110
+
2111
+ .lexcard span a:hover {
2112
+ color: var(--global-selected-light);
2113
+ }
2114
+
2115
+ /* Layers Widget */
2116
+
2117
+ .lexlayers {
2118
+ display: grid;
2119
+ grid-template-columns: 18px 18px 18px 18px 18px 18px 18px 18px;
2120
+ grid-gap: 6px 8px; /* Gap between grid cells */
2121
+ justify-content: center;
2122
+ }
2123
+
2124
+ .lexlayer {
2125
+ background-color: var(--global-color-primary);
2126
+ color: var(--global-text);
2127
+ text-align: center;
2128
+ line-height: 19px;
2129
+ width: 18px;
2130
+ height: 18px;
2131
+ cursor: pointer;
2132
+ border-radius: 4px;
2133
+ font-size: 11px;
2134
+ }
2135
+
2136
+ .lexlayer.selected {
2137
+ background-color: var(--global-selected);
2138
+ color: white;
2139
+ }
2140
+
2141
+ .lexlayer:hover {
2142
+ background-color: #497baad4;
2143
+ }
2144
+
2145
+ .lexlayer:active {
2146
+ background-color: #497baab3;
2147
+ }
2148
+
2149
+ /* List Widget */
2150
+
2151
+ .lexlist {
2152
+ background: var(--global-dark-background);
2153
+ border-radius: 4px;
2154
+ padding: 4px;
2155
+ display: grid;
2156
+ }
2157
+
2158
+ .lexlistitem {
2159
+ width: calc( 100% - 8px );
2160
+ cursor: pointer;
2161
+ color: rgba(216, 218, 230, 0.826);
2162
+ font-size: 12px;
2163
+ border-radius: 4px;
2164
+ padding-left: 4px;
2165
+ padding-right: 4px;
2166
+ margin-top: 1px;
2167
+ margin-bottom: 1px;
2168
+ height: 20px;
2169
+ line-height: 22px;
2170
+ align-content: center;
2171
+ display: flow-root;
2172
+ -webkit-user-select: none; /* Safari 3.1+ */
2173
+ -moz-user-select: none; /* Firefox 2+ */
2174
+ -ms-user-select: none; /* IE 10+ */
2175
+ user-select: none; /* Standard syntax */
2176
+ }
2177
+
2178
+ .lexlistitem a {
2179
+ float: left;
2180
+ line-height: 20px;
2181
+ margin-right: 4px;
2182
+ }
2183
+
2184
+ .lexlistitem:hover {
2185
+ background-color: var(--branch-title-inactive-background);
2186
+ color: var(--global-text-primary);
2187
+ }
2188
+
2189
+ .lexlistitem:active {
2190
+ color: rgba(216, 218, 230, 0.826);
2191
+ }
2192
+
2193
+ .lexlistitem.selected {
2194
+ color: var(--global-text-primary);
2195
+ background-color: var(--global-selected);
2196
+ }
2197
+
2198
+ /* Array Widget */
2199
+
2200
+ .lexwidget:has(.lexarrayitems), .lexwidget:has(.lexcheckboxsubmenu), .lexwidget:has(.lexcustomcontainer) {
2201
+ background-color: var(--global-branch-darker);
2202
+ border-radius: 6px;
2203
+ }
2204
+
2205
+ .lexarray .lexwidget {
2206
+ padding: 0px;
2207
+ width: 100% !important;
2208
+ }
2209
+
2210
+ .lexarrayitems {
2211
+ width: 100%;
2212
+ padding: 6px;
2213
+ color: var(--global-text-secondary);
2214
+ font-size: 12px;
2215
+ margin-top: -1px;
2216
+ }
2217
+
2218
+ .lexarrayitems * {
2219
+ font-size: 11px;
2220
+ }
2221
+
2222
+ .lexarrayitems .small .lexbutton {
2223
+ background: none;
2224
+ }
2225
+
2226
+ .lexarrayitems .lexwidgetname {
2227
+ color: var(--global-text-secondary);
2228
+ }
2229
+
2230
+ /* Tags Widget */
2231
+
2232
+ .lextags {
2233
+ display: inline-flex;
2234
+ flex-wrap: wrap;
2235
+ justify-content: center;
2236
+ line-height: 12px;
2237
+ }
2238
+
2239
+ .lextags input {
2240
+ width: 100%;
2241
+ margin-bottom: 0.5em;
2242
+ text-align: center;
2243
+ }
2244
+
2245
+ .lextags .lextag {
2246
+ padding: 6px;
2247
+ background-color: var(--global-color-primary);
2248
+ margin: 2px;
2249
+ border-radius: 12px;
2250
+ min-width: 16px;
2251
+ justify-content: center;
2252
+ color: var(--global-text);
2253
+ display: inherit;
2254
+ font-size: 12px;
2255
+ }
2256
+
2257
+ .lextags .lextag:hover {
2258
+ background-color: var(--global-selected);
2259
+ color: #f5f5f5;
2260
+ cursor: pointer;
2261
+ }
2262
+
2263
+ .lextags .lextag:hover::after {
2264
+ content: "⊗";
2265
+ }
2266
+
2267
+ /* Custom Widgets Widget */
2268
+
2269
+ .lexcustomitems {
2270
+ width: 100%;
2271
+ padding: 6px;
2272
+ color: var(--global-text-secondary);
2273
+ font-size: 12px;
2274
+ margin-top: -1px;
2275
+ }
2276
+
2277
+ .lexcustomcontainer span {
2278
+ align-items: center;
2279
+ display: flex;
2280
+ justify-content: space-between;
2281
+ }
2282
+
2283
+ .lexcustomcontainer .lexbutton span:not(:has(.menu)) {
2284
+ width: 95%;
2285
+ }
2286
+
2287
+ /** Timeline */
2288
+
2289
+ .lextimeline {
2290
+ flex-direction: column;
2291
+ color: var(--global-text-primary);
2292
+ background-color: var(--global-primary-color);
2293
+ height: 100%;
2294
+ }
2295
+
2296
+ .lextimelinepanel {
2297
+ overflow: hidden;
2298
+ }
2299
+ /* .lextimeline .lexarea, .lextimelinepanel {
2300
+ background-color: var(--global-dark-background);
2301
+ } */
2302
+
2303
+ .lextimeline *::-webkit-scrollbar {
2304
+ display: none;
2305
+ }
2306
+
2307
+ .lextimeline .lexbuttonscontainer {
2308
+ position: absolute;
2309
+ padding: 0 10px;
2310
+ }
2311
+
2312
+ .lextimeline .lexwidget:has(.lexbutton:not(.array)) {
2313
+ padding: 1px;
2314
+ /* padding-left: 10px;
2315
+ padding-right: 10px; */
2316
+ }
2317
+
2318
+ .lextimeline .lexinlinewidgets {
2319
+ padding-right: 10px;
2320
+ /* background-color: var(--global-color-secondary); */
2321
+ height: 100%;
2322
+ }
2323
+
2324
+ .lextimeline .lexbutton:hover {
2325
+ color: var(--global-selected-light);
2326
+ }
2327
+
2328
+ .lextimeline .lextree {
2329
+ margin: 0px!important;
2330
+ width: 100%;
2331
+ }
2332
+
2333
+ .lextimeline .lextree .lextreeitem {
2334
+ margin: 0px;
2335
+ }
2336
+
2337
+ .lextimeline .lextitle {
2338
+ padding-left: 24px;
2339
+ }
2340
+
2341
+ .lextimeline .lextree ul {
2342
+ /* background-color: var(--global-dark-background); */
2343
+ margin: 0;
2344
+ padding-bottom: 0px;
2345
+ padding-top: 0px;
2346
+ font-size: 12px;
2347
+ }
2348
+
2349
+ .lextimeline .lexsplitbar.vertical {
2350
+ position: unset;
2351
+ width: unset;
2352
+ height: unset;
2353
+ }
2354
+
2355
+ /* .lextimeline.hidden{
2356
+ animation-name: fadeout;
2357
+ animation-duration: 0.5s;
2358
+ } */
2359
+
2360
+ /* .lexarea:has(.lexmin) {
2361
+ position: relative;
2362
+ } */
2363
+
2364
+ .lexmin {
2365
+ display: inline-block;
2366
+ color: var(--global-selected-light);
2367
+ background: var(--global-color-primary);
2368
+ border-radius: 8px;
2369
+ padding: 4px;
2370
+ position: absolute;
2371
+ transition: 0.3s;
2372
+ font-size: initial;
2373
+ cursor: pointer;
2374
+ }
2375
+
2376
+ .lexmin.horizontal {
2377
+ margin-top: 48px;
2378
+ margin-left: -12px;
2379
+ height: fit-content;
2380
+ }
2381
+
2382
+ .lexmin.vertical {
2383
+ margin-top: -12px;
2384
+ margin-left: 12px;
2385
+ }
2386
+
2387
+ .lexarea .fadein-vertical {
2388
+ animation-name: fadein;
2389
+ animation-fill-mode: forwards;
2390
+ }
2391
+ .lexarea .fadeout-vertical {
2392
+ animation-name: fadeout;
2393
+ animation-duration: 0.25s;
2394
+ animation-fill-mode: forwards;
2395
+ transition: height;
2396
+ }
2397
+
2398
+ .lexarea .fadein-horizontal {
2399
+ animation-name: fadein;
2400
+ animation-fill-mode: forwards;
2401
+ }
2402
+ .lexarea .fadeout-horizontal {
2403
+ animation-name: fadeout;
2404
+ animation-duration: 0.25s;
2405
+ animation-fill-mode: forwards;
2406
+ transition: width;
2407
+ }
2408
+
2409
+ @keyframes fadein {
2410
+ from { opacity: 0%; }
2411
+ 25% { opacity: 75%; }
2412
+ to { opacity: 100%; }
2413
+ }
2414
+
2415
+ @keyframes fadeout {
2416
+ from { opacity: 100%; }
2417
+ 25% { opacity: 25%; }
2418
+ to { opacity: 0%; }
2419
+ }
2420
+
2421
+ /* Overlay area */
2422
+
2423
+ .overlay-top {
2424
+ position: absolute;
2425
+ top: 0;
2426
+ }
2427
+
2428
+ .overlay-bottom {
2429
+ position: absolute;
2430
+ bottom: 0;
2431
+ }
2432
+
2433
+ .overlay-left {
2434
+ position: absolute;
2435
+ left: 0;
2436
+ top: 0;
2437
+ }
2438
+
2439
+ .overlay-right {
2440
+ position: absolute;
2441
+ right: 0;
2442
+ top: 0;
2443
+ }
2444
+
2445
+ .lexarea.overlay-bottom, .lexarea.overlay-top, .lexarea.overlay-left, .lexarea.overlay-right,
2446
+ .overlay-bottom .lexarea, .overlay-top .lexarea, .overlay-left .lexarea, .overlay-right .lexarea,
2447
+ .overlay-bottom .lextimeline, .overlay-top .lextimeline, .overlay-left .lextimeline, .overlay-right .lextimeline,
2448
+ .overlay-bottom .lextimelinearea, .overlay-top .lextimelinearea, .overlay-left .lextimeline, .overlay-right .lextimelinearea {
2449
+
2450
+ background-color: var(--global-color-primary);
2451
+ }
2452
+
2453
+ /* Asset Browser */
2454
+
2455
+ .lexassetbrowser {
2456
+ height: 100%;
2457
+ }
2458
+
2459
+ .lexassetbrowser .lexsplitbar.horizontal {
2460
+ position: relative;
2461
+ height: calc(100%);
2462
+ border-radius: 0px;
2463
+ left: 0 !important;
2464
+ top: 0;
2465
+ background-color: var(--global-color-secondary);
2466
+ }
2467
+
2468
+ .lexassetbrowser .lexsplitbar.horizontal:hover {
2469
+ background-color: var(--global-text-secondary);
2470
+ }
2471
+
2472
+ .lexassetbrowser .lexsplitbar.vertical {
2473
+ position: unset;
2474
+ width: unset;
2475
+ height: unset;
2476
+ }
2477
+
2478
+ .lexassetscontent.dragging {
2479
+ background-color: var(--global-branch-darker);
2480
+ }
2481
+
2482
+ ul.lexassetscontent {
2483
+ -webkit-text-size-adjust: 100%;
2484
+ font-size: 12px;
2485
+ color: #AAA;
2486
+ box-sizing: border-box;
2487
+ overflow: auto;
2488
+ padding: 0 1em;
2489
+ margin: 0;
2490
+ height: calc(100% - 36px);
2491
+ }
2492
+
2493
+ .lexassetscontent.list {
2494
+ display: table-cell;
2495
+ columns: 3 256px;
2496
+ width: 100%;
2497
+ }
2498
+
2499
+ .lexassetscontent li {
2500
+ -webkit-text-size-adjust: 100%;
2501
+ font-size: 12px;
2502
+ color: #AAA;
2503
+ -webkit-user-drag: element;
2504
+ user-select: none;
2505
+ box-sizing: border-box;
2506
+ width: 10em;
2507
+ height: 11.4em;
2508
+ display: inline-block;
2509
+ vertical-align: top;
2510
+ margin: 0.5em;
2511
+ margin-top: 0.75em;
2512
+ padding: 0;
2513
+ box-shadow: 0 0 8px black;
2514
+ overflow: hidden;
2515
+ background-color: #555;
2516
+ cursor: pointer;
2517
+ text-align: center;
2518
+ border-top-left-radius: 2px;
2519
+ border-top-right-radius: 2px;
2520
+ border-bottom-left-radius: 4px;
2521
+ border-bottom-right-radius: 4px;
2522
+ position: relative;
2523
+ border-top: 4px solid rgba(0,0,0,0);
2524
+ }
2525
+
2526
+ .lexassetscontent.list li {
2527
+ width: calc(100% - 0.5em);
2528
+ height: 1.8em;
2529
+ border-top: 0px;
2530
+ border-left: 4px solid rgba(0,0,0,0);
2531
+ border-bottom-left-radius: 2px;
2532
+ border-bottom-right-radius: 2px;
2533
+ margin: 0;
2534
+ margin-top: 0.4em;
2535
+ margin-bottom: 0.4em;
2536
+ box-shadow: 0 0 6px rgba(0, 0, 0, 0.858);
2537
+ }
2538
+
2539
+ .lexassetscontent .asset-file-preview {
2540
+ position: absolute;
2541
+ top: 0;
2542
+ left: 0;
2543
+ width: 100%;
2544
+ height: calc(100% - 20px);
2545
+ padding-top: 16px;
2546
+ }
2547
+
2548
+ .lexassetscontent .asset-file-preview text {
2549
+ font-size: 64px;
2550
+ text-anchor: middle;
2551
+ font-family: 'Ubuntu', sans-serif;
2552
+ }
2553
+
2554
+ .lexassetscontent li.image { border-color: rgb(239, 188, 78); }
2555
+ .lexassetscontent li.script { border-color: rgb(104, 129, 195); }
2556
+ .lexassetscontent li.json { border-color: rgb(163, 213, 225); }
2557
+ .lexassetscontent li.mesh { border-color: rgb(156, 68, 68); }
2558
+ .lexassetscontent li.clip { border-color: rgb(176, 97, 187); }
2559
+ .lexassetscontent li.sigml { border-color: rgb(154, 188, 101); }
2560
+
2561
+ .lexassetscontent li:hover {
2562
+ outline: 2px solid var(--global-selected);
2563
+ }
2564
+
2565
+ .lexassetscontent li.selected {
2566
+ transition: none !important;
2567
+ outline: 2px solid var(--global-selected);
2568
+ font-weight: bold;
2569
+ }
2570
+
2571
+ .lexassetscontent li .lexassettitle {
2572
+ position: absolute;
2573
+ width: 100%;
2574
+ bottom: 0px;
2575
+ -webkit-text-size-adjust: 100%;
2576
+ font-size: 12px;
2577
+ color: #BBB;
2578
+ cursor: pointer;
2579
+ text-align: center;
2580
+ box-sizing: border-box;
2581
+ display: block;
2582
+ height: 20px;
2583
+ padding: 0.1em;
2584
+ padding-top: 0.15em;
2585
+ overflow: hidden;
2586
+ text-overflow: ellipsis;
2587
+ white-space: nowrap;
2588
+ background-color: rgba(12, 12, 12, 0.8);
2589
+ transition: all 0.1s;
2590
+ z-index: 1;
2591
+ }
2592
+
2593
+ .lexassetscontent.list li .lexassettitle {
2594
+ width: 100%;
2595
+ height: 100%;
2596
+ text-align: left;
2597
+ padding-left: 2em;
2598
+ }
2599
+
2600
+ .lexassetscontent li .lexassetinfo {
2601
+ -webkit-text-size-adjust: 100%;
2602
+ color: #999;
2603
+ box-sizing: border-box;
2604
+ position: absolute;
2605
+ overflow: hidden;
2606
+ text-align: left;
2607
+ padding: 3px;
2608
+ top: 0;
2609
+ transition: all 0.1s;
2610
+ display: none;
2611
+ }
2612
+
2613
+ .lexassetscontent.list li .lexassetinfo {
2614
+ display: block;
2615
+ right: 6px;
2616
+ z-index: 1;
2617
+ }
2618
+
2619
+ .lexassetscontent li:hover span {
2620
+ color: #f5f5f5;
2621
+ }
2622
+
2623
+ .lexassetscontent li.selected .lexassettitle {
2624
+ color: #f5f5f5;
2625
+ text-shadow: 0 0 3px black;
2626
+ background-color: var(--global-selected);
2627
+ }
2628
+
2629
+ .lexassetscontent li img {
2630
+ -webkit-text-size-adjust: 100%;
2631
+ font-family: 'Arial';
2632
+ font-size: 12px;
2633
+ cursor: pointer;
2634
+ text-align: center;
2635
+ color: white;
2636
+ box-sizing: border-box;
2637
+ border: 0;
2638
+ max-width: 10em;
2639
+ max-height: 10em;
2640
+ width: 100%;
2641
+ height: 100%;
2642
+ object-fit: cover;
2643
+ transition: all 0.2s;
2644
+ }
2645
+
2646
+ .lexassetscontent.list img {
2647
+ width: unset;
2648
+ height: 2em;
2649
+ object-fit: contain;
2650
+ float: left;
2651
+ z-index: 1;
2652
+ position: relative;
2653
+ }
2654
+
2655
+ .lexassetscontent li.folder img {
2656
+ transform: translateY(-6px);
2657
+ }
2658
+
2659
+ .lexassetscontent.list li.folder img {
2660
+ transform: scale(0.9);
2661
+ }
2662
+
2663
+ .lexassetscontent li:hover img {
2664
+ transform: scale(1.12);
2665
+ }
2666
+
2667
+ /* Code Editor */
2668
+
2669
+ .codebasearea {
2670
+ display: flex;
2671
+ position: relative;
2672
+ overflow: inherit;
2673
+ background-color: var(--global-branch-darker);
2674
+ }
2675
+
2676
+ .codebasearea * {
2677
+ letter-spacing: 0em !important;
2678
+ }
2679
+
2680
+ .codebasearea .lexareatab {
2681
+ padding: 0px;
2682
+ }
2683
+
2684
+ .lexcodeeditor ::-webkit-scrollbar {
2685
+ width: 6px;
2686
+ height: 6px;
2687
+ background: none;
2688
+ }
2689
+
2690
+ .lexcodeeditor ::-webkit-scrollbar-thumb {
2691
+ background: #8c8c909c;
2692
+ }
2693
+
2694
+ .lexcodeeditor ::-webkit-scrollbar-thumb:hover {
2695
+ background: #afafb4c2;
2696
+ }
2697
+
2698
+ .lexcodeeditor {
2699
+ outline: none;
2700
+ overflow: hidden;
2701
+ width: calc(100% );
2702
+ -webkit-user-select: none; /* Safari 3.1+ */
2703
+ -moz-user-select: none; /* Firefox 2+ */
2704
+ -ms-user-select: none; /* IE 10+ */
2705
+ user-select: none; /* Standard syntax */
2706
+ }
2707
+
2708
+ .lexcodeeditor .lexareatabscontent {
2709
+ overflow: hidden;
2710
+ }
2711
+
2712
+ .lexcodetabinfo {
2713
+ background-color: var(--global-branch-darker);
2714
+ position: absolute;
2715
+ z-index: 3;
2716
+ bottom: 0px;
2717
+ margin-left: 0px;
2718
+ }
2719
+
2720
+ .lexcodegutter {
2721
+ width: 32px;
2722
+ height: calc(100% - 69px); /* 6px of the vertical scrollbar */
2723
+ background-color: var(--global-branch-darker);
2724
+ margin-top: 27.8px;
2725
+ text-align: center;
2726
+ overflow: hidden;
2727
+ -webkit-user-select: none; /* Safari 3.1+ */
2728
+ -moz-user-select: none; /* Firefox 2+ */
2729
+ -ms-user-select: none; /* IE 10+ */
2730
+ user-select: none; /* Standard syntax */
2731
+ font-family: 'Inconsolata', monospace;
2732
+ }
2733
+
2734
+ .lexcodegutter span {
2735
+ width: 100%;
2736
+ display: block;
2737
+ height: 18px;
2738
+ margin-top: 4px;
2739
+ font-size: 13px;
2740
+ color: #888;
2741
+ text-align-last: auto;
2742
+ line-height: 22px;
2743
+ }
2744
+
2745
+ .lexcodeeditor .code {
2746
+ height: calc(100% - 30px);
2747
+ cursor: text;
2748
+ font-size: 18px;
2749
+ overflow: scroll;
2750
+ background-color: var(--global-branch-darker);
2751
+ padding-right: 6px;
2752
+ }
2753
+
2754
+ .lexcodeeditor .code.dragging {
2755
+ background-color: var(--global-color-secondary);
2756
+ }
2757
+
2758
+ .codechar {
2759
+ font-size: 18px;
2760
+ font-family: 'Inconsolata', monospace;
2761
+ position: absolute;
2762
+ top: 0;
2763
+ left: 0;
2764
+ padding: 0;
2765
+ margin: 0;
2766
+ }
2767
+
2768
+ .lexcodeeditor pre {
2769
+ -webkit-text-size-adjust: 100%;
2770
+ cursor: text;
2771
+ box-sizing: border-box;
2772
+ padding: 0 4px;
2773
+ border-radius: 0;
2774
+ border-width: 0;
2775
+ background: transparent;
2776
+ font-family: 'Inconsolata', monospace;
2777
+ font-size: inherit;
2778
+ font-weight: bold;
2779
+ margin: 4px 0px;
2780
+ white-space: pre;
2781
+ word-wrap: normal;
2782
+ line-height: inherit;
2783
+ color: #c9d5f4;
2784
+ position: relative;
2785
+ overflow: visible;
2786
+ -webkit-tap-highlight-color: transparent;
2787
+ z-index: 0 !important;
2788
+ pointer-events: none;
2789
+ }
2790
+
2791
+ .lexcodeeditor span {
2792
+ -webkit-text-size-adjust: 100%;
2793
+ cursor: text;
2794
+ font-family: inherit;
2795
+ font-size: inherit;
2796
+ white-space: pre;
2797
+ word-wrap: normal;
2798
+ line-height: inherit;
2799
+ -webkit-tap-highlight-color: transparent;
2800
+ box-sizing: border-box;
2801
+ display: inline-block;
2802
+ height: 18px;
2803
+ vertical-align: top;
2804
+ }
2805
+
2806
+ .lexcodeeditor .cursors, .lexcodeeditor .selections {
2807
+ -webkit-text-size-adjust: 100%;
2808
+ font-family: monospace;
2809
+ color: #AAA !important;
2810
+ font-size: 15px;
2811
+ cursor: text;
2812
+ box-sizing: border-box;
2813
+ visibility: hidden;
2814
+ margin: 0;
2815
+ padding: 0;
2816
+ position: relative;
2817
+ z-index: 3;
2818
+ pointer-events: none;
2819
+ }
2820
+
2821
+ .lexcodeeditor .cursors.show, .lexcodeeditor .selections.show {
2822
+ visibility: visible;
2823
+ }
2824
+
2825
+ .lexcodeeditor .cursors .cursor {
2826
+ -webkit-text-size-adjust: 100%;
2827
+ font-family: monospace;
2828
+ color: #AAA !important;
2829
+ font-size: 15px;
2830
+ cursor: text;
2831
+ box-sizing: border-box;
2832
+ margin: 0;
2833
+ padding: 0;
2834
+ border-right: none;
2835
+ width: 0;
2836
+ position: absolute;
2837
+ border-left: 3px solid #a7a7a7b9 !important;
2838
+ z-index: 0 !important;
2839
+ left: 0px;
2840
+ top: 0px;
2841
+ height: 18px;
2842
+ }
2843
+
2844
+ .lexcodeeditor .lexcodeselection {
2845
+ -webkit-text-size-adjust: 100%;
2846
+ font-family: monospace;
2847
+ color: #AAA !important;
2848
+ font-size: 15px;
2849
+ cursor: text;
2850
+ box-sizing: border-box;
2851
+ margin: 0;
2852
+ padding: 0;
2853
+ border-right: none;
2854
+ position: absolute;
2855
+ z-index: 0 !important;
2856
+ left: 0px;
2857
+ top: 0px;
2858
+ width: 100px;
2859
+ height: 22px;
2860
+ margin-top: -2px;
2861
+ background-color: var(--global-selected);
2862
+ opacity: 0.3;
2863
+ }
2864
+
2865
+ .cm-str { color: #c69179; } /* string */
2866
+ .cm-kwd { color: #2194ce; } /* keyword */
2867
+ .cm-com { color: #75b073; } /* comment */
2868
+ .cm-typ { color: #36c0b0; } /* type */
2869
+ .cm-lit { color: #cf6dcf; } /* literal */
2870
+ .cm-bln { color: #cfc159; } /* builtin */
2871
+ .cm-dec { color: #b1ce9b; } /* decimal */
2872
+ .cm-sym { color: #e7ded2; } /* symbol */
2873
+ .cm-mtd { color: #f1e9bf; } /* method */
2874
+
2875
+ .cm-str.css { color: #c69179; } /* string */
2876
+ .cm-kwd.css { color: #d2ba7f; } /* keyword */
2877
+ .cm-com.css { color: #75b073; } /* comment */
2878
+ .cm-typ.css { color: #b7c3ec; } /* type */
2879
+ .cm-lit.css { color: #cf6dcf; } /* literal */
2880
+ .cm-bln.css { color: #2194ce; } /* builtin */
2881
+ .cm-dec.css { color: #b1ce9b; } /* decimal */
2882
+ .cm-sym.css { color: #f9d620; } /* symbol */
2883
+ .cm-mtd.css { color: #f1e9bf; } /* method */
2884
+
2885
+ .cm-str.json { color: #c69179; } /* string */
2886
+ .cm-kwd.json { color: inherit; } /* keyword */
2887
+ .cm-com.json { color: inherit; } /* comment */
2888
+ .cm-typ.json { color: inherit; } /* type */
2889
+ .cm-lit.json { color: inherit; } /* literal */
2890
+ .cm-bln.json { color: inherit; } /* builtin */
2891
+ .cm-dec.json { color: #b1ce9b; } /* decimal */
2892
+ .cm-sym.json { color: #cf6dcf; } /* symbol */
2893
+ .cm-mtd.json { color: inherit; } /* method */
2894
+
2895
+ .cm-str.glsl { color: #c69179; } /* string */
2896
+ .cm-kwd.glsl { color: #2194ce; } /* keyword */
2897
+ .cm-com.glsl { color: #75b073; } /* comment */
2898
+ .cm-typ.glsl { color: #36c0b0; } /* type */
2899
+ .cm-lit.glsl { color: #cf6dcf; } /* literal */
2900
+ .cm-bln.glsl { color: #cfc159; } /* builtin */
2901
+ .cm-dec.glsl { color: #b1ce9b; } /* decimal */
2902
+ .cm-sym.glsl { color: #f9cb20; } /* symbol */
2903
+ .cm-mtd.glsl { color: #f1e9bf; } /* method */
2904
+
2905
+ .cm-str.wgsl { color: #c69179; } /* string */
2906
+ .cm-kwd.wgsl { color: #2194ce; } /* keyword */
2907
+ .cm-com.wgsl { color: #75b073; } /* comment */
2908
+ .cm-typ.wgsl { color: #36c0b0; } /* type */
2909
+ .cm-lit.wgsl { color: #cf6dcf; } /* literal */
2910
+ .cm-bln.wgsl { color: #cfc159; } /* builtin */
2911
+ .cm-dec.wgsl { color: #b1ce9b; } /* decimal */
2912
+ .cm-sym.wgsl { color: #f9cb20; } /* symbol */
2913
+ .cm-mtd.wgsl { color: #f1e9bf; } /* method */
2914
+
2915
+ /* plain color */
2916
+ .cm-str.plaintext, .cm-kwd.plaintext, .cm-com.plaintext, .cm-typ.plaintext, .cm-lit.plaintext,
2917
+ .cm-bln.plaintext, .cm-dec.plaintext, .cm-sym.plaintext, .cm-mtd.plaintext { color: inherit; }
2918
+
2919
+
2920
+ /* Node Graph */
2921
+
2922
+ .lexnodegraph canvas {
2923
+ width: 100%;
2924
+ height: 100%;
2925
+ }