lexgui 0.1.27 → 0.1.29
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.
- package/build/components/codeeditor.js +32 -12
- package/build/components/nodegraph.js +2905 -322
- package/build/lexgui.css +590 -172
- package/build/lexgui.js +305 -148
- package/build/lexgui.module.js +297 -140
- package/changelog.md +19 -0
- package/demo.js +1 -1
- package/examples/code_editor.html +1 -1
- package/examples/index.html +2 -1
- package/examples/node_graph.html +4 -4
- package/examples/side_bar.html +80 -0
- package/package.json +1 -1
package/build/lexgui.css
CHANGED
|
@@ -1,26 +1,33 @@
|
|
|
1
|
-
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700;800;900&display=swap');
|
|
2
1
|
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');
|
|
2
|
+
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
|
|
3
|
+
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
|
|
3
4
|
|
|
4
5
|
:root {
|
|
5
|
-
--global-font:
|
|
6
|
+
--global-font: "Figtree", sans-serif;
|
|
7
|
+
--global-title-font: "Poppins", sans-serif;
|
|
8
|
+
--global-font-size: 12px;
|
|
9
|
+
--global-color-primary: #212121;
|
|
10
|
+
--global-color-secondary: #2e2e2e;
|
|
11
|
+
--global-color-terciary: #444;
|
|
6
12
|
--global-selected: #3e57e4;
|
|
7
13
|
--global-selected-light: #7b8ae2;
|
|
8
|
-
--global-selected-dark: #
|
|
9
|
-
--global-color-primary: #232323;
|
|
10
|
-
--global-color-secondary: #343434;
|
|
11
|
-
--global-color-terciary: #444;
|
|
14
|
+
--global-selected-dark: #2f42ad;
|
|
12
15
|
--global-branch-darker: #252525;
|
|
13
16
|
--branch-title-background: #2e3338;
|
|
14
17
|
--branch-title-inactive-background: #42484e;
|
|
15
|
-
--global-button-color: #
|
|
18
|
+
--global-button-color: #3e3e3e;
|
|
19
|
+
--global-button-color-hovered: #444;
|
|
16
20
|
--global-text: #d4d4dce6;
|
|
17
21
|
--global-text-primary: #f4f4ffe6;
|
|
18
|
-
--global-text-secondary: #
|
|
19
|
-
--global-
|
|
20
|
-
--global-
|
|
22
|
+
--global-text-secondary: #cacad4ea;
|
|
23
|
+
--global-text-terciary: #727272b9;
|
|
24
|
+
--global-dark-background: #121212;
|
|
25
|
+
--global-blur-background: #28292bd5;
|
|
26
|
+
--global-color-transparent: #7b8ae200;
|
|
21
27
|
--transition-time: 1000;
|
|
22
28
|
--code-editor-font-size: 14px;
|
|
23
29
|
--code-editor-row-height: 20px;
|
|
30
|
+
--graphnode-background: 17, 17, 17;
|
|
24
31
|
}
|
|
25
32
|
|
|
26
33
|
/* Some global colors */
|
|
@@ -56,7 +63,7 @@ html, body {
|
|
|
56
63
|
margin: 0;
|
|
57
64
|
padding: 0;
|
|
58
65
|
font-family: var(--global-font);
|
|
59
|
-
letter-spacing: -0.
|
|
66
|
+
letter-spacing: -0.01em;
|
|
60
67
|
font-weight: 400;
|
|
61
68
|
}
|
|
62
69
|
|
|
@@ -72,6 +79,10 @@ body.nocursor * {
|
|
|
72
79
|
cursor: none !important;
|
|
73
80
|
}
|
|
74
81
|
|
|
82
|
+
body.noevents * {
|
|
83
|
+
pointer-events: none !important;
|
|
84
|
+
}
|
|
85
|
+
|
|
75
86
|
.grabbing {
|
|
76
87
|
cursor: move;
|
|
77
88
|
}
|
|
@@ -163,7 +174,7 @@ body.nocursor * {
|
|
|
163
174
|
border: none;
|
|
164
175
|
font-family: var(--global-font);
|
|
165
176
|
line-height: 23px;
|
|
166
|
-
font-size:
|
|
177
|
+
font-size: 13px;
|
|
167
178
|
font-weight: 500;
|
|
168
179
|
}
|
|
169
180
|
|
|
@@ -181,7 +192,7 @@ body.nocursor * {
|
|
|
181
192
|
padding: 10px;
|
|
182
193
|
padding-left: 50px;
|
|
183
194
|
color: var(--global-text-primary);
|
|
184
|
-
font-size:
|
|
195
|
+
font-size: 13px;
|
|
185
196
|
cursor: pointer;
|
|
186
197
|
}
|
|
187
198
|
|
|
@@ -210,7 +221,7 @@ body.nocursor * {
|
|
|
210
221
|
|
|
211
222
|
#global_search .searchitembox .searchitem .lang-ext {
|
|
212
223
|
color: #676e75;
|
|
213
|
-
font-size:
|
|
224
|
+
font-size: var(--global-font-size);
|
|
214
225
|
}
|
|
215
226
|
|
|
216
227
|
#global_search .searchitembox .searchitem.last {
|
|
@@ -237,15 +248,16 @@ body.nocursor * {
|
|
|
237
248
|
}
|
|
238
249
|
|
|
239
250
|
.lexdialogtitle {
|
|
240
|
-
|
|
241
|
-
|
|
251
|
+
font-family: var(--global-title-font);
|
|
252
|
+
font-weight: 700;
|
|
242
253
|
font-size: 18px;
|
|
243
|
-
font-weight: bold;
|
|
244
254
|
color: #d9d9e3;
|
|
245
|
-
text-shadow: 0px 1px
|
|
255
|
+
text-shadow: 0px 1px 6px #22222283;
|
|
246
256
|
width: calc( 100% - 24px);
|
|
247
257
|
padding: 8px;
|
|
248
258
|
padding-left: 16px;
|
|
259
|
+
border-top-left-radius: 8px;
|
|
260
|
+
border-top-right-radius: 8px;
|
|
249
261
|
display: flex;
|
|
250
262
|
justify-content: space-between;
|
|
251
263
|
-webkit-user-select: none; /* Safari 3.1+ */
|
|
@@ -308,7 +320,7 @@ body.nocursor * {
|
|
|
308
320
|
}
|
|
309
321
|
|
|
310
322
|
.lexdialog.pocket.dockable {
|
|
311
|
-
transition: ease-out left 0.2s, ease-out top 0.2s;
|
|
323
|
+
transition: ease-out left 0.2s, ease-out top 0.2s, ease-in transform 0.2s;
|
|
312
324
|
}
|
|
313
325
|
|
|
314
326
|
.lexdialog.pocket .lexdialogtitle {
|
|
@@ -446,12 +458,13 @@ body.nocursor * {
|
|
|
446
458
|
}
|
|
447
459
|
|
|
448
460
|
.lexbranchtitle {
|
|
449
|
-
font-
|
|
450
|
-
font-weight:
|
|
461
|
+
font-family: var(--global-title-font);
|
|
462
|
+
font-weight: 700;
|
|
463
|
+
font-size: 15px;
|
|
451
464
|
color: var(--global-text);
|
|
452
465
|
background-color: var(--global-color-secondary);
|
|
466
|
+
text-shadow: 0px 1px 6px #1111117c;
|
|
453
467
|
padding: 10px;
|
|
454
|
-
text-shadow: 0px 1px 2px #000;
|
|
455
468
|
border-top-left-radius: 8px;
|
|
456
469
|
border-top-right-radius: 8px;
|
|
457
470
|
cursor: pointer;
|
|
@@ -504,7 +517,7 @@ body.nocursor * {
|
|
|
504
517
|
}
|
|
505
518
|
|
|
506
519
|
.lexbranch .branchicon {
|
|
507
|
-
font-size:
|
|
520
|
+
font-size: var(--global-font-size);
|
|
508
521
|
}
|
|
509
522
|
|
|
510
523
|
.lexbranch.first .lexbranchtitle {
|
|
@@ -532,12 +545,16 @@ body.nocursor * {
|
|
|
532
545
|
display: flex;
|
|
533
546
|
align-items: center;
|
|
534
547
|
padding: 5px;
|
|
535
|
-
font-size:
|
|
548
|
+
font-size: var(--global-font-size);
|
|
536
549
|
color: #DCDCDC;
|
|
537
550
|
line-height: 2;
|
|
538
551
|
overflow: hidden;
|
|
539
552
|
}
|
|
540
553
|
|
|
554
|
+
.lexwidget * {
|
|
555
|
+
font-size: var(--global-font-size);
|
|
556
|
+
}
|
|
557
|
+
|
|
541
558
|
.lexinlinewidgets .lexwidget {
|
|
542
559
|
padding-left: 10px;
|
|
543
560
|
padding-right: 10px;
|
|
@@ -614,19 +631,35 @@ body.nocursor * {
|
|
|
614
631
|
background: none;
|
|
615
632
|
padding: 3px;
|
|
616
633
|
color: var(--global-text-primary);
|
|
617
|
-
font-size: 13px;
|
|
618
634
|
font-weight: 500;
|
|
619
635
|
outline: none;
|
|
620
|
-
border:
|
|
621
|
-
border
|
|
636
|
+
border-radius: 6px;
|
|
637
|
+
border: 2px solid var(--global-color-transparent);
|
|
638
|
+
transition: border-color 0.1s linear;
|
|
622
639
|
}
|
|
623
640
|
|
|
624
|
-
.lexwidget .lextext
|
|
625
|
-
|
|
641
|
+
.lexwidget .lextext {
|
|
642
|
+
border-radius: 6px;
|
|
643
|
+
position: relative;
|
|
644
|
+
transition: 0.1s linear;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.lexwidget .lextext:not(:has(div)) {
|
|
648
|
+
background-color: var(--global-button-color);
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.lexwidget .lextext:not(:has(div)):hover {
|
|
652
|
+
background-color: var(--global-button-color-hovered);
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.lexwidget .lextext input {
|
|
656
|
+
padding: 5px;
|
|
626
657
|
}
|
|
627
658
|
|
|
628
659
|
.lexwidget .lextext div {
|
|
629
660
|
color: #b2b2b5d6;
|
|
661
|
+
padding: 2px;
|
|
662
|
+
padding-left: 6px;
|
|
630
663
|
}
|
|
631
664
|
|
|
632
665
|
.lexwidget .lextext.lexwarning div {
|
|
@@ -640,36 +673,34 @@ body.nocursor * {
|
|
|
640
673
|
}
|
|
641
674
|
|
|
642
675
|
.lexwidget .lextext input:focus {
|
|
643
|
-
border
|
|
676
|
+
border: 2px solid var(--global-selected);
|
|
644
677
|
}
|
|
645
678
|
|
|
646
679
|
.lexwidget .inputicon {
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
margin-top: 2px;
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
.lexwidget:has(input:focus) .inputicon {
|
|
654
|
-
border-bottom: 2px solid var(--global-selected);
|
|
680
|
+
padding: 6px;
|
|
681
|
+
font-size: 10px;
|
|
682
|
+
margin-top: 4px;
|
|
655
683
|
}
|
|
656
684
|
|
|
657
685
|
.lexwidget textarea {
|
|
658
686
|
word-break: break-word;
|
|
659
687
|
font-family: var(--global-font);
|
|
660
|
-
font-size: 13px;
|
|
661
688
|
background: none;
|
|
662
|
-
padding:
|
|
689
|
+
padding: 5px;
|
|
663
690
|
color: var(--global-text-primary);
|
|
664
691
|
font-weight: 600;
|
|
665
|
-
outline:none;
|
|
666
|
-
border:
|
|
667
|
-
border
|
|
692
|
+
outline: none;
|
|
693
|
+
border-radius: 6px;
|
|
694
|
+
border: 2px solid var(--global-color-transparent);
|
|
695
|
+
transition: 0.1s linear;
|
|
668
696
|
}
|
|
669
697
|
|
|
670
698
|
.lexwidget textarea:disabled {
|
|
671
699
|
resize: none;
|
|
672
|
-
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
.lexwidget textarea:focus {
|
|
703
|
+
border: 2px solid var(--global-selected);
|
|
673
704
|
}
|
|
674
705
|
|
|
675
706
|
.lexwidget input.colorinput {
|
|
@@ -699,7 +730,6 @@ body.nocursor * {
|
|
|
699
730
|
}
|
|
700
731
|
|
|
701
732
|
.lexfilter input {
|
|
702
|
-
font-size: 12px;
|
|
703
733
|
font-family: var(--global-font);
|
|
704
734
|
}
|
|
705
735
|
|
|
@@ -707,8 +737,8 @@ body.nocursor * {
|
|
|
707
737
|
width: fit-content;
|
|
708
738
|
width: -moz-fit-content;
|
|
709
739
|
color: #ddd;
|
|
710
|
-
font-weight:
|
|
711
|
-
font-size:
|
|
740
|
+
font-weight: 800;
|
|
741
|
+
font-size: 13px;
|
|
712
742
|
margin: 12px;
|
|
713
743
|
padding: 2px;
|
|
714
744
|
padding-left: 12px;
|
|
@@ -716,7 +746,7 @@ body.nocursor * {
|
|
|
716
746
|
display: grid;
|
|
717
747
|
align-content: center;
|
|
718
748
|
border-radius: 12px;
|
|
719
|
-
background-color: var(--global-color
|
|
749
|
+
background-color: var(--global-button-color);
|
|
720
750
|
display: flex;
|
|
721
751
|
-webkit-user-select: none; /* Safari 3.1+ */
|
|
722
752
|
-moz-user-select: none; /* Firefox 2+ */
|
|
@@ -731,7 +761,6 @@ body.nocursor * {
|
|
|
731
761
|
}
|
|
732
762
|
|
|
733
763
|
.lextitle a {
|
|
734
|
-
font-size: 12px;
|
|
735
764
|
margin-top: 0.3em;
|
|
736
765
|
margin-right: 0.7em;
|
|
737
766
|
color: var(--global-selected-light);
|
|
@@ -765,8 +794,8 @@ body.nocursor * {
|
|
|
765
794
|
white-space: nowrap;
|
|
766
795
|
overflow: hidden;
|
|
767
796
|
cursor: pointer;
|
|
768
|
-
font-size: 12px;
|
|
769
797
|
font-family: var(--global-font);
|
|
798
|
+
transition: 0.1s linear;
|
|
770
799
|
}
|
|
771
800
|
|
|
772
801
|
.lexbutton.accept {
|
|
@@ -792,7 +821,7 @@ body.nocursor * {
|
|
|
792
821
|
}
|
|
793
822
|
|
|
794
823
|
.lexbutton:hover {
|
|
795
|
-
background-color:
|
|
824
|
+
background-color: var(--global-button-color-hovered);
|
|
796
825
|
color: var(--global-text-primary);
|
|
797
826
|
}
|
|
798
827
|
|
|
@@ -914,36 +943,24 @@ body.nocursor * {
|
|
|
914
943
|
position: fixed;
|
|
915
944
|
list-style: none;
|
|
916
945
|
background-color: var(--global-blur-background);
|
|
917
|
-
-webkit-backdrop-filter: blur(
|
|
918
|
-
backdrop-filter: blur(
|
|
946
|
+
-webkit-backdrop-filter: blur(10px);
|
|
947
|
+
backdrop-filter: blur(10px);
|
|
919
948
|
padding: 4px 0px;
|
|
920
949
|
z-index: 10;
|
|
921
950
|
margin-top: 5px;
|
|
922
951
|
width: 100%;
|
|
923
|
-
box-shadow: 0
|
|
952
|
+
box-shadow: 0 0px 12px rgba(0, 0, 0, 0.788);
|
|
924
953
|
border-bottom-left-radius: 10px;
|
|
925
954
|
border-bottom-right-radius: 10px;
|
|
926
|
-
height: -webkit-fill-available;
|
|
927
|
-
|
|
928
|
-
/* overflow: scroll; */
|
|
929
|
-
}
|
|
930
|
-
|
|
931
|
-
.lexdropdown ul::-webkit-scrollbar {
|
|
932
|
-
display: none;
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
.lexdropdown ul span{
|
|
936
|
-
display: block;
|
|
937
|
-
overflow-y: scroll;
|
|
955
|
+
max-height: -webkit-fill-available;
|
|
956
|
+
overflow-y: auto;
|
|
938
957
|
overflow-x: hidden;
|
|
939
|
-
height: 100%;
|
|
940
958
|
}
|
|
941
959
|
|
|
942
960
|
.lexdropdown .lexdropdownitem {
|
|
943
961
|
width: 100%;
|
|
944
962
|
cursor: pointer;
|
|
945
963
|
color: rgba(216, 218, 230, 0.826);
|
|
946
|
-
font-size: 13px;
|
|
947
964
|
height: 20px;
|
|
948
965
|
line-height: 22px;
|
|
949
966
|
align-content: center;
|
|
@@ -1020,8 +1037,8 @@ input[type=checkbox]:checked:after {
|
|
|
1020
1037
|
}
|
|
1021
1038
|
|
|
1022
1039
|
.lexcheckbox {
|
|
1023
|
-
width: 1.
|
|
1024
|
-
height: 1.
|
|
1040
|
+
width: 1.25em;
|
|
1041
|
+
height: 1.25em;
|
|
1025
1042
|
display: inline-block;
|
|
1026
1043
|
background-color: #1f1f1f;
|
|
1027
1044
|
color: #fff;
|
|
@@ -1076,7 +1093,6 @@ input[type=checkbox]:checked:after {
|
|
|
1076
1093
|
width: 100%;
|
|
1077
1094
|
padding: 6px;
|
|
1078
1095
|
color: var(--global-text-secondary);
|
|
1079
|
-
font-size: 12px;
|
|
1080
1096
|
margin-top: -1px;
|
|
1081
1097
|
}
|
|
1082
1098
|
|
|
@@ -1137,9 +1153,18 @@ input[type=checkbox]:checked:after {
|
|
|
1137
1153
|
position: relative;
|
|
1138
1154
|
width: 100%;
|
|
1139
1155
|
border-radius: 4px;
|
|
1140
|
-
border:
|
|
1156
|
+
border: 2px solid var(--global-color-transparent);
|
|
1141
1157
|
margin-right: 2px;
|
|
1142
|
-
background: var(--global-color
|
|
1158
|
+
background: var(--global-button-color);
|
|
1159
|
+
transition: 0.1s linear;
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
.lexvector a.fa-lock {
|
|
1163
|
+
min-width: 12px;
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
.lexvector .vecbox:hover{
|
|
1167
|
+
background: var(--global-button-color-hovered);
|
|
1143
1168
|
}
|
|
1144
1169
|
|
|
1145
1170
|
.lexwidget .numberbox .drag-icon, .lexwidget .vecbox .drag-icon {
|
|
@@ -1153,7 +1178,7 @@ input[type=checkbox]:checked:after {
|
|
|
1153
1178
|
}
|
|
1154
1179
|
|
|
1155
1180
|
.lexvector .vecbox:has(input:focus) {
|
|
1156
|
-
|
|
1181
|
+
border: 2px solid var(--global-selected);
|
|
1157
1182
|
}
|
|
1158
1183
|
|
|
1159
1184
|
.lexvector .vecbox span {
|
|
@@ -1171,15 +1196,15 @@ input[type=checkbox]:checked:after {
|
|
|
1171
1196
|
}
|
|
1172
1197
|
|
|
1173
1198
|
.lexvector .vecbox span.x {
|
|
1174
|
-
background-color:#
|
|
1199
|
+
background-color:#eb6767;
|
|
1175
1200
|
}
|
|
1176
1201
|
|
|
1177
1202
|
.lexvector .vecbox span.y {
|
|
1178
|
-
background-color:#
|
|
1203
|
+
background-color:#72e27d;
|
|
1179
1204
|
}
|
|
1180
1205
|
|
|
1181
1206
|
.lexvector .vecbox span.z {
|
|
1182
|
-
background-color:#
|
|
1207
|
+
background-color:#7490eb;
|
|
1183
1208
|
}
|
|
1184
1209
|
|
|
1185
1210
|
.lexvector .vecbox span.w {
|
|
@@ -1202,7 +1227,6 @@ input[type=number] {
|
|
|
1202
1227
|
}
|
|
1203
1228
|
|
|
1204
1229
|
.lexvector .vecbox .vecinput, .numberbox .vecinput {
|
|
1205
|
-
font-size: 12px;
|
|
1206
1230
|
margin-left: 2px;
|
|
1207
1231
|
border: none;
|
|
1208
1232
|
width: 100%;
|
|
@@ -1212,30 +1236,24 @@ input[type=number] {
|
|
|
1212
1236
|
color: #c1c1dbef;
|
|
1213
1237
|
}
|
|
1214
1238
|
|
|
1215
|
-
/* .lexvector .vecbox .vecinput.v2 {
|
|
1216
|
-
width: 66%;
|
|
1217
|
-
}
|
|
1218
|
-
|
|
1219
|
-
.lexvector .vecbox .vecinput.v3 {
|
|
1220
|
-
width: 50%;
|
|
1221
|
-
}
|
|
1222
|
-
|
|
1223
|
-
.lexvector .vecbox .vecinput.v4 {
|
|
1224
|
-
width: 33%;
|
|
1225
|
-
} */
|
|
1226
|
-
|
|
1227
1239
|
/* Number Widget */
|
|
1228
1240
|
|
|
1229
1241
|
.lexwidget .numberbox {
|
|
1230
1242
|
display: grid;
|
|
1231
|
-
|
|
1232
|
-
border:
|
|
1243
|
+
background-color: var(--global-button-color);
|
|
1244
|
+
border: 2px solid var(--global-color-transparent);
|
|
1245
|
+
border-radius: 6px;
|
|
1233
1246
|
margin-right: 2px;
|
|
1234
1247
|
position: relative;
|
|
1248
|
+
transition: 0.1s linear;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
.lexwidget .numberbox:hover {
|
|
1252
|
+
background-color: var(--global-button-color-hovered);
|
|
1235
1253
|
}
|
|
1236
1254
|
|
|
1237
1255
|
.lexwidget .numberbox:has(input:focus) {
|
|
1238
|
-
|
|
1256
|
+
border: 2px solid var(--global-selected);
|
|
1239
1257
|
}
|
|
1240
1258
|
|
|
1241
1259
|
.lexinputslider {
|
|
@@ -1272,11 +1290,13 @@ input[type="range"] {
|
|
|
1272
1290
|
.lexinputslider::-webkit-slider-thumb {
|
|
1273
1291
|
appearance: none;
|
|
1274
1292
|
-webkit-appearance: none;
|
|
1275
|
-
margin-top: -
|
|
1276
|
-
width:
|
|
1277
|
-
height:
|
|
1293
|
+
margin-top: -6px;
|
|
1294
|
+
width: 12px;
|
|
1295
|
+
height: 12px;
|
|
1296
|
+
border: 1px solid #c9c7de;
|
|
1278
1297
|
border-radius: 6px;
|
|
1279
|
-
background:
|
|
1298
|
+
background: var(--global-selected-dark);
|
|
1299
|
+
box-shadow: 0px 0px 6px #111;
|
|
1280
1300
|
cursor: pointer;
|
|
1281
1301
|
}
|
|
1282
1302
|
|
|
@@ -1370,7 +1390,7 @@ input[type="range"] {
|
|
|
1370
1390
|
margin-bottom: -8px;
|
|
1371
1391
|
color: var(--global-text-secondary);
|
|
1372
1392
|
font-weight: 600;
|
|
1373
|
-
font-size:
|
|
1393
|
+
font-size: var(--global-font-size);
|
|
1374
1394
|
}
|
|
1375
1395
|
|
|
1376
1396
|
.lextree .lextreetools {
|
|
@@ -1384,6 +1404,10 @@ input[type="range"] {
|
|
|
1384
1404
|
margin-top: 4px;
|
|
1385
1405
|
}
|
|
1386
1406
|
|
|
1407
|
+
.lextree .lextreetools input {
|
|
1408
|
+
font-size: var(--global-font-size);
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1387
1411
|
.lextree .lextreetools.notitle {
|
|
1388
1412
|
padding-top: 14px;
|
|
1389
1413
|
border-top-left-radius: 8px;
|
|
@@ -1394,7 +1418,7 @@ input[type="range"] {
|
|
|
1394
1418
|
margin-right: 8px;
|
|
1395
1419
|
}
|
|
1396
1420
|
|
|
1397
|
-
.lextree span {
|
|
1421
|
+
.lextree span { /* Tree title */
|
|
1398
1422
|
padding: 8px;
|
|
1399
1423
|
display: block;
|
|
1400
1424
|
border-top-left-radius: 8px;
|
|
@@ -1404,24 +1428,24 @@ input[type="range"] {
|
|
|
1404
1428
|
-moz-user-select: none; /* Firefox 2+ */
|
|
1405
1429
|
-ms-user-select: none; /* IE 10+ */
|
|
1406
1430
|
user-select: none; /* Standard syntax */
|
|
1407
|
-
font-size:
|
|
1431
|
+
font-size: 14px;
|
|
1408
1432
|
font-weight: 800;
|
|
1409
1433
|
}
|
|
1410
1434
|
|
|
1411
1435
|
.lextree ul {
|
|
1412
1436
|
padding-bottom: 16px;
|
|
1413
1437
|
padding-inline-start: 0px;
|
|
1414
|
-
font-size: 14px;
|
|
1415
1438
|
}
|
|
1416
1439
|
|
|
1417
1440
|
.lextree input {
|
|
1418
1441
|
background: none;
|
|
1419
1442
|
color: var(--global-text-primary);
|
|
1420
|
-
outline:none;
|
|
1443
|
+
outline: none;
|
|
1421
1444
|
border: none;
|
|
1445
|
+
font-size: var(--global-font-size);
|
|
1422
1446
|
font-family: var(--global-font);
|
|
1423
1447
|
line-height: 23px;
|
|
1424
|
-
|
|
1448
|
+
margin-left: -2px;
|
|
1425
1449
|
}
|
|
1426
1450
|
|
|
1427
1451
|
.lextree .lextreeitem {
|
|
@@ -1429,7 +1453,6 @@ input[type="range"] {
|
|
|
1429
1453
|
align-items: center;
|
|
1430
1454
|
margin-bottom: 3px;
|
|
1431
1455
|
line-height: 25px;
|
|
1432
|
-
font-size: 13px;
|
|
1433
1456
|
cursor: pointer;
|
|
1434
1457
|
outline: none;
|
|
1435
1458
|
border-radius: 6px;
|
|
@@ -1496,10 +1519,6 @@ input[type="range"] {
|
|
|
1496
1519
|
vertical-align: 1px;
|
|
1497
1520
|
}
|
|
1498
1521
|
|
|
1499
|
-
/* .lextree .lextreeitem.parent a.caret {
|
|
1500
|
-
margin-right: 6px;
|
|
1501
|
-
} */
|
|
1502
|
-
|
|
1503
1522
|
.lextree .lextreeitem .itemicon {
|
|
1504
1523
|
font-size: 10px !important;
|
|
1505
1524
|
float: right;
|
|
@@ -1584,19 +1603,18 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1584
1603
|
display: flex;
|
|
1585
1604
|
height: 100%;
|
|
1586
1605
|
color: var(--global-text);
|
|
1587
|
-
font-size:
|
|
1606
|
+
font-size: 13px;
|
|
1588
1607
|
font-weight: 500;
|
|
1589
1608
|
}
|
|
1590
1609
|
|
|
1591
1610
|
.lexmenubar .lexmenuentry {
|
|
1592
|
-
font-size: 13px;
|
|
1593
1611
|
min-height: 48px;
|
|
1594
1612
|
height: 100%;
|
|
1595
1613
|
display: flex;
|
|
1596
1614
|
justify-content: center;
|
|
1597
1615
|
align-items: center;
|
|
1598
|
-
padding-left:
|
|
1599
|
-
padding-right:
|
|
1616
|
+
padding-left: 4px;
|
|
1617
|
+
padding-right: 4px;
|
|
1600
1618
|
cursor: pointer;
|
|
1601
1619
|
margin-left: 4px;
|
|
1602
1620
|
-webkit-user-select: none; /* Safari 3.1+ */
|
|
@@ -1605,8 +1623,14 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1605
1623
|
user-select: none; /* Standard syntax */
|
|
1606
1624
|
}
|
|
1607
1625
|
|
|
1608
|
-
.lexmenubar .lexmenuentry
|
|
1626
|
+
.lexmenubar .lexmenuentry span {
|
|
1627
|
+
padding: 4px 8px;
|
|
1628
|
+
border-radius: 6px;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1631
|
+
.lexmenubar .lexmenuentry:hover span, .lexmenubar .lexmenuentry.selected span {
|
|
1609
1632
|
color: var(--global-text-primary);
|
|
1633
|
+
background-color: var(--global-color-secondary);
|
|
1610
1634
|
}
|
|
1611
1635
|
|
|
1612
1636
|
.lexmenubar .lexmenuentry:active{
|
|
@@ -1618,8 +1642,23 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1618
1642
|
position: absolute;
|
|
1619
1643
|
padding-right: 14px;
|
|
1620
1644
|
z-index: 1001;
|
|
1621
|
-
|
|
1622
|
-
|
|
1645
|
+
box-shadow: 0 0 8px rgba(0, 0, 0, 0.63) !important;
|
|
1646
|
+
background-color: var(--global-blur-background);
|
|
1647
|
+
border: 1px solid #91909036;
|
|
1648
|
+
border-radius: 6px;
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
.lexcontextmenu:before {
|
|
1652
|
+
content: "";
|
|
1653
|
+
position: absolute;
|
|
1654
|
+
width: 100%;
|
|
1655
|
+
height: 100%;
|
|
1656
|
+
top: 0;
|
|
1657
|
+
left: 0;
|
|
1658
|
+
border-radius: 6px;
|
|
1659
|
+
-webkit-backdrop-filter: blur(10px);
|
|
1660
|
+
backdrop-filter: blur(10px);
|
|
1661
|
+
z-index:-1;
|
|
1623
1662
|
}
|
|
1624
1663
|
|
|
1625
1664
|
.lexcontextmenu:focus {
|
|
@@ -1627,9 +1666,8 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1627
1666
|
}
|
|
1628
1667
|
|
|
1629
1668
|
.lexcontextmenu .lexcontextmenuentry {
|
|
1630
|
-
font-size:
|
|
1669
|
+
font-size: var(--global-font-size);
|
|
1631
1670
|
width: 100%;
|
|
1632
|
-
background-color: #343434c2;
|
|
1633
1671
|
color: #d5d7dbee;
|
|
1634
1672
|
padding: 4px;
|
|
1635
1673
|
padding-left: 14px;
|
|
@@ -1651,21 +1689,14 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1651
1689
|
position: relative;
|
|
1652
1690
|
}
|
|
1653
1691
|
|
|
1654
|
-
.lexcontextmenu .lexcontextmenuentry:
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
width: 100%;
|
|
1658
|
-
height: 100%;
|
|
1659
|
-
top:0;
|
|
1660
|
-
left:0;
|
|
1661
|
-
-webkit-backdrop-filter: blur(16px);
|
|
1662
|
-
backdrop-filter: blur(16px);
|
|
1663
|
-
z-index:-1;
|
|
1692
|
+
.lexcontextmenu .lexcontextmenuentry:first-child {
|
|
1693
|
+
border-top-right-radius: 5px;
|
|
1694
|
+
border-top-left-radius: 5px;
|
|
1664
1695
|
}
|
|
1665
1696
|
|
|
1666
|
-
.lexcontextmenu .lexcontextmenuentry
|
|
1667
|
-
border-bottom-right-radius:
|
|
1668
|
-
border-bottom-left-radius:
|
|
1697
|
+
.lexcontextmenu .lexcontextmenuentry:last-child {
|
|
1698
|
+
border-bottom-right-radius: 5px;
|
|
1699
|
+
border-bottom-left-radius: 5px;
|
|
1669
1700
|
}
|
|
1670
1701
|
|
|
1671
1702
|
.lexcontextmenu .lexcontextmenuentrycontainer {
|
|
@@ -1695,12 +1726,11 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1695
1726
|
/* submenu specified arrow */
|
|
1696
1727
|
.lexcontextmenu .lexcontextmenuentry a.fa-xs {
|
|
1697
1728
|
float: right;
|
|
1698
|
-
/* margin-top: -8px; */
|
|
1699
1729
|
margin-right: 8px;
|
|
1700
1730
|
}
|
|
1701
1731
|
|
|
1702
1732
|
.lexcontextmenu .lexcontextmenuentry:hover {
|
|
1703
|
-
background-color: var(--global-selected);
|
|
1733
|
+
background-color: var(--global-selected-dark);
|
|
1704
1734
|
color: #f5f5f5;
|
|
1705
1735
|
}
|
|
1706
1736
|
|
|
@@ -1728,10 +1758,10 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1728
1758
|
.lexcontextmenu .lexentryshort {
|
|
1729
1759
|
font-size: 10px;
|
|
1730
1760
|
float: right;
|
|
1731
|
-
|
|
1761
|
+
margin-top: 3px;
|
|
1732
1762
|
font-weight: bold;
|
|
1733
|
-
color: var(--global-
|
|
1734
|
-
margin-right:
|
|
1763
|
+
color: var(--global-button-color);
|
|
1764
|
+
margin-right: 12px;
|
|
1735
1765
|
}
|
|
1736
1766
|
|
|
1737
1767
|
.lexcontextmenu .lexcontextmenuentry:hover .lexentryshort {
|
|
@@ -1787,15 +1817,15 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1787
1817
|
z-index: 102;
|
|
1788
1818
|
position: absolute;
|
|
1789
1819
|
padding-right: 20px;
|
|
1790
|
-
border-radius:
|
|
1820
|
+
border-radius: 6px;
|
|
1791
1821
|
box-shadow: 0 0 8px rgba(0, 0, 0, 0.63) !important;
|
|
1792
1822
|
background-color: var(--global-blur-background);
|
|
1793
1823
|
border: 1px solid #91909036;
|
|
1794
1824
|
}
|
|
1795
1825
|
|
|
1796
1826
|
.lexcontextmenubox:before {
|
|
1797
|
-
content:"";
|
|
1798
|
-
position:absolute;
|
|
1827
|
+
content: "";
|
|
1828
|
+
position: absolute;
|
|
1799
1829
|
width: 100%;
|
|
1800
1830
|
height: 100%;
|
|
1801
1831
|
top:0;
|
|
@@ -1803,7 +1833,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1803
1833
|
-webkit-backdrop-filter: blur(10px);
|
|
1804
1834
|
backdrop-filter: blur(10px);
|
|
1805
1835
|
z-index:-1;
|
|
1806
|
-
border-radius:
|
|
1836
|
+
border-radius: 6px;
|
|
1807
1837
|
}
|
|
1808
1838
|
|
|
1809
1839
|
.lexcontextmenubox .lexcontextmenuentry {
|
|
@@ -1821,17 +1851,17 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1821
1851
|
}
|
|
1822
1852
|
|
|
1823
1853
|
.lexcontextmenubox .lexcontextmenuentry:first-child {
|
|
1824
|
-
border-top-left-radius:
|
|
1825
|
-
border-top-right-radius:
|
|
1854
|
+
border-top-left-radius: 5px;
|
|
1855
|
+
border-top-right-radius: 5px;
|
|
1826
1856
|
}
|
|
1827
1857
|
|
|
1828
1858
|
.lexcontextmenubox .lexcontextmenuentry:last-child {
|
|
1829
|
-
border-bottom-left-radius:
|
|
1830
|
-
border-bottom-right-radius:
|
|
1859
|
+
border-bottom-left-radius: 5px;
|
|
1860
|
+
border-bottom-right-radius: 5px;
|
|
1831
1861
|
}
|
|
1832
1862
|
|
|
1833
1863
|
.lexcontextmenubox .lexcontextmenuentry.cmtitle {
|
|
1834
|
-
background:
|
|
1864
|
+
background: var(--global-dark-background);
|
|
1835
1865
|
font-weight: bold;
|
|
1836
1866
|
cursor: default;
|
|
1837
1867
|
}
|
|
@@ -1847,7 +1877,10 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1847
1877
|
.lexcontextmenubox .lexcontextmenuentry .lexentryname {
|
|
1848
1878
|
margin-right: 10px;
|
|
1849
1879
|
margin-top: 2px;
|
|
1850
|
-
font-size:
|
|
1880
|
+
font-size: var(--global-font-size);
|
|
1881
|
+
white-space: nowrap;
|
|
1882
|
+
overflow: hidden;
|
|
1883
|
+
text-overflow: ellipsis;
|
|
1851
1884
|
}
|
|
1852
1885
|
|
|
1853
1886
|
.lexcontextmenubox .lexcontextmenuentry .lexentryname.disabled {
|
|
@@ -1890,6 +1923,64 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1890
1923
|
color: #979aa0e3;
|
|
1891
1924
|
}
|
|
1892
1925
|
|
|
1926
|
+
/* Side Bar */
|
|
1927
|
+
|
|
1928
|
+
.lexsidebar {
|
|
1929
|
+
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1932
|
+
.lexsidebar .lexsidebarentry {
|
|
1933
|
+
width: 64px;
|
|
1934
|
+
height: 64px;
|
|
1935
|
+
padding-left: 7.5px;
|
|
1936
|
+
margin-top: -6px;
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
.lexsidebar .lexsidebarentry:first-child {
|
|
1940
|
+
padding-top: 16px;
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
.lexsidebar .lexsidebarentry button {
|
|
1944
|
+
width: calc(100% - 16px);
|
|
1945
|
+
height: calc(100% - 16px);
|
|
1946
|
+
background-color: var(--global-button-color);
|
|
1947
|
+
color: var(--global-text);
|
|
1948
|
+
font-size: 18px;
|
|
1949
|
+
border-radius: 10px;
|
|
1950
|
+
border: 0px solid var(--global-color-transparent);
|
|
1951
|
+
transition: border 0.1s ease-in-out;
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1954
|
+
.lexsidebar .lexsidebarentry button:hover {
|
|
1955
|
+
border: 3px solid var(--global-selected);
|
|
1956
|
+
background-color: var(--global-button-color-hovered);
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1959
|
+
.lexsidebar .lexsidebarentry button:active {
|
|
1960
|
+
font-size: 17px;
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1963
|
+
.lexsidebar .lexsidebarentry.selected button {
|
|
1964
|
+
background-color: var(--global-button-color-hovered);
|
|
1965
|
+
border: 4px solid var(--global-selected);
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
.lexsidebar .lexsidebarfooter {
|
|
1969
|
+
position: absolute;
|
|
1970
|
+
bottom: 0;
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1973
|
+
.lexsidebar .lexsidebarfooter .lexsidebarentry button {
|
|
1974
|
+
width: calc(100% - 16px);
|
|
1975
|
+
height: calc(100% - 16px);
|
|
1976
|
+
background-color: unset;
|
|
1977
|
+
font-size: 14px;
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
.lexsidebar .lexsidebarfooter .lexsidebarentry button:active {
|
|
1981
|
+
font-size: 13px;
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1893
1984
|
/* Overlay Buttons */
|
|
1894
1985
|
|
|
1895
1986
|
.lexoverlaybuttons {
|
|
@@ -1955,7 +2046,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1955
2046
|
|
|
1956
2047
|
.lexoverlaybuttons .lexbutton {
|
|
1957
2048
|
padding: 14px 10px;
|
|
1958
|
-
font-size:
|
|
2049
|
+
font-size: var(--global-font-size);
|
|
1959
2050
|
border-radius: 6px;
|
|
1960
2051
|
justify-content: center;
|
|
1961
2052
|
background-color: #313132a5;
|
|
@@ -1966,7 +2057,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1966
2057
|
|
|
1967
2058
|
.lexoverlaybuttons .lexbutton a {
|
|
1968
2059
|
line-height: 19px;
|
|
1969
|
-
font-size:
|
|
2060
|
+
font-size: var(--global-font-size);
|
|
1970
2061
|
}
|
|
1971
2062
|
|
|
1972
2063
|
.lexoverlaybuttons .lexbutton img {
|
|
@@ -2227,7 +2318,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2227
2318
|
width: calc( 100% - 8px );
|
|
2228
2319
|
cursor: pointer;
|
|
2229
2320
|
color: rgba(216, 218, 230, 0.826);
|
|
2230
|
-
font-size:
|
|
2321
|
+
font-size: var(--global-font-size);
|
|
2231
2322
|
border-radius: 4px;
|
|
2232
2323
|
padding-left: 4px;
|
|
2233
2324
|
padding-right: 4px;
|
|
@@ -2279,14 +2370,10 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2279
2370
|
width: 100%;
|
|
2280
2371
|
padding: 6px;
|
|
2281
2372
|
color: var(--global-text-secondary);
|
|
2282
|
-
font-size:
|
|
2373
|
+
font-size: var(--global-font-size);
|
|
2283
2374
|
margin-top: -1px;
|
|
2284
2375
|
}
|
|
2285
2376
|
|
|
2286
|
-
.lexarrayitems * {
|
|
2287
|
-
font-size: 11px;
|
|
2288
|
-
}
|
|
2289
|
-
|
|
2290
2377
|
.lexarrayitems .small .lexbutton {
|
|
2291
2378
|
background: none;
|
|
2292
2379
|
}
|
|
@@ -2319,7 +2406,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2319
2406
|
justify-content: center;
|
|
2320
2407
|
color: var(--global-text);
|
|
2321
2408
|
display: inherit;
|
|
2322
|
-
font-size:
|
|
2409
|
+
font-size: var(--global-font-size);
|
|
2323
2410
|
}
|
|
2324
2411
|
|
|
2325
2412
|
.lextags .lextag:hover {
|
|
@@ -2338,7 +2425,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2338
2425
|
width: 100%;
|
|
2339
2426
|
padding: 6px;
|
|
2340
2427
|
color: var(--global-text-secondary);
|
|
2341
|
-
font-size:
|
|
2428
|
+
font-size: var(--global-font-size);
|
|
2342
2429
|
margin-top: -1px;
|
|
2343
2430
|
}
|
|
2344
2431
|
|
|
@@ -2407,11 +2494,10 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2407
2494
|
}
|
|
2408
2495
|
|
|
2409
2496
|
.lextimeline .lextree ul {
|
|
2410
|
-
/* background-color: var(--global-dark-background); */
|
|
2411
2497
|
margin: 0;
|
|
2412
2498
|
padding-bottom: 0px;
|
|
2413
2499
|
padding-top: 0px;
|
|
2414
|
-
font-size:
|
|
2500
|
+
font-size: var(--global-font-size);
|
|
2415
2501
|
}
|
|
2416
2502
|
|
|
2417
2503
|
.lextimeline .lexsplitbar.vertical {
|
|
@@ -2420,15 +2506,6 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2420
2506
|
height: unset;
|
|
2421
2507
|
}
|
|
2422
2508
|
|
|
2423
|
-
/* .lextimeline.hidden{
|
|
2424
|
-
animation-name: fadeout;
|
|
2425
|
-
animation-duration: 0.5s;
|
|
2426
|
-
} */
|
|
2427
|
-
|
|
2428
|
-
/* .lexarea:has(.lexmin) {
|
|
2429
|
-
position: relative;
|
|
2430
|
-
} */
|
|
2431
|
-
|
|
2432
2509
|
.lexmin {
|
|
2433
2510
|
display: inline-block;
|
|
2434
2511
|
color: var(--global-selected-light);
|
|
@@ -2549,7 +2626,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2549
2626
|
|
|
2550
2627
|
ul.lexassetscontent {
|
|
2551
2628
|
-webkit-text-size-adjust: 100%;
|
|
2552
|
-
font-size:
|
|
2629
|
+
font-size: var(--global-font-size);
|
|
2553
2630
|
color: #AAA;
|
|
2554
2631
|
box-sizing: border-box;
|
|
2555
2632
|
overflow: auto;
|
|
@@ -2566,7 +2643,7 @@ ul.lexassetscontent {
|
|
|
2566
2643
|
|
|
2567
2644
|
.lexassetscontent li {
|
|
2568
2645
|
-webkit-text-size-adjust: 100%;
|
|
2569
|
-
font-size:
|
|
2646
|
+
font-size: var(--global-font-size);
|
|
2570
2647
|
color: #AAA;
|
|
2571
2648
|
-webkit-user-drag: element;
|
|
2572
2649
|
user-select: none;
|
|
@@ -2641,7 +2718,7 @@ ul.lexassetscontent {
|
|
|
2641
2718
|
width: 100%;
|
|
2642
2719
|
bottom: 0px;
|
|
2643
2720
|
-webkit-text-size-adjust: 100%;
|
|
2644
|
-
font-size:
|
|
2721
|
+
font-size: var(--global-font-size);
|
|
2645
2722
|
color: #BBB;
|
|
2646
2723
|
cursor: pointer;
|
|
2647
2724
|
text-align: center;
|
|
@@ -2697,7 +2774,7 @@ ul.lexassetscontent {
|
|
|
2697
2774
|
.lexassetscontent li img {
|
|
2698
2775
|
-webkit-text-size-adjust: 100%;
|
|
2699
2776
|
font-family: 'Arial';
|
|
2700
|
-
font-size:
|
|
2777
|
+
font-size: var(--global-font-size);
|
|
2701
2778
|
cursor: pointer;
|
|
2702
2779
|
text-align: center;
|
|
2703
2780
|
color: white;
|
|
@@ -2833,6 +2910,7 @@ ul.lexassetscontent {
|
|
|
2833
2910
|
margin-top: 28px;
|
|
2834
2911
|
overflow: hidden;
|
|
2835
2912
|
position: absolute;
|
|
2913
|
+
top: 0;
|
|
2836
2914
|
}
|
|
2837
2915
|
|
|
2838
2916
|
.lexcodeeditor .codetabsarea {
|
|
@@ -2841,6 +2919,10 @@ ul.lexassetscontent {
|
|
|
2841
2919
|
overflow: scroll;
|
|
2842
2920
|
}
|
|
2843
2921
|
|
|
2922
|
+
.lexcodeeditor .codetabsarea.no-code-info {
|
|
2923
|
+
height: calc( 100% - 28px ) !important;
|
|
2924
|
+
}
|
|
2925
|
+
|
|
2844
2926
|
.lexcodeeditor .codetabsarea::-webkit-scrollbar {
|
|
2845
2927
|
display: none;
|
|
2846
2928
|
}
|
|
@@ -3184,7 +3266,343 @@ pre .line-gutter {
|
|
|
3184
3266
|
|
|
3185
3267
|
/* Node Graph */
|
|
3186
3268
|
|
|
3187
|
-
.
|
|
3269
|
+
.lexgraph {
|
|
3270
|
+
overflow: hidden;
|
|
3271
|
+
position: relative;
|
|
3272
|
+
outline: none;
|
|
3273
|
+
cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAA4lJREFUWEftl1FIk1EUx/9qOGtNU4wkC1RQEc2hD9P5oigqH1PxIQqhgYI+iHtIE0ZQKoZo6BDniFScsIcgCSEILMPhJBRCh6G+qKSopHy2iVnOudniyDdZY3NTJ/rghcvGuPvO7/zP/557Pz+c8/A75/i4cAAERNPGzTMXyFEBfwAB6+vrqoiIiMcA9gFYzhrEEeAKgKC1tbX6nZ2dh3t7e3UJCQnvAJgBWM8KxBkgWKvV3g8KCnoZFxfHZ1l2fHV1tS4vL+8rgD1OFZ+WxREgAMCN0tLSex0dHR9DQkJ4ra2tkMlkFoPBoGppaWlTqVQGrix/fUXhCEDfQwDcMRqNY9nZ2YKpqSkkJydDoVBYExMTN7a3t5vi4+M1AHZ9VRbnbXgdQOTs7OzbtrY2YV9f32GiUqkU7e3tFpPJNL6ystKckZExyvmDzHri4QxwFUDE2NhYvV6vL5HJZIHOT6ay1NTU2FiW7RoYGFBUVVWtnKYszgAU8KZarS5JSkpqEIlEfFepRUdHo7e3dzclJWVrc3NTERMT8/qkZXEGICOGSSQSYX9//yCfz6et6XYUFxdDrVbTNp1YWlpqT01NHTxuWZwB7Ea8y7LsF4ZhgicnJ90C8Hg8ZGZmQiwWo6GhAQaD4VV4ePgTDoK6qcfh6iw4MOL09PSbzs7O1O7u7v8eEhsbC4lEgtzcXLNYLPa32WyW5eXlaaPR+Hlubm64srJyAsAOAK+2qisAMuItnU73fH5+/lF5efmhEaurq9HY2GhZWFhYWlxcnNRqtd9UKtUsgF8AqEf8BLDF+eHEClDA8J6engcikahJKBReIwnS0tIwMjKyL5fLXyiVSqoLBfrDZWsCQJMyt/cIj/LTAlcKkBFDs7KykoaGhoYDAwPpkIJOp9u1Wq0fcnJyOgFscFlTMGrRdFbQpJ7glfR2OlcAjkbUMQwTWlBQgLKystWoqCgpgGVObsqYgh4roLMs7i4kZMTbMzMzGqVSmdbV1UXt+Gltbe17AD8A/PbVweQO4MCIo6OjcoFAIDWbzZ/S09ObAVDX2+Rk96rGnha5AyAjhmk0msL8/PxnDMOU6fX67wBYzmxeOdxTcHcmpN/JiILCwsLIiooKcVFR0TCX+bavpD/KhHYwHt2QAFA7JqfbHe9NYl6vOepWfHBHBECftL1o+kx6Twp4ncFpF16494LTJnTs/18qcKnAPygqQzAAgQjBAAAAAElFTkSuQmCC) 4 4, auto !important;
|
|
3274
|
+
}
|
|
3275
|
+
|
|
3276
|
+
.lexgraph .lexdropdown ul {
|
|
3277
|
+
max-height: unset;
|
|
3278
|
+
}
|
|
3279
|
+
|
|
3280
|
+
.lexgraph .lexgraphnodes, .lexgraph .lexgraphlinks {
|
|
3188
3281
|
width: 100%;
|
|
3189
3282
|
height: 100%;
|
|
3190
|
-
|
|
3283
|
+
position: absolute;
|
|
3284
|
+
}
|
|
3285
|
+
|
|
3286
|
+
.lexgraph .lexgraphlinks {
|
|
3287
|
+
pointer-events: none;
|
|
3288
|
+
}
|
|
3289
|
+
|
|
3290
|
+
.lexgraph .lexgraphlinks path {
|
|
3291
|
+
stroke-width: 3px;
|
|
3292
|
+
stroke-opacity: 0.9;
|
|
3293
|
+
}
|
|
3294
|
+
|
|
3295
|
+
.lexgraph .lexgraphlinks path.running {
|
|
3296
|
+
stroke-dasharray: 5px;
|
|
3297
|
+
stroke-linecap: round;
|
|
3298
|
+
stroke-dashoffset: 50;
|
|
3299
|
+
animation: dash 1s linear;
|
|
3300
|
+
animation-iteration-count: infinite;
|
|
3301
|
+
}
|
|
3302
|
+
|
|
3303
|
+
@keyframes dash {
|
|
3304
|
+
to {
|
|
3305
|
+
stroke-dashoffset: 0;
|
|
3306
|
+
}
|
|
3307
|
+
}
|
|
3308
|
+
|
|
3309
|
+
.lexgraph svg {
|
|
3310
|
+
position: absolute;
|
|
3311
|
+
overflow: visible;
|
|
3312
|
+
top: 0;
|
|
3313
|
+
left: 0;
|
|
3314
|
+
bottom: 0;
|
|
3315
|
+
right: 0;
|
|
3316
|
+
}
|
|
3317
|
+
|
|
3318
|
+
.lexgraph .box-selection-svg {
|
|
3319
|
+
stroke-width: 3px;
|
|
3320
|
+
stroke: var(--global-selected);
|
|
3321
|
+
border-radius: 8px;
|
|
3322
|
+
fill: var(--global-selected);
|
|
3323
|
+
fill-opacity: 0.2;
|
|
3324
|
+
}
|
|
3325
|
+
|
|
3326
|
+
.lexgraph .box-selection-svg.removing {
|
|
3327
|
+
stroke-dasharray: 6px;
|
|
3328
|
+
stroke-linecap: round;
|
|
3329
|
+
}
|
|
3330
|
+
|
|
3331
|
+
.lexgraphnode {
|
|
3332
|
+
position: absolute;
|
|
3333
|
+
-webkit-user-select: none; /* Safari 3.1+ */
|
|
3334
|
+
-moz-user-select: none; /* Firefox 2+ */
|
|
3335
|
+
-ms-user-select: none; /* IE 10+ */
|
|
3336
|
+
user-select: none; /* Standard syntax */
|
|
3337
|
+
cursor: pointer;
|
|
3338
|
+
min-width: 96px;
|
|
3339
|
+
min-height: 32px;
|
|
3340
|
+
border-radius: 10px;
|
|
3341
|
+
|
|
3342
|
+
/* background-color: rgba(var(--graphnode-background), 0.75); */
|
|
3343
|
+
background: linear-gradient(15deg, #161616da 10%, #080808da);
|
|
3344
|
+
background-color: unset; background-origin: border-box;
|
|
3345
|
+
|
|
3346
|
+
-webkit-backdrop-filter: blur(4px);
|
|
3347
|
+
backdrop-filter: blur(4px);
|
|
3348
|
+
border: 3px solid var(--global-color-transparent);
|
|
3349
|
+
transition: border 0.05s linear;
|
|
3350
|
+
padding: 4px;
|
|
3351
|
+
}
|
|
3352
|
+
|
|
3353
|
+
.lexgraphnode.math {
|
|
3354
|
+
background: linear-gradient(15deg, #0687d1da 10%, #00ffccda);
|
|
3355
|
+
background-color: unset; background-origin: border-box;
|
|
3356
|
+
}
|
|
3357
|
+
|
|
3358
|
+
.lexgraphnode.logic {
|
|
3359
|
+
background: linear-gradient(15deg, #FB4D3Dda 10%, #A74482da);
|
|
3360
|
+
background-color: unset; background-origin: border-box;
|
|
3361
|
+
}
|
|
3362
|
+
|
|
3363
|
+
.lexgraphnode.inputs {
|
|
3364
|
+
background: linear-gradient(15deg, #84e100da 10%, #79a095da);
|
|
3365
|
+
background-color: unset; background-origin: border-box;
|
|
3366
|
+
}
|
|
3367
|
+
|
|
3368
|
+
.lexgraphnode.variables {
|
|
3369
|
+
background: linear-gradient(15deg, #f1e643da 10%, #e78b8bda);
|
|
3370
|
+
background-color: unset; background-origin: border-box;
|
|
3371
|
+
}
|
|
3372
|
+
|
|
3373
|
+
.lexgraphnode.events {
|
|
3374
|
+
background: linear-gradient(15deg, #ec49d7da 10%, #8dc0b8da);
|
|
3375
|
+
background-color: unset; background-origin: border-box;
|
|
3376
|
+
}
|
|
3377
|
+
|
|
3378
|
+
|
|
3379
|
+
.lexgraphnode.selected {
|
|
3380
|
+
border: 3px solid var(--global-selected-dark);
|
|
3381
|
+
border: 3px solid #ffc107;
|
|
3382
|
+
box-shadow: 0 2px 6px 0 rgba(0,0,0,.14);
|
|
3383
|
+
}
|
|
3384
|
+
|
|
3385
|
+
.lexgraphnode .lexgraphnodeheader, .lexgraphnode .lexgraphnodeproperties {
|
|
3386
|
+
font-family: var(--global-title-font);
|
|
3387
|
+
font-weight: 700;
|
|
3388
|
+
font-size: 13px;
|
|
3389
|
+
color: #d9d9e3;
|
|
3390
|
+
text-shadow: 0px 0px 2px #1b1b1bdc;
|
|
3391
|
+
border-bottom: 1px solid #ffffff46;
|
|
3392
|
+
margin-bottom: 2px;
|
|
3393
|
+
pointer-events: none;
|
|
3394
|
+
text-align: -webkit-center;
|
|
3395
|
+
text-align: center;
|
|
3396
|
+
margin-left: -7px;
|
|
3397
|
+
width: calc(100% + 14px);
|
|
3398
|
+
}
|
|
3399
|
+
|
|
3400
|
+
.lexgraphnode.selected .lexgraphnodeheader, .lexgraphnode.selected .lexgraphnodeproperties {
|
|
3401
|
+
margin-left: -4px;
|
|
3402
|
+
width: calc(100% + 8px);
|
|
3403
|
+
}
|
|
3404
|
+
|
|
3405
|
+
.lexgraphnode .lexgraphnodeproperties {
|
|
3406
|
+
pointer-events: all;
|
|
3407
|
+
}
|
|
3408
|
+
|
|
3409
|
+
.lexgraphnode .lexgraphnodeios {
|
|
3410
|
+
display: flex;
|
|
3411
|
+
pointer-events: none;
|
|
3412
|
+
}
|
|
3413
|
+
|
|
3414
|
+
.lexgraphnode .lexgraphnodeios .lexgraphnodeinputs {
|
|
3415
|
+
margin-right: 6px;
|
|
3416
|
+
}
|
|
3417
|
+
|
|
3418
|
+
.lexgraphnode .lexgraphnodeios .lexgraphnodeoutputs {
|
|
3419
|
+
margin-left: 6px;
|
|
3420
|
+
}
|
|
3421
|
+
|
|
3422
|
+
.lexgraphnode .lexgraphnodeio {
|
|
3423
|
+
font-family: var(--global-title-font);
|
|
3424
|
+
font-weight: 500;
|
|
3425
|
+
font-size: 10px;
|
|
3426
|
+
color: #d9d9e3;
|
|
3427
|
+
text-shadow: 0px 1px 6px #22222283;
|
|
3428
|
+
display: flex;
|
|
3429
|
+
min-height: 18px;
|
|
3430
|
+
}
|
|
3431
|
+
|
|
3432
|
+
.lexgraphnode .lexgraphnodeio.iooutput {
|
|
3433
|
+
justify-content: right;
|
|
3434
|
+
}
|
|
3435
|
+
|
|
3436
|
+
.lexgraphnode .lexgraphnodeio .io__type {
|
|
3437
|
+
font-size: 7px;
|
|
3438
|
+
font-weight: 700;
|
|
3439
|
+
line-height: 10px;
|
|
3440
|
+
min-width: 11px;
|
|
3441
|
+
max-width: 11px;
|
|
3442
|
+
min-height: 10px;
|
|
3443
|
+
max-height: 10px;
|
|
3444
|
+
background-color: #afafaf;
|
|
3445
|
+
align-self: center;
|
|
3446
|
+
margin-right: 3px;
|
|
3447
|
+
border-radius: 3px;
|
|
3448
|
+
padding-top: 1px;
|
|
3449
|
+
text-align: -webkit-center;
|
|
3450
|
+
text-align: center;
|
|
3451
|
+
border: 1px solid #afafaf6b;
|
|
3452
|
+
color: var(--global-color-primary);
|
|
3453
|
+
pointer-events: all;
|
|
3454
|
+
}
|
|
3455
|
+
|
|
3456
|
+
.lexgraphnode .lexgraphnodeio .io__type span {
|
|
3457
|
+
pointer-events: none;
|
|
3458
|
+
}
|
|
3459
|
+
|
|
3460
|
+
.lexgraphnode .lexgraphnodeio .io__typedesc {
|
|
3461
|
+
position: absolute;
|
|
3462
|
+
margin-left: -30px;
|
|
3463
|
+
font-weight: 600;
|
|
3464
|
+
margin-top: 3px;
|
|
3465
|
+
background-color: #afafaf;
|
|
3466
|
+
color: var(--global-color-primary);
|
|
3467
|
+
font-size: 8px;
|
|
3468
|
+
border-radius: 4px;
|
|
3469
|
+
width: 28px;
|
|
3470
|
+
text-align: center;
|
|
3471
|
+
opacity: 0;
|
|
3472
|
+
transition: opacity ease-in 0.1s;
|
|
3473
|
+
}
|
|
3474
|
+
|
|
3475
|
+
.lexgraphnode .lexgraphnodeio .io__typedesc.output {
|
|
3476
|
+
margin-right: -30px;
|
|
3477
|
+
}
|
|
3478
|
+
|
|
3479
|
+
.lexgraphnode .lexgraphnodeio .io__type.vec2,
|
|
3480
|
+
.lexgraphnode .lexgraphnodeio .io__typedesc.vec2 { background-color: #ecea4c; }
|
|
3481
|
+
.lexgraphnode .lexgraphnodeio .io__type.vec3,
|
|
3482
|
+
.lexgraphnode .lexgraphnodeio .io__typedesc.vec3 { background-color: #ee87e5; }
|
|
3483
|
+
.lexgraphnode .lexgraphnodeio .io__type.vec4,
|
|
3484
|
+
.lexgraphnode .lexgraphnodeio .io__typedesc.vec4 { background-color: #9d56d8; }
|
|
3485
|
+
.lexgraphnode .lexgraphnodeio .io__type.string,
|
|
3486
|
+
.lexgraphnode .lexgraphnodeio .io__typedesc.string { background-color: #79cc9c; }
|
|
3487
|
+
.lexgraphnode .lexgraphnodeio .io__type.mat,
|
|
3488
|
+
.lexgraphnode .lexgraphnodeio .io__typedesc.mat { background-color: #56a8d8; }
|
|
3489
|
+
|
|
3490
|
+
.lexgraphnode .lexgraphnodeio .io__name {
|
|
3491
|
+
margin-top: 2px;
|
|
3492
|
+
}
|
|
3493
|
+
|
|
3494
|
+
.lexgraphnode .lexgraphnodeio .io__type.output {
|
|
3495
|
+
margin-right: unset;
|
|
3496
|
+
margin-left: 3px;
|
|
3497
|
+
}
|
|
3498
|
+
|
|
3499
|
+
.lexgraphnode .lexgraphnodeio:hover .io__typedesc {
|
|
3500
|
+
opacity: 1;
|
|
3501
|
+
}
|
|
3502
|
+
|
|
3503
|
+
.lexgraphnode .lexgraphnodeio .io__type:hover {
|
|
3504
|
+
filter: brightness(1.2);
|
|
3505
|
+
}
|
|
3506
|
+
|
|
3507
|
+
.lexgraphnode .lexgraphnodeio[data-active] .io__type:hover {
|
|
3508
|
+
background-color: rgba(255, 58, 58, 0.829);
|
|
3509
|
+
}
|
|
3510
|
+
|
|
3511
|
+
.lexgraphnode .lexgraphnodeio[data-active] .io__type:hover span {
|
|
3512
|
+
display: none;
|
|
3513
|
+
}
|
|
3514
|
+
|
|
3515
|
+
.lexgraphnode .lexgraphnodeio[data-active] .io__type:hover::after {
|
|
3516
|
+
content: 'X';
|
|
3517
|
+
}
|
|
3518
|
+
|
|
3519
|
+
.lexgraphnode .lexgraphnodeio[data-active] .io__type {
|
|
3520
|
+
filter: brightness(1.4);
|
|
3521
|
+
}
|
|
3522
|
+
|
|
3523
|
+
.lexgraph .lexgraphpropdialog {
|
|
3524
|
+
transform: translateY(-96px);
|
|
3525
|
+
}
|
|
3526
|
+
|
|
3527
|
+
.lexgraph .lexgraphpropdialog.opened {
|
|
3528
|
+
transform: translateY(0px);
|
|
3529
|
+
}
|
|
3530
|
+
|
|
3531
|
+
.lexgraph .lexgraphgroups {
|
|
3532
|
+
z-index: 1;
|
|
3533
|
+
}
|
|
3534
|
+
|
|
3535
|
+
.lexgraphgroup {
|
|
3536
|
+
position: absolute;
|
|
3537
|
+
-webkit-user-select: none; /* Safari 3.1+ */
|
|
3538
|
+
-moz-user-select: none; /* Firefox 2+ */
|
|
3539
|
+
-ms-user-select: none; /* IE 10+ */
|
|
3540
|
+
user-select: none; /* Standard syntax */
|
|
3541
|
+
cursor: pointer;
|
|
3542
|
+
min-width: 96px;
|
|
3543
|
+
min-height: 32px;
|
|
3544
|
+
border-radius: 8px;
|
|
3545
|
+
|
|
3546
|
+
background: linear-gradient(35deg, #949292 10%, #a7c4bd);
|
|
3547
|
+
background-color: unset; background-origin: border-box;
|
|
3548
|
+
|
|
3549
|
+
-webkit-backdrop-filter: blur(4px);
|
|
3550
|
+
backdrop-filter: blur(4px);
|
|
3551
|
+
border: 1px solid var(--global-text-primary);
|
|
3552
|
+
transition: border 0.05s linear;
|
|
3553
|
+
opacity: 0.5;
|
|
3554
|
+
}
|
|
3555
|
+
|
|
3556
|
+
.lexgraphgroup .lexgraphgrouptitle {
|
|
3557
|
+
font-size: 14px;
|
|
3558
|
+
margin: 8px;
|
|
3559
|
+
font-weight: 800;
|
|
3560
|
+
color: var(--global-color-primary);
|
|
3561
|
+
font-family: var(--global-title-font);
|
|
3562
|
+
outline: none;
|
|
3563
|
+
border: none;
|
|
3564
|
+
background: none;
|
|
3565
|
+
max-width: 128px;
|
|
3566
|
+
overflow: hidden;
|
|
3567
|
+
white-space: nowrap;
|
|
3568
|
+
text-overflow: ellipsis;
|
|
3569
|
+
border-bottom: 1px solid var(--global-color-primary);
|
|
3570
|
+
}
|
|
3571
|
+
|
|
3572
|
+
.lexgraphgroup .lexgraphgrouptitle:disabled {
|
|
3573
|
+
pointer-events: none;
|
|
3574
|
+
border: none;
|
|
3575
|
+
}
|
|
3576
|
+
|
|
3577
|
+
.lexgraphgroup .lexgraphgroupresizer {
|
|
3578
|
+
position: absolute;
|
|
3579
|
+
bottom: 2px;
|
|
3580
|
+
right: 2px;
|
|
3581
|
+
width: 12px;
|
|
3582
|
+
height: 12px;
|
|
3583
|
+
border-bottom: 2px solid var(--global-color-primary);
|
|
3584
|
+
border-right: 2px solid var(--global-color-primary);
|
|
3585
|
+
border-bottom-right-radius: 8px;
|
|
3586
|
+
}
|
|
3587
|
+
|
|
3588
|
+
.lexgraphgroup .lexgraphgroupresizer:hover {
|
|
3589
|
+
border-bottom: 2px solid #4b4b4ba8;
|
|
3590
|
+
border-right: 2px solid #4b4b4ba8;
|
|
3591
|
+
}
|
|
3592
|
+
|
|
3593
|
+
/* .lexgraphnodeproperties .lexwidget .numberbox, .lexgraphnodeproperties .lexwidget .lextext {
|
|
3594
|
+
margin: unset;
|
|
3595
|
+
background-color: unset;
|
|
3596
|
+
}
|
|
3597
|
+
|
|
3598
|
+
.lexgraphnodeproperties .lexwidget.nobranch {
|
|
3599
|
+
padding: 0px;
|
|
3600
|
+
}
|
|
3601
|
+
|
|
3602
|
+
.lexgraphnodeproperties .lexwidget input {
|
|
3603
|
+
font-size: 14px;
|
|
3604
|
+
font-weight: 800;
|
|
3605
|
+
color: var(--global-color-primary);
|
|
3606
|
+
font-family: var(--global-title-font);
|
|
3607
|
+
max-width: 64px;
|
|
3608
|
+
} */
|