lexgui 0.1.26 → 0.1.28
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 +222 -143
- package/build/components/nodegraph.js +431 -233
- package/build/lexgui.css +331 -163
- package/build/lexgui.js +162 -51
- package/build/lexgui.module.js +164 -53
- package/changelog.md +18 -0
- package/demo.js +1 -1
- package/examples/code_editor.html +9 -12
- 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,23 +1,29 @@
|
|
|
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;
|
|
@@ -56,7 +62,7 @@ html, body {
|
|
|
56
62
|
margin: 0;
|
|
57
63
|
padding: 0;
|
|
58
64
|
font-family: var(--global-font);
|
|
59
|
-
letter-spacing: -0.
|
|
65
|
+
letter-spacing: -0.01em;
|
|
60
66
|
font-weight: 400;
|
|
61
67
|
}
|
|
62
68
|
|
|
@@ -72,6 +78,10 @@ body.nocursor * {
|
|
|
72
78
|
cursor: none !important;
|
|
73
79
|
}
|
|
74
80
|
|
|
81
|
+
body.noevents * {
|
|
82
|
+
pointer-events: none !important;
|
|
83
|
+
}
|
|
84
|
+
|
|
75
85
|
.grabbing {
|
|
76
86
|
cursor: move;
|
|
77
87
|
}
|
|
@@ -163,7 +173,7 @@ body.nocursor * {
|
|
|
163
173
|
border: none;
|
|
164
174
|
font-family: var(--global-font);
|
|
165
175
|
line-height: 23px;
|
|
166
|
-
font-size:
|
|
176
|
+
font-size: 13px;
|
|
167
177
|
font-weight: 500;
|
|
168
178
|
}
|
|
169
179
|
|
|
@@ -181,7 +191,7 @@ body.nocursor * {
|
|
|
181
191
|
padding: 10px;
|
|
182
192
|
padding-left: 50px;
|
|
183
193
|
color: var(--global-text-primary);
|
|
184
|
-
font-size:
|
|
194
|
+
font-size: 13px;
|
|
185
195
|
cursor: pointer;
|
|
186
196
|
}
|
|
187
197
|
|
|
@@ -210,7 +220,7 @@ body.nocursor * {
|
|
|
210
220
|
|
|
211
221
|
#global_search .searchitembox .searchitem .lang-ext {
|
|
212
222
|
color: #676e75;
|
|
213
|
-
font-size:
|
|
223
|
+
font-size: var(--global-font-size);
|
|
214
224
|
}
|
|
215
225
|
|
|
216
226
|
#global_search .searchitembox .searchitem.last {
|
|
@@ -237,15 +247,16 @@ body.nocursor * {
|
|
|
237
247
|
}
|
|
238
248
|
|
|
239
249
|
.lexdialogtitle {
|
|
240
|
-
|
|
241
|
-
|
|
250
|
+
font-family: var(--global-title-font);
|
|
251
|
+
font-weight: 700;
|
|
242
252
|
font-size: 18px;
|
|
243
|
-
font-weight: bold;
|
|
244
253
|
color: #d9d9e3;
|
|
245
|
-
text-shadow: 0px 1px
|
|
254
|
+
text-shadow: 0px 1px 6px #22222283;
|
|
246
255
|
width: calc( 100% - 24px);
|
|
247
256
|
padding: 8px;
|
|
248
257
|
padding-left: 16px;
|
|
258
|
+
border-top-left-radius: 8px;
|
|
259
|
+
border-top-right-radius: 8px;
|
|
249
260
|
display: flex;
|
|
250
261
|
justify-content: space-between;
|
|
251
262
|
-webkit-user-select: none; /* Safari 3.1+ */
|
|
@@ -446,12 +457,13 @@ body.nocursor * {
|
|
|
446
457
|
}
|
|
447
458
|
|
|
448
459
|
.lexbranchtitle {
|
|
449
|
-
font-
|
|
450
|
-
font-weight:
|
|
460
|
+
font-family: var(--global-title-font);
|
|
461
|
+
font-weight: 700;
|
|
462
|
+
font-size: 15px;
|
|
451
463
|
color: var(--global-text);
|
|
452
464
|
background-color: var(--global-color-secondary);
|
|
465
|
+
text-shadow: 0px 1px 6px #1111117c;
|
|
453
466
|
padding: 10px;
|
|
454
|
-
text-shadow: 0px 1px 2px #000;
|
|
455
467
|
border-top-left-radius: 8px;
|
|
456
468
|
border-top-right-radius: 8px;
|
|
457
469
|
cursor: pointer;
|
|
@@ -504,7 +516,7 @@ body.nocursor * {
|
|
|
504
516
|
}
|
|
505
517
|
|
|
506
518
|
.lexbranch .branchicon {
|
|
507
|
-
font-size:
|
|
519
|
+
font-size: var(--global-font-size);
|
|
508
520
|
}
|
|
509
521
|
|
|
510
522
|
.lexbranch.first .lexbranchtitle {
|
|
@@ -532,12 +544,16 @@ body.nocursor * {
|
|
|
532
544
|
display: flex;
|
|
533
545
|
align-items: center;
|
|
534
546
|
padding: 5px;
|
|
535
|
-
font-size:
|
|
547
|
+
font-size: var(--global-font-size);
|
|
536
548
|
color: #DCDCDC;
|
|
537
549
|
line-height: 2;
|
|
538
550
|
overflow: hidden;
|
|
539
551
|
}
|
|
540
552
|
|
|
553
|
+
.lexwidget * {
|
|
554
|
+
font-size: var(--global-font-size);
|
|
555
|
+
}
|
|
556
|
+
|
|
541
557
|
.lexinlinewidgets .lexwidget {
|
|
542
558
|
padding-left: 10px;
|
|
543
559
|
padding-right: 10px;
|
|
@@ -614,17 +630,21 @@ body.nocursor * {
|
|
|
614
630
|
background: none;
|
|
615
631
|
padding: 3px;
|
|
616
632
|
color: var(--global-text-primary);
|
|
617
|
-
font-size: 13px;
|
|
618
633
|
font-weight: 500;
|
|
619
634
|
outline: none;
|
|
620
|
-
border:
|
|
621
|
-
border
|
|
635
|
+
border-radius: 6px;
|
|
636
|
+
border: 2px solid var(--global-color-transparent);
|
|
637
|
+
transition: border-color 0.1s linear;
|
|
622
638
|
}
|
|
623
639
|
|
|
624
640
|
.lexwidget .lextext, .lexwidget .lexnumber {
|
|
625
641
|
padding-left: 4px;
|
|
626
642
|
}
|
|
627
643
|
|
|
644
|
+
.lexwidget .lextext input {
|
|
645
|
+
padding: 5px;
|
|
646
|
+
}
|
|
647
|
+
|
|
628
648
|
.lexwidget .lextext div {
|
|
629
649
|
color: #b2b2b5d6;
|
|
630
650
|
}
|
|
@@ -640,36 +660,34 @@ body.nocursor * {
|
|
|
640
660
|
}
|
|
641
661
|
|
|
642
662
|
.lexwidget .lextext input:focus {
|
|
643
|
-
border-
|
|
663
|
+
border-color: var(--global-selected);
|
|
644
664
|
}
|
|
645
665
|
|
|
646
666
|
.lexwidget .inputicon {
|
|
647
|
-
border-bottom: 1px solid #bbbbbb47;
|
|
648
667
|
padding: 4px;
|
|
649
668
|
font-size: 11px;
|
|
650
669
|
margin-top: 2px;
|
|
651
670
|
}
|
|
652
671
|
|
|
653
|
-
.lexwidget:has(input:focus) .inputicon {
|
|
654
|
-
border-bottom: 2px solid var(--global-selected);
|
|
655
|
-
}
|
|
656
|
-
|
|
657
672
|
.lexwidget textarea {
|
|
658
673
|
word-break: break-word;
|
|
659
674
|
font-family: var(--global-font);
|
|
660
|
-
font-size: 13px;
|
|
661
675
|
background: none;
|
|
662
|
-
padding:
|
|
676
|
+
padding: 5px;
|
|
663
677
|
color: var(--global-text-primary);
|
|
664
678
|
font-weight: 600;
|
|
665
|
-
outline:none;
|
|
666
|
-
border:
|
|
667
|
-
border
|
|
679
|
+
outline: none;
|
|
680
|
+
border-radius: 6px;
|
|
681
|
+
border: 2px solid var(--global-color-transparent);
|
|
682
|
+
transition: 0.1s linear;
|
|
668
683
|
}
|
|
669
684
|
|
|
670
685
|
.lexwidget textarea:disabled {
|
|
671
686
|
resize: none;
|
|
672
|
-
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.lexwidget textarea:focus {
|
|
690
|
+
border: 2px solid var(--global-selected);
|
|
673
691
|
}
|
|
674
692
|
|
|
675
693
|
.lexwidget input.colorinput {
|
|
@@ -699,7 +717,6 @@ body.nocursor * {
|
|
|
699
717
|
}
|
|
700
718
|
|
|
701
719
|
.lexfilter input {
|
|
702
|
-
font-size: 12px;
|
|
703
720
|
font-family: var(--global-font);
|
|
704
721
|
}
|
|
705
722
|
|
|
@@ -707,8 +724,8 @@ body.nocursor * {
|
|
|
707
724
|
width: fit-content;
|
|
708
725
|
width: -moz-fit-content;
|
|
709
726
|
color: #ddd;
|
|
710
|
-
font-weight:
|
|
711
|
-
font-size:
|
|
727
|
+
font-weight: 800;
|
|
728
|
+
font-size: 13px;
|
|
712
729
|
margin: 12px;
|
|
713
730
|
padding: 2px;
|
|
714
731
|
padding-left: 12px;
|
|
@@ -716,7 +733,7 @@ body.nocursor * {
|
|
|
716
733
|
display: grid;
|
|
717
734
|
align-content: center;
|
|
718
735
|
border-radius: 12px;
|
|
719
|
-
background-color: var(--global-color
|
|
736
|
+
background-color: var(--global-button-color);
|
|
720
737
|
display: flex;
|
|
721
738
|
-webkit-user-select: none; /* Safari 3.1+ */
|
|
722
739
|
-moz-user-select: none; /* Firefox 2+ */
|
|
@@ -731,7 +748,6 @@ body.nocursor * {
|
|
|
731
748
|
}
|
|
732
749
|
|
|
733
750
|
.lextitle a {
|
|
734
|
-
font-size: 12px;
|
|
735
751
|
margin-top: 0.3em;
|
|
736
752
|
margin-right: 0.7em;
|
|
737
753
|
color: var(--global-selected-light);
|
|
@@ -765,8 +781,8 @@ body.nocursor * {
|
|
|
765
781
|
white-space: nowrap;
|
|
766
782
|
overflow: hidden;
|
|
767
783
|
cursor: pointer;
|
|
768
|
-
font-size: 12px;
|
|
769
784
|
font-family: var(--global-font);
|
|
785
|
+
transition: 0.1s linear;
|
|
770
786
|
}
|
|
771
787
|
|
|
772
788
|
.lexbutton.accept {
|
|
@@ -792,7 +808,7 @@ body.nocursor * {
|
|
|
792
808
|
}
|
|
793
809
|
|
|
794
810
|
.lexbutton:hover {
|
|
795
|
-
background-color:
|
|
811
|
+
background-color: var(--global-button-color-hovered);
|
|
796
812
|
color: var(--global-text-primary);
|
|
797
813
|
}
|
|
798
814
|
|
|
@@ -914,36 +930,24 @@ body.nocursor * {
|
|
|
914
930
|
position: fixed;
|
|
915
931
|
list-style: none;
|
|
916
932
|
background-color: var(--global-blur-background);
|
|
917
|
-
-webkit-backdrop-filter: blur(
|
|
918
|
-
backdrop-filter: blur(
|
|
933
|
+
-webkit-backdrop-filter: blur(10px);
|
|
934
|
+
backdrop-filter: blur(10px);
|
|
919
935
|
padding: 4px 0px;
|
|
920
936
|
z-index: 10;
|
|
921
937
|
margin-top: 5px;
|
|
922
938
|
width: 100%;
|
|
923
|
-
box-shadow: 0
|
|
939
|
+
box-shadow: 0 0px 12px rgba(0, 0, 0, 0.788);
|
|
924
940
|
border-bottom-left-radius: 10px;
|
|
925
941
|
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;
|
|
942
|
+
max-height: -webkit-fill-available;
|
|
943
|
+
overflow-y: auto;
|
|
938
944
|
overflow-x: hidden;
|
|
939
|
-
height: 100%;
|
|
940
945
|
}
|
|
941
946
|
|
|
942
947
|
.lexdropdown .lexdropdownitem {
|
|
943
948
|
width: 100%;
|
|
944
949
|
cursor: pointer;
|
|
945
950
|
color: rgba(216, 218, 230, 0.826);
|
|
946
|
-
font-size: 13px;
|
|
947
951
|
height: 20px;
|
|
948
952
|
line-height: 22px;
|
|
949
953
|
align-content: center;
|
|
@@ -1020,8 +1024,8 @@ input[type=checkbox]:checked:after {
|
|
|
1020
1024
|
}
|
|
1021
1025
|
|
|
1022
1026
|
.lexcheckbox {
|
|
1023
|
-
width: 1.
|
|
1024
|
-
height: 1.
|
|
1027
|
+
width: 1.25em;
|
|
1028
|
+
height: 1.25em;
|
|
1025
1029
|
display: inline-block;
|
|
1026
1030
|
background-color: #1f1f1f;
|
|
1027
1031
|
color: #fff;
|
|
@@ -1076,7 +1080,6 @@ input[type=checkbox]:checked:after {
|
|
|
1076
1080
|
width: 100%;
|
|
1077
1081
|
padding: 6px;
|
|
1078
1082
|
color: var(--global-text-secondary);
|
|
1079
|
-
font-size: 12px;
|
|
1080
1083
|
margin-top: -1px;
|
|
1081
1084
|
}
|
|
1082
1085
|
|
|
@@ -1137,9 +1140,18 @@ input[type=checkbox]:checked:after {
|
|
|
1137
1140
|
position: relative;
|
|
1138
1141
|
width: 100%;
|
|
1139
1142
|
border-radius: 4px;
|
|
1140
|
-
border:
|
|
1143
|
+
border: 2px solid var(--global-color-transparent);
|
|
1141
1144
|
margin-right: 2px;
|
|
1142
|
-
background: var(--global-color
|
|
1145
|
+
background: var(--global-button-color);
|
|
1146
|
+
transition: 0.1s linear;
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
.lexvector a.fa-lock {
|
|
1150
|
+
min-width: 12px;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.lexvector .vecbox:hover{
|
|
1154
|
+
background: var(--global-button-color-hovered);
|
|
1143
1155
|
}
|
|
1144
1156
|
|
|
1145
1157
|
.lexwidget .numberbox .drag-icon, .lexwidget .vecbox .drag-icon {
|
|
@@ -1153,7 +1165,7 @@ input[type=checkbox]:checked:after {
|
|
|
1153
1165
|
}
|
|
1154
1166
|
|
|
1155
1167
|
.lexvector .vecbox:has(input:focus) {
|
|
1156
|
-
|
|
1168
|
+
border: 2px solid var(--global-selected);
|
|
1157
1169
|
}
|
|
1158
1170
|
|
|
1159
1171
|
.lexvector .vecbox span {
|
|
@@ -1171,15 +1183,15 @@ input[type=checkbox]:checked:after {
|
|
|
1171
1183
|
}
|
|
1172
1184
|
|
|
1173
1185
|
.lexvector .vecbox span.x {
|
|
1174
|
-
background-color:#
|
|
1186
|
+
background-color:#eb6767;
|
|
1175
1187
|
}
|
|
1176
1188
|
|
|
1177
1189
|
.lexvector .vecbox span.y {
|
|
1178
|
-
background-color:#
|
|
1190
|
+
background-color:#72e27d;
|
|
1179
1191
|
}
|
|
1180
1192
|
|
|
1181
1193
|
.lexvector .vecbox span.z {
|
|
1182
|
-
background-color:#
|
|
1194
|
+
background-color:#7490eb;
|
|
1183
1195
|
}
|
|
1184
1196
|
|
|
1185
1197
|
.lexvector .vecbox span.w {
|
|
@@ -1202,7 +1214,6 @@ input[type=number] {
|
|
|
1202
1214
|
}
|
|
1203
1215
|
|
|
1204
1216
|
.lexvector .vecbox .vecinput, .numberbox .vecinput {
|
|
1205
|
-
font-size: 12px;
|
|
1206
1217
|
margin-left: 2px;
|
|
1207
1218
|
border: none;
|
|
1208
1219
|
width: 100%;
|
|
@@ -1212,30 +1223,24 @@ input[type=number] {
|
|
|
1212
1223
|
color: #c1c1dbef;
|
|
1213
1224
|
}
|
|
1214
1225
|
|
|
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
1226
|
/* Number Widget */
|
|
1228
1227
|
|
|
1229
1228
|
.lexwidget .numberbox {
|
|
1230
1229
|
display: grid;
|
|
1231
|
-
|
|
1232
|
-
border:
|
|
1230
|
+
background-color: var(--global-button-color);
|
|
1231
|
+
border: 2px solid var(--global-color-transparent);
|
|
1232
|
+
border-radius: 6px;
|
|
1233
1233
|
margin-right: 2px;
|
|
1234
1234
|
position: relative;
|
|
1235
|
+
transition: 0.1s linear;
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
.lexwidget .numberbox:hover {
|
|
1239
|
+
background-color: var(--global-button-color-hovered);
|
|
1235
1240
|
}
|
|
1236
1241
|
|
|
1237
1242
|
.lexwidget .numberbox:has(input:focus) {
|
|
1238
|
-
|
|
1243
|
+
border: 2px solid var(--global-selected);
|
|
1239
1244
|
}
|
|
1240
1245
|
|
|
1241
1246
|
.lexinputslider {
|
|
@@ -1272,11 +1277,13 @@ input[type="range"] {
|
|
|
1272
1277
|
.lexinputslider::-webkit-slider-thumb {
|
|
1273
1278
|
appearance: none;
|
|
1274
1279
|
-webkit-appearance: none;
|
|
1275
|
-
margin-top: -
|
|
1276
|
-
width:
|
|
1277
|
-
height:
|
|
1280
|
+
margin-top: -6px;
|
|
1281
|
+
width: 12px;
|
|
1282
|
+
height: 12px;
|
|
1283
|
+
border: 1px solid #c9c7de;
|
|
1278
1284
|
border-radius: 6px;
|
|
1279
|
-
background:
|
|
1285
|
+
background: var(--global-selected-dark);
|
|
1286
|
+
box-shadow: 0px 0px 6px #111;
|
|
1280
1287
|
cursor: pointer;
|
|
1281
1288
|
}
|
|
1282
1289
|
|
|
@@ -1370,7 +1377,7 @@ input[type="range"] {
|
|
|
1370
1377
|
margin-bottom: -8px;
|
|
1371
1378
|
color: var(--global-text-secondary);
|
|
1372
1379
|
font-weight: 600;
|
|
1373
|
-
font-size:
|
|
1380
|
+
font-size: var(--global-font-size);
|
|
1374
1381
|
}
|
|
1375
1382
|
|
|
1376
1383
|
.lextree .lextreetools {
|
|
@@ -1384,6 +1391,10 @@ input[type="range"] {
|
|
|
1384
1391
|
margin-top: 4px;
|
|
1385
1392
|
}
|
|
1386
1393
|
|
|
1394
|
+
.lextree .lextreetools input {
|
|
1395
|
+
font-size: var(--global-font-size);
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1387
1398
|
.lextree .lextreetools.notitle {
|
|
1388
1399
|
padding-top: 14px;
|
|
1389
1400
|
border-top-left-radius: 8px;
|
|
@@ -1394,7 +1405,7 @@ input[type="range"] {
|
|
|
1394
1405
|
margin-right: 8px;
|
|
1395
1406
|
}
|
|
1396
1407
|
|
|
1397
|
-
.lextree span {
|
|
1408
|
+
.lextree span { /* Tree title */
|
|
1398
1409
|
padding: 8px;
|
|
1399
1410
|
display: block;
|
|
1400
1411
|
border-top-left-radius: 8px;
|
|
@@ -1404,24 +1415,24 @@ input[type="range"] {
|
|
|
1404
1415
|
-moz-user-select: none; /* Firefox 2+ */
|
|
1405
1416
|
-ms-user-select: none; /* IE 10+ */
|
|
1406
1417
|
user-select: none; /* Standard syntax */
|
|
1407
|
-
font-size:
|
|
1418
|
+
font-size: 14px;
|
|
1408
1419
|
font-weight: 800;
|
|
1409
1420
|
}
|
|
1410
1421
|
|
|
1411
1422
|
.lextree ul {
|
|
1412
1423
|
padding-bottom: 16px;
|
|
1413
1424
|
padding-inline-start: 0px;
|
|
1414
|
-
font-size: 14px;
|
|
1415
1425
|
}
|
|
1416
1426
|
|
|
1417
1427
|
.lextree input {
|
|
1418
1428
|
background: none;
|
|
1419
1429
|
color: var(--global-text-primary);
|
|
1420
|
-
outline:none;
|
|
1430
|
+
outline: none;
|
|
1421
1431
|
border: none;
|
|
1432
|
+
font-size: var(--global-font-size);
|
|
1422
1433
|
font-family: var(--global-font);
|
|
1423
1434
|
line-height: 23px;
|
|
1424
|
-
|
|
1435
|
+
margin-left: -2px;
|
|
1425
1436
|
}
|
|
1426
1437
|
|
|
1427
1438
|
.lextree .lextreeitem {
|
|
@@ -1429,7 +1440,6 @@ input[type="range"] {
|
|
|
1429
1440
|
align-items: center;
|
|
1430
1441
|
margin-bottom: 3px;
|
|
1431
1442
|
line-height: 25px;
|
|
1432
|
-
font-size: 13px;
|
|
1433
1443
|
cursor: pointer;
|
|
1434
1444
|
outline: none;
|
|
1435
1445
|
border-radius: 6px;
|
|
@@ -1496,10 +1506,6 @@ input[type="range"] {
|
|
|
1496
1506
|
vertical-align: 1px;
|
|
1497
1507
|
}
|
|
1498
1508
|
|
|
1499
|
-
/* .lextree .lextreeitem.parent a.caret {
|
|
1500
|
-
margin-right: 6px;
|
|
1501
|
-
} */
|
|
1502
|
-
|
|
1503
1509
|
.lextree .lextreeitem .itemicon {
|
|
1504
1510
|
font-size: 10px !important;
|
|
1505
1511
|
float: right;
|
|
@@ -1584,19 +1590,18 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1584
1590
|
display: flex;
|
|
1585
1591
|
height: 100%;
|
|
1586
1592
|
color: var(--global-text);
|
|
1587
|
-
font-size:
|
|
1593
|
+
font-size: 13px;
|
|
1588
1594
|
font-weight: 500;
|
|
1589
1595
|
}
|
|
1590
1596
|
|
|
1591
1597
|
.lexmenubar .lexmenuentry {
|
|
1592
|
-
font-size: 13px;
|
|
1593
1598
|
min-height: 48px;
|
|
1594
1599
|
height: 100%;
|
|
1595
1600
|
display: flex;
|
|
1596
1601
|
justify-content: center;
|
|
1597
1602
|
align-items: center;
|
|
1598
|
-
padding-left:
|
|
1599
|
-
padding-right:
|
|
1603
|
+
padding-left: 4px;
|
|
1604
|
+
padding-right: 4px;
|
|
1600
1605
|
cursor: pointer;
|
|
1601
1606
|
margin-left: 4px;
|
|
1602
1607
|
-webkit-user-select: none; /* Safari 3.1+ */
|
|
@@ -1605,8 +1610,14 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1605
1610
|
user-select: none; /* Standard syntax */
|
|
1606
1611
|
}
|
|
1607
1612
|
|
|
1608
|
-
.lexmenubar .lexmenuentry
|
|
1613
|
+
.lexmenubar .lexmenuentry span {
|
|
1614
|
+
padding: 4px 8px;
|
|
1615
|
+
border-radius: 6px;
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
.lexmenubar .lexmenuentry:hover span, .lexmenubar .lexmenuentry.selected span {
|
|
1609
1619
|
color: var(--global-text-primary);
|
|
1620
|
+
background-color: var(--global-color-secondary);
|
|
1610
1621
|
}
|
|
1611
1622
|
|
|
1612
1623
|
.lexmenubar .lexmenuentry:active{
|
|
@@ -1618,8 +1629,23 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1618
1629
|
position: absolute;
|
|
1619
1630
|
padding-right: 14px;
|
|
1620
1631
|
z-index: 1001;
|
|
1621
|
-
|
|
1622
|
-
|
|
1632
|
+
box-shadow: 0 0 8px rgba(0, 0, 0, 0.63) !important;
|
|
1633
|
+
background-color: var(--global-blur-background);
|
|
1634
|
+
border: 1px solid #91909036;
|
|
1635
|
+
border-radius: 6px;
|
|
1636
|
+
}
|
|
1637
|
+
|
|
1638
|
+
.lexcontextmenu:before {
|
|
1639
|
+
content: "";
|
|
1640
|
+
position: absolute;
|
|
1641
|
+
width: 100%;
|
|
1642
|
+
height: 100%;
|
|
1643
|
+
top: 0;
|
|
1644
|
+
left: 0;
|
|
1645
|
+
border-radius: 6px;
|
|
1646
|
+
-webkit-backdrop-filter: blur(10px);
|
|
1647
|
+
backdrop-filter: blur(10px);
|
|
1648
|
+
z-index:-1;
|
|
1623
1649
|
}
|
|
1624
1650
|
|
|
1625
1651
|
.lexcontextmenu:focus {
|
|
@@ -1627,9 +1653,8 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1627
1653
|
}
|
|
1628
1654
|
|
|
1629
1655
|
.lexcontextmenu .lexcontextmenuentry {
|
|
1630
|
-
font-size:
|
|
1656
|
+
font-size: var(--global-font-size);
|
|
1631
1657
|
width: 100%;
|
|
1632
|
-
background-color: #343434c2;
|
|
1633
1658
|
color: #d5d7dbee;
|
|
1634
1659
|
padding: 4px;
|
|
1635
1660
|
padding-left: 14px;
|
|
@@ -1651,21 +1676,14 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1651
1676
|
position: relative;
|
|
1652
1677
|
}
|
|
1653
1678
|
|
|
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;
|
|
1679
|
+
.lexcontextmenu .lexcontextmenuentry:first-child {
|
|
1680
|
+
border-top-right-radius: 5px;
|
|
1681
|
+
border-top-left-radius: 5px;
|
|
1664
1682
|
}
|
|
1665
1683
|
|
|
1666
|
-
.lexcontextmenu .lexcontextmenuentry
|
|
1667
|
-
border-bottom-right-radius:
|
|
1668
|
-
border-bottom-left-radius:
|
|
1684
|
+
.lexcontextmenu .lexcontextmenuentry:last-child {
|
|
1685
|
+
border-bottom-right-radius: 5px;
|
|
1686
|
+
border-bottom-left-radius: 5px;
|
|
1669
1687
|
}
|
|
1670
1688
|
|
|
1671
1689
|
.lexcontextmenu .lexcontextmenuentrycontainer {
|
|
@@ -1695,12 +1713,11 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1695
1713
|
/* submenu specified arrow */
|
|
1696
1714
|
.lexcontextmenu .lexcontextmenuentry a.fa-xs {
|
|
1697
1715
|
float: right;
|
|
1698
|
-
/* margin-top: -8px; */
|
|
1699
1716
|
margin-right: 8px;
|
|
1700
1717
|
}
|
|
1701
1718
|
|
|
1702
1719
|
.lexcontextmenu .lexcontextmenuentry:hover {
|
|
1703
|
-
background-color: var(--global-selected);
|
|
1720
|
+
background-color: var(--global-selected-dark);
|
|
1704
1721
|
color: #f5f5f5;
|
|
1705
1722
|
}
|
|
1706
1723
|
|
|
@@ -1728,10 +1745,10 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1728
1745
|
.lexcontextmenu .lexentryshort {
|
|
1729
1746
|
font-size: 10px;
|
|
1730
1747
|
float: right;
|
|
1731
|
-
|
|
1748
|
+
margin-top: 3px;
|
|
1732
1749
|
font-weight: bold;
|
|
1733
|
-
color: var(--global-
|
|
1734
|
-
margin-right:
|
|
1750
|
+
color: var(--global-button-color);
|
|
1751
|
+
margin-right: 12px;
|
|
1735
1752
|
}
|
|
1736
1753
|
|
|
1737
1754
|
.lexcontextmenu .lexcontextmenuentry:hover .lexentryshort {
|
|
@@ -1787,7 +1804,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1787
1804
|
z-index: 102;
|
|
1788
1805
|
position: absolute;
|
|
1789
1806
|
padding-right: 20px;
|
|
1790
|
-
border-radius:
|
|
1807
|
+
border-radius: 6px;
|
|
1791
1808
|
box-shadow: 0 0 8px rgba(0, 0, 0, 0.63) !important;
|
|
1792
1809
|
background-color: var(--global-blur-background);
|
|
1793
1810
|
border: 1px solid #91909036;
|
|
@@ -1803,7 +1820,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1803
1820
|
-webkit-backdrop-filter: blur(10px);
|
|
1804
1821
|
backdrop-filter: blur(10px);
|
|
1805
1822
|
z-index:-1;
|
|
1806
|
-
border-radius:
|
|
1823
|
+
border-radius: 6px;
|
|
1807
1824
|
}
|
|
1808
1825
|
|
|
1809
1826
|
.lexcontextmenubox .lexcontextmenuentry {
|
|
@@ -1821,17 +1838,17 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1821
1838
|
}
|
|
1822
1839
|
|
|
1823
1840
|
.lexcontextmenubox .lexcontextmenuentry:first-child {
|
|
1824
|
-
border-top-left-radius:
|
|
1825
|
-
border-top-right-radius:
|
|
1841
|
+
border-top-left-radius: 5px;
|
|
1842
|
+
border-top-right-radius: 5px;
|
|
1826
1843
|
}
|
|
1827
1844
|
|
|
1828
1845
|
.lexcontextmenubox .lexcontextmenuentry:last-child {
|
|
1829
|
-
border-bottom-left-radius:
|
|
1830
|
-
border-bottom-right-radius:
|
|
1846
|
+
border-bottom-left-radius: 5px;
|
|
1847
|
+
border-bottom-right-radius: 5px;
|
|
1831
1848
|
}
|
|
1832
1849
|
|
|
1833
1850
|
.lexcontextmenubox .lexcontextmenuentry.cmtitle {
|
|
1834
|
-
background:
|
|
1851
|
+
background: var(--global-dark-background);
|
|
1835
1852
|
font-weight: bold;
|
|
1836
1853
|
cursor: default;
|
|
1837
1854
|
}
|
|
@@ -1847,7 +1864,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1847
1864
|
.lexcontextmenubox .lexcontextmenuentry .lexentryname {
|
|
1848
1865
|
margin-right: 10px;
|
|
1849
1866
|
margin-top: 2px;
|
|
1850
|
-
font-size:
|
|
1867
|
+
font-size: var(--global-font-size);
|
|
1851
1868
|
}
|
|
1852
1869
|
|
|
1853
1870
|
.lexcontextmenubox .lexcontextmenuentry .lexentryname.disabled {
|
|
@@ -1890,6 +1907,64 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1890
1907
|
color: #979aa0e3;
|
|
1891
1908
|
}
|
|
1892
1909
|
|
|
1910
|
+
/* Side Bar */
|
|
1911
|
+
|
|
1912
|
+
.lexsidebar {
|
|
1913
|
+
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
.lexsidebar .lexsidebarentry {
|
|
1917
|
+
width: 64px;
|
|
1918
|
+
height: 64px;
|
|
1919
|
+
padding-left: 7.5px;
|
|
1920
|
+
margin-top: -6px;
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1923
|
+
.lexsidebar .lexsidebarentry:first-child {
|
|
1924
|
+
padding-top: 16px;
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
.lexsidebar .lexsidebarentry button {
|
|
1928
|
+
width: calc(100% - 16px);
|
|
1929
|
+
height: calc(100% - 16px);
|
|
1930
|
+
background-color: var(--global-button-color);
|
|
1931
|
+
color: var(--global-text);
|
|
1932
|
+
font-size: 18px;
|
|
1933
|
+
border-radius: 10px;
|
|
1934
|
+
border: 0px solid var(--global-color-transparent);
|
|
1935
|
+
transition: border 0.1s ease-in-out;
|
|
1936
|
+
}
|
|
1937
|
+
|
|
1938
|
+
.lexsidebar .lexsidebarentry button:hover {
|
|
1939
|
+
border: 3px solid var(--global-selected);
|
|
1940
|
+
background-color: var(--global-button-color-hovered);
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
.lexsidebar .lexsidebarentry button:active {
|
|
1944
|
+
font-size: 17px;
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
|
+
.lexsidebar .lexsidebarentry.selected button {
|
|
1948
|
+
background-color: var(--global-button-color-hovered);
|
|
1949
|
+
border: 4px solid var(--global-selected);
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
.lexsidebar .lexsidebarfooter {
|
|
1953
|
+
position: absolute;
|
|
1954
|
+
bottom: 0;
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
.lexsidebar .lexsidebarfooter .lexsidebarentry button {
|
|
1958
|
+
width: calc(100% - 16px);
|
|
1959
|
+
height: calc(100% - 16px);
|
|
1960
|
+
background-color: unset;
|
|
1961
|
+
font-size: 14px;
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
.lexsidebar .lexsidebarfooter .lexsidebarentry button:active {
|
|
1965
|
+
font-size: 13px;
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1893
1968
|
/* Overlay Buttons */
|
|
1894
1969
|
|
|
1895
1970
|
.lexoverlaybuttons {
|
|
@@ -1955,7 +2030,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1955
2030
|
|
|
1956
2031
|
.lexoverlaybuttons .lexbutton {
|
|
1957
2032
|
padding: 14px 10px;
|
|
1958
|
-
font-size:
|
|
2033
|
+
font-size: var(--global-font-size);
|
|
1959
2034
|
border-radius: 6px;
|
|
1960
2035
|
justify-content: center;
|
|
1961
2036
|
background-color: #313132a5;
|
|
@@ -1966,7 +2041,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
1966
2041
|
|
|
1967
2042
|
.lexoverlaybuttons .lexbutton a {
|
|
1968
2043
|
line-height: 19px;
|
|
1969
|
-
font-size:
|
|
2044
|
+
font-size: var(--global-font-size);
|
|
1970
2045
|
}
|
|
1971
2046
|
|
|
1972
2047
|
.lexoverlaybuttons .lexbutton img {
|
|
@@ -2227,7 +2302,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2227
2302
|
width: calc( 100% - 8px );
|
|
2228
2303
|
cursor: pointer;
|
|
2229
2304
|
color: rgba(216, 218, 230, 0.826);
|
|
2230
|
-
font-size:
|
|
2305
|
+
font-size: var(--global-font-size);
|
|
2231
2306
|
border-radius: 4px;
|
|
2232
2307
|
padding-left: 4px;
|
|
2233
2308
|
padding-right: 4px;
|
|
@@ -2279,14 +2354,10 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2279
2354
|
width: 100%;
|
|
2280
2355
|
padding: 6px;
|
|
2281
2356
|
color: var(--global-text-secondary);
|
|
2282
|
-
font-size:
|
|
2357
|
+
font-size: var(--global-font-size);
|
|
2283
2358
|
margin-top: -1px;
|
|
2284
2359
|
}
|
|
2285
2360
|
|
|
2286
|
-
.lexarrayitems * {
|
|
2287
|
-
font-size: 11px;
|
|
2288
|
-
}
|
|
2289
|
-
|
|
2290
2361
|
.lexarrayitems .small .lexbutton {
|
|
2291
2362
|
background: none;
|
|
2292
2363
|
}
|
|
@@ -2319,7 +2390,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2319
2390
|
justify-content: center;
|
|
2320
2391
|
color: var(--global-text);
|
|
2321
2392
|
display: inherit;
|
|
2322
|
-
font-size:
|
|
2393
|
+
font-size: var(--global-font-size);
|
|
2323
2394
|
}
|
|
2324
2395
|
|
|
2325
2396
|
.lextags .lextag:hover {
|
|
@@ -2338,7 +2409,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2338
2409
|
width: 100%;
|
|
2339
2410
|
padding: 6px;
|
|
2340
2411
|
color: var(--global-text-secondary);
|
|
2341
|
-
font-size:
|
|
2412
|
+
font-size: var(--global-font-size);
|
|
2342
2413
|
margin-top: -1px;
|
|
2343
2414
|
}
|
|
2344
2415
|
|
|
@@ -2407,11 +2478,10 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2407
2478
|
}
|
|
2408
2479
|
|
|
2409
2480
|
.lextimeline .lextree ul {
|
|
2410
|
-
/* background-color: var(--global-dark-background); */
|
|
2411
2481
|
margin: 0;
|
|
2412
2482
|
padding-bottom: 0px;
|
|
2413
2483
|
padding-top: 0px;
|
|
2414
|
-
font-size:
|
|
2484
|
+
font-size: var(--global-font-size);
|
|
2415
2485
|
}
|
|
2416
2486
|
|
|
2417
2487
|
.lextimeline .lexsplitbar.vertical {
|
|
@@ -2420,15 +2490,6 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2420
2490
|
height: unset;
|
|
2421
2491
|
}
|
|
2422
2492
|
|
|
2423
|
-
/* .lextimeline.hidden{
|
|
2424
|
-
animation-name: fadeout;
|
|
2425
|
-
animation-duration: 0.5s;
|
|
2426
|
-
} */
|
|
2427
|
-
|
|
2428
|
-
/* .lexarea:has(.lexmin) {
|
|
2429
|
-
position: relative;
|
|
2430
|
-
} */
|
|
2431
|
-
|
|
2432
2493
|
.lexmin {
|
|
2433
2494
|
display: inline-block;
|
|
2434
2495
|
color: var(--global-selected-light);
|
|
@@ -2549,7 +2610,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2549
2610
|
|
|
2550
2611
|
ul.lexassetscontent {
|
|
2551
2612
|
-webkit-text-size-adjust: 100%;
|
|
2552
|
-
font-size:
|
|
2613
|
+
font-size: var(--global-font-size);
|
|
2553
2614
|
color: #AAA;
|
|
2554
2615
|
box-sizing: border-box;
|
|
2555
2616
|
overflow: auto;
|
|
@@ -2566,7 +2627,7 @@ ul.lexassetscontent {
|
|
|
2566
2627
|
|
|
2567
2628
|
.lexassetscontent li {
|
|
2568
2629
|
-webkit-text-size-adjust: 100%;
|
|
2569
|
-
font-size:
|
|
2630
|
+
font-size: var(--global-font-size);
|
|
2570
2631
|
color: #AAA;
|
|
2571
2632
|
-webkit-user-drag: element;
|
|
2572
2633
|
user-select: none;
|
|
@@ -2641,7 +2702,7 @@ ul.lexassetscontent {
|
|
|
2641
2702
|
width: 100%;
|
|
2642
2703
|
bottom: 0px;
|
|
2643
2704
|
-webkit-text-size-adjust: 100%;
|
|
2644
|
-
font-size:
|
|
2705
|
+
font-size: var(--global-font-size);
|
|
2645
2706
|
color: #BBB;
|
|
2646
2707
|
cursor: pointer;
|
|
2647
2708
|
text-align: center;
|
|
@@ -2697,7 +2758,7 @@ ul.lexassetscontent {
|
|
|
2697
2758
|
.lexassetscontent li img {
|
|
2698
2759
|
-webkit-text-size-adjust: 100%;
|
|
2699
2760
|
font-family: 'Arial';
|
|
2700
|
-
font-size:
|
|
2761
|
+
font-size: var(--global-font-size);
|
|
2701
2762
|
cursor: pointer;
|
|
2702
2763
|
text-align: center;
|
|
2703
2764
|
color: white;
|
|
@@ -2833,6 +2894,7 @@ ul.lexassetscontent {
|
|
|
2833
2894
|
margin-top: 28px;
|
|
2834
2895
|
overflow: hidden;
|
|
2835
2896
|
position: absolute;
|
|
2897
|
+
top: 0;
|
|
2836
2898
|
}
|
|
2837
2899
|
|
|
2838
2900
|
.lexcodeeditor .codetabsarea {
|
|
@@ -3184,7 +3246,113 @@ pre .line-gutter {
|
|
|
3184
3246
|
|
|
3185
3247
|
/* Node Graph */
|
|
3186
3248
|
|
|
3187
|
-
.
|
|
3249
|
+
.lexgraph {
|
|
3250
|
+
overflow: hidden;
|
|
3251
|
+
}
|
|
3252
|
+
|
|
3253
|
+
.lexgraph .lexgraphnodes {
|
|
3188
3254
|
width: 100%;
|
|
3189
3255
|
height: 100%;
|
|
3256
|
+
position: relative;
|
|
3257
|
+
}
|
|
3258
|
+
|
|
3259
|
+
.lexgraph .background-svg {
|
|
3260
|
+
position: absolute;
|
|
3261
|
+
}
|
|
3262
|
+
|
|
3263
|
+
.lexgraphnode {
|
|
3264
|
+
position: absolute;
|
|
3265
|
+
-webkit-user-select: none; /* Safari 3.1+ */
|
|
3266
|
+
-moz-user-select: none; /* Firefox 2+ */
|
|
3267
|
+
-ms-user-select: none; /* IE 10+ */
|
|
3268
|
+
user-select: none; /* Standard syntax */
|
|
3269
|
+
cursor: pointer;
|
|
3270
|
+
min-width: 96px;
|
|
3271
|
+
min-height: 32px;
|
|
3272
|
+
border-radius: 10px;
|
|
3273
|
+
background-color: #111;
|
|
3274
|
+
border: 2px solid var(--global-color-transparent);
|
|
3275
|
+
transition: border 0.05s linear;
|
|
3276
|
+
padding: 4px;
|
|
3277
|
+
}
|
|
3278
|
+
|
|
3279
|
+
.lexgraphnode.selected {
|
|
3280
|
+
border: 2px solid var(--global-selected);
|
|
3281
|
+
box-shadow: 0 2px 6px 0 rgba(0,0,0,.14);
|
|
3282
|
+
}
|
|
3283
|
+
|
|
3284
|
+
.lexgraphnode .lexgraphnodeheader {
|
|
3285
|
+
font-family: var(--global-title-font);
|
|
3286
|
+
font-weight: 700;
|
|
3287
|
+
font-size: 13px;
|
|
3288
|
+
color: #d9d9e3;
|
|
3289
|
+
text-shadow: 0px 1px 4px #2222228f;
|
|
3290
|
+
border-bottom: 1px solid var(--global-blur-background);
|
|
3291
|
+
margin-bottom: 2px;
|
|
3292
|
+
pointer-events: none;
|
|
3293
|
+
}
|
|
3294
|
+
|
|
3295
|
+
.lexgraphnode .lexgraphnodeios {
|
|
3296
|
+
display: flex;
|
|
3297
|
+
pointer-events: none;
|
|
3298
|
+
}
|
|
3299
|
+
|
|
3300
|
+
.lexgraphnode .lexgraphnodeios .lexgraphnodeinputs {
|
|
3301
|
+
margin-right: 12px;
|
|
3302
|
+
}
|
|
3303
|
+
|
|
3304
|
+
.lexgraphnode .lexgraphnodeios .lexgraphnodeoutputs {
|
|
3305
|
+
margin-left: 12px;
|
|
3306
|
+
}
|
|
3307
|
+
|
|
3308
|
+
.lexgraphnode .lexgraphnodeio {
|
|
3309
|
+
font-family: var(--global-title-font);
|
|
3310
|
+
font-weight: 500;
|
|
3311
|
+
font-size: 11px;
|
|
3312
|
+
color: #d9d9e3;
|
|
3313
|
+
text-shadow: 0px 1px 6px #22222283;
|
|
3314
|
+
display: flex;
|
|
3315
|
+
min-height: 18px;
|
|
3316
|
+
}
|
|
3317
|
+
|
|
3318
|
+
.lexgraphnode .lexgraphnodeio.output {
|
|
3319
|
+
justify-content: right;
|
|
3320
|
+
}
|
|
3321
|
+
|
|
3322
|
+
.lexgraphnode .lexgraphnodeio .io__type {
|
|
3323
|
+
font-size: 7px;
|
|
3324
|
+
font-weight: 700;
|
|
3325
|
+
line-height: 11px;
|
|
3326
|
+
min-width: 12px;
|
|
3327
|
+
min-height: 12px;
|
|
3328
|
+
background-color: #afafaf;
|
|
3329
|
+
align-self: center;
|
|
3330
|
+
margin-right: 3px;
|
|
3331
|
+
border-radius: 3px;
|
|
3332
|
+
text-align: -webkit-center;
|
|
3333
|
+
text-align: center;
|
|
3334
|
+
border: 1px solid var(--global-text-terciary);
|
|
3335
|
+
color: var(--global-color-primary);
|
|
3336
|
+
pointer-events: all !important;
|
|
3337
|
+
}
|
|
3338
|
+
|
|
3339
|
+
.lexgraphnode .lexgraphnodeio .io__type.vec2 { background-color: #63a9ee; }
|
|
3340
|
+
.lexgraphnode .lexgraphnodeio .io__type.vec3 { background-color: #e75d4e; }
|
|
3341
|
+
.lexgraphnode .lexgraphnodeio .io__type.bool { background-color: #cc8ce5; }
|
|
3342
|
+
|
|
3343
|
+
.lexgraphnode .lexgraphnodeio .io__type.output {
|
|
3344
|
+
margin-right: unset;
|
|
3345
|
+
margin-left: 3px;
|
|
3346
|
+
}
|
|
3347
|
+
|
|
3348
|
+
.lexgraphnode .lexgraphnodeio .io__type:hover {
|
|
3349
|
+
filter: opacity(0.75);
|
|
3350
|
+
}
|
|
3351
|
+
|
|
3352
|
+
.lexgraphnode .lexgraphnodeio .io__type.active {
|
|
3353
|
+
background-color: var(--global-text-primary);
|
|
3354
|
+
}
|
|
3355
|
+
|
|
3356
|
+
.lexgraphnode .lexgraphnodeio .io__name {
|
|
3357
|
+
margin-top: 1px;
|
|
3190
3358
|
}
|