lexgui 8.2.4 → 8.3.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.
- package/build/components/NodeTree.d.ts +1 -1
- package/build/components/Tabs.d.ts +1 -0
- package/build/core/Namespace.js +1 -1
- package/build/core/Namespace.js.map +1 -1
- package/build/extensions/AssetView.d.ts +3 -2
- package/build/extensions/AssetView.js +1433 -1404
- package/build/extensions/AssetView.js.map +1 -1
- package/build/extensions/CodeEditor.d.ts +428 -325
- package/build/extensions/CodeEditor.js +3768 -4637
- package/build/extensions/CodeEditor.js.map +1 -1
- package/build/extensions/DocMaker.d.ts +1 -1
- package/build/extensions/DocMaker.js +363 -354
- package/build/extensions/DocMaker.js.map +1 -1
- package/build/extensions/Timeline.d.ts +2 -2
- package/build/extensions/Timeline.js +28 -15
- package/build/extensions/Timeline.js.map +1 -1
- package/build/extensions/VideoEditor.d.ts +1 -1
- package/build/extensions/VideoEditor.js +15 -7
- package/build/extensions/VideoEditor.js.map +1 -1
- package/build/extensions/index.js +1 -1
- package/build/lexgui.all.js +6202 -6929
- package/build/lexgui.all.js.map +1 -1
- package/build/lexgui.all.min.js +1 -1
- package/build/lexgui.all.module.js +6202 -6930
- package/build/lexgui.all.module.js.map +1 -1
- package/build/lexgui.all.module.min.js +1 -1
- package/build/lexgui.css +160 -85
- package/build/lexgui.js +4536 -241
- package/build/lexgui.js.map +1 -1
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +4536 -241
- package/build/lexgui.module.js.map +1 -1
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +44 -1
- package/examples/asset-view.html +29 -2
- package/examples/code-editor.html +88 -16
- package/package.json +2 -1
package/build/lexgui.css
CHANGED
|
@@ -526,6 +526,9 @@
|
|
|
526
526
|
.top-2 {
|
|
527
527
|
top: calc(var(--spacing) * 2);
|
|
528
528
|
}
|
|
529
|
+
.top-8 {
|
|
530
|
+
top: calc(var(--spacing) * 8);
|
|
531
|
+
}
|
|
529
532
|
.right-0 {
|
|
530
533
|
right: calc(var(--spacing) * 0);
|
|
531
534
|
}
|
|
@@ -541,6 +544,9 @@
|
|
|
541
544
|
.z-1 {
|
|
542
545
|
z-index: 1;
|
|
543
546
|
}
|
|
547
|
+
.z-10 {
|
|
548
|
+
z-index: 10;
|
|
549
|
+
}
|
|
544
550
|
.z-100 {
|
|
545
551
|
z-index: 100;
|
|
546
552
|
}
|
|
@@ -610,6 +616,9 @@
|
|
|
610
616
|
.mt-4 {
|
|
611
617
|
margin-top: calc(var(--spacing) * 4);
|
|
612
618
|
}
|
|
619
|
+
.mt-8 {
|
|
620
|
+
margin-top: calc(var(--spacing) * 8);
|
|
621
|
+
}
|
|
613
622
|
.mr-1 {
|
|
614
623
|
margin-right: calc(var(--spacing) * 1);
|
|
615
624
|
}
|
|
@@ -637,6 +646,9 @@
|
|
|
637
646
|
.ml-0 {
|
|
638
647
|
margin-left: calc(var(--spacing) * 0);
|
|
639
648
|
}
|
|
649
|
+
.ml-1 {
|
|
650
|
+
margin-left: calc(var(--spacing) * 1);
|
|
651
|
+
}
|
|
640
652
|
.ml-2 {
|
|
641
653
|
margin-left: calc(var(--spacing) * 2);
|
|
642
654
|
}
|
|
@@ -679,6 +691,9 @@
|
|
|
679
691
|
.inline-grid {
|
|
680
692
|
display: inline-grid;
|
|
681
693
|
}
|
|
694
|
+
.list-item {
|
|
695
|
+
display: list-item;
|
|
696
|
+
}
|
|
682
697
|
.table {
|
|
683
698
|
display: table;
|
|
684
699
|
}
|
|
@@ -749,6 +764,9 @@
|
|
|
749
764
|
.h-32 {
|
|
750
765
|
height: calc(var(--spacing) * 32);
|
|
751
766
|
}
|
|
767
|
+
.h-\[1px\] {
|
|
768
|
+
height: 1px;
|
|
769
|
+
}
|
|
752
770
|
.h-\[48px\] {
|
|
753
771
|
height: 48px;
|
|
754
772
|
}
|
|
@@ -800,6 +818,12 @@
|
|
|
800
818
|
.w-12 {
|
|
801
819
|
width: calc(var(--spacing) * 12);
|
|
802
820
|
}
|
|
821
|
+
.w-16 {
|
|
822
|
+
width: calc(var(--spacing) * 16);
|
|
823
|
+
}
|
|
824
|
+
.w-\[1px\] {
|
|
825
|
+
width: 1px;
|
|
826
|
+
}
|
|
803
827
|
.w-auto {
|
|
804
828
|
width: auto;
|
|
805
829
|
}
|
|
@@ -836,9 +860,18 @@
|
|
|
836
860
|
.min-w-5 {
|
|
837
861
|
min-width: calc(var(--spacing) * 5);
|
|
838
862
|
}
|
|
863
|
+
.min-w-16\! {
|
|
864
|
+
min-width: calc(var(--spacing) * 16) !important;
|
|
865
|
+
}
|
|
866
|
+
.min-w-96 {
|
|
867
|
+
min-width: calc(var(--spacing) * 96);
|
|
868
|
+
}
|
|
839
869
|
.min-w-fit {
|
|
840
870
|
min-width: fit-content;
|
|
841
871
|
}
|
|
872
|
+
.min-w-min\! {
|
|
873
|
+
min-width: min-content !important;
|
|
874
|
+
}
|
|
842
875
|
.flex-auto {
|
|
843
876
|
flex: auto;
|
|
844
877
|
}
|
|
@@ -1914,9 +1947,6 @@
|
|
|
1914
1947
|
.py-6 {
|
|
1915
1948
|
padding-block: calc(var(--spacing) * 6);
|
|
1916
1949
|
}
|
|
1917
|
-
.py-8 {
|
|
1918
|
-
padding-block: calc(var(--spacing) * 8);
|
|
1919
|
-
}
|
|
1920
1950
|
.ps-0 {
|
|
1921
1951
|
padding-inline-start: calc(var(--spacing) * 0);
|
|
1922
1952
|
}
|
|
@@ -1997,6 +2027,10 @@
|
|
|
1997
2027
|
font-size: var(--text-xs);
|
|
1998
2028
|
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
1999
2029
|
}
|
|
2030
|
+
.text-xs\! {
|
|
2031
|
+
font-size: var(--text-xs) !important;
|
|
2032
|
+
line-height: var(--tw-leading, var(--text-xs--line-height)) !important;
|
|
2033
|
+
}
|
|
2000
2034
|
.leading-6 {
|
|
2001
2035
|
--tw-leading: calc(var(--spacing) * 6);
|
|
2002
2036
|
line-height: calc(var(--spacing) * 6);
|
|
@@ -2069,18 +2103,24 @@
|
|
|
2069
2103
|
.text-background {
|
|
2070
2104
|
color: var(--color-background);
|
|
2071
2105
|
}
|
|
2106
|
+
.text-blue-300 {
|
|
2107
|
+
color: var(--color-blue-300);
|
|
2108
|
+
}
|
|
2072
2109
|
.text-blue-400 {
|
|
2073
2110
|
color: var(--color-blue-400);
|
|
2074
2111
|
}
|
|
2112
|
+
.text-blue-500 {
|
|
2113
|
+
color: var(--color-blue-500);
|
|
2114
|
+
}
|
|
2075
2115
|
.text-blue-600 {
|
|
2076
2116
|
color: var(--color-blue-600);
|
|
2077
2117
|
}
|
|
2078
|
-
.text-blue-700 {
|
|
2079
|
-
color: var(--color-blue-700);
|
|
2080
|
-
}
|
|
2081
2118
|
.text-card-foreground {
|
|
2082
2119
|
color: var(--color-card-foreground);
|
|
2083
2120
|
}
|
|
2121
|
+
.text-cyan-500 {
|
|
2122
|
+
color: var(--color-cyan-500);
|
|
2123
|
+
}
|
|
2084
2124
|
.text-cyan-600 {
|
|
2085
2125
|
color: var(--color-cyan-600);
|
|
2086
2126
|
}
|
|
@@ -2093,6 +2133,18 @@
|
|
|
2093
2133
|
.text-fuchsia-500 {
|
|
2094
2134
|
color: var(--color-fuchsia-500);
|
|
2095
2135
|
}
|
|
2136
|
+
.text-gray-300 {
|
|
2137
|
+
color: var(--color-gray-300);
|
|
2138
|
+
}
|
|
2139
|
+
.text-gray-400 {
|
|
2140
|
+
color: var(--color-gray-400);
|
|
2141
|
+
}
|
|
2142
|
+
.text-gray-500 {
|
|
2143
|
+
color: var(--color-gray-500);
|
|
2144
|
+
}
|
|
2145
|
+
.text-green-500 {
|
|
2146
|
+
color: var(--color-green-500);
|
|
2147
|
+
}
|
|
2096
2148
|
.text-inherit {
|
|
2097
2149
|
color: inherit;
|
|
2098
2150
|
}
|
|
@@ -2105,15 +2157,27 @@
|
|
|
2105
2157
|
.text-neutral-900 {
|
|
2106
2158
|
color: var(--color-neutral-900);
|
|
2107
2159
|
}
|
|
2160
|
+
.text-orange-400 {
|
|
2161
|
+
color: var(--color-orange-400);
|
|
2162
|
+
}
|
|
2108
2163
|
.text-orange-500 {
|
|
2109
2164
|
color: var(--color-orange-500);
|
|
2110
2165
|
}
|
|
2166
|
+
.text-orange-600 {
|
|
2167
|
+
color: var(--color-orange-600);
|
|
2168
|
+
}
|
|
2111
2169
|
.text-primary-foreground {
|
|
2112
2170
|
color: var(--color-primary-foreground);
|
|
2113
2171
|
}
|
|
2172
|
+
.text-purple-500 {
|
|
2173
|
+
color: var(--color-purple-500);
|
|
2174
|
+
}
|
|
2114
2175
|
.text-purple-700 {
|
|
2115
2176
|
color: var(--color-purple-700);
|
|
2116
2177
|
}
|
|
2178
|
+
.text-red-500 {
|
|
2179
|
+
color: var(--color-red-500);
|
|
2180
|
+
}
|
|
2117
2181
|
.text-secondary {
|
|
2118
2182
|
color: var(--color-secondary);
|
|
2119
2183
|
}
|
|
@@ -2126,6 +2190,9 @@
|
|
|
2126
2190
|
.text-success {
|
|
2127
2191
|
color: var(--color-success);
|
|
2128
2192
|
}
|
|
2193
|
+
.text-teal-500 {
|
|
2194
|
+
color: var(--color-teal-500);
|
|
2195
|
+
}
|
|
2129
2196
|
.text-white {
|
|
2130
2197
|
color: var(--color-white);
|
|
2131
2198
|
}
|
|
@@ -2135,6 +2202,9 @@
|
|
|
2135
2202
|
.text-yellow-500 {
|
|
2136
2203
|
color: var(--color-yellow-500);
|
|
2137
2204
|
}
|
|
2205
|
+
.text-yellow-600 {
|
|
2206
|
+
color: var(--color-yellow-600);
|
|
2207
|
+
}
|
|
2138
2208
|
.capitalize {
|
|
2139
2209
|
text-transform: capitalize;
|
|
2140
2210
|
}
|
|
@@ -5733,6 +5803,10 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
5733
5803
|
.lextimeline .lextree .lextreeitem {
|
|
5734
5804
|
margin: 0px;
|
|
5735
5805
|
}
|
|
5806
|
+
.lextimeline .lextree .lextreeitem.selected {
|
|
5807
|
+
background-color: var(--primary);
|
|
5808
|
+
color: var(--primary-foreground);
|
|
5809
|
+
}
|
|
5736
5810
|
.lextimeline .lextree ul {
|
|
5737
5811
|
margin: 0;
|
|
5738
5812
|
padding-bottom: 0px;
|
|
@@ -6076,50 +6150,53 @@ ul.lexassetscontent {
|
|
|
6076
6150
|
pointer-events: none;
|
|
6077
6151
|
animation: skeleton-shimmer 2.5s linear infinite;
|
|
6078
6152
|
}
|
|
6079
|
-
.codebasearea
|
|
6080
|
-
|
|
6081
|
-
|
|
6082
|
-
|
|
6083
|
-
|
|
6084
|
-
|
|
6085
|
-
|
|
6086
|
-
|
|
6087
|
-
|
|
6088
|
-
|
|
6089
|
-
|
|
6090
|
-
|
|
6091
|
-
|
|
6092
|
-
|
|
6093
|
-
|
|
6094
|
-
|
|
6095
|
-
|
|
6096
|
-
|
|
6097
|
-
|
|
6098
|
-
|
|
6099
|
-
|
|
6100
|
-
|
|
6101
|
-
|
|
6102
|
-
|
|
6103
|
-
|
|
6104
|
-
|
|
6105
|
-
|
|
6106
|
-
|
|
6107
|
-
|
|
6108
|
-
|
|
6109
|
-
|
|
6110
|
-
|
|
6111
|
-
|
|
6112
|
-
|
|
6113
|
-
|
|
6114
|
-
|
|
6115
|
-
|
|
6116
|
-
|
|
6117
|
-
|
|
6118
|
-
|
|
6119
|
-
|
|
6120
|
-
|
|
6121
|
-
|
|
6122
|
-
|
|
6153
|
+
.codebasearea {
|
|
6154
|
+
background-color: var(--background);
|
|
6155
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
6156
|
+
background-color: color-mix(in srgb, var(--background) 30%, var(--card));
|
|
6157
|
+
}
|
|
6158
|
+
& .lexareatabs {
|
|
6159
|
+
padding: 0px;
|
|
6160
|
+
margin: 0px;
|
|
6161
|
+
gap: 0;
|
|
6162
|
+
background-color: var(--card);
|
|
6163
|
+
border: none;
|
|
6164
|
+
}
|
|
6165
|
+
& .lexareatab {
|
|
6166
|
+
padding: 5px;
|
|
6167
|
+
border-radius: 0px !important;
|
|
6168
|
+
margin: 0px !important;
|
|
6169
|
+
border: none;
|
|
6170
|
+
background-color: var(--card) !important;
|
|
6171
|
+
transition: none;
|
|
6172
|
+
display: flex !important;
|
|
6173
|
+
color: var(--muted-foreground) !important;
|
|
6174
|
+
}
|
|
6175
|
+
& .lexareatab:hover {
|
|
6176
|
+
background-color: var(--secondary) !important;
|
|
6177
|
+
}
|
|
6178
|
+
& .lexareatab:first-child {
|
|
6179
|
+
border-top-left-radius: 8px !important;
|
|
6180
|
+
}
|
|
6181
|
+
& .lexareatab:last-child {
|
|
6182
|
+
border-top-right-radius: 8px !important;
|
|
6183
|
+
}
|
|
6184
|
+
& .lexareatab.selected {
|
|
6185
|
+
background-color: var(--accent) !important;
|
|
6186
|
+
color: var(--foreground) !important;
|
|
6187
|
+
}
|
|
6188
|
+
& .lexareatab i {
|
|
6189
|
+
width: 12px;
|
|
6190
|
+
font-size: var(--text-sm);
|
|
6191
|
+
margin-right: 6px;
|
|
6192
|
+
align-content: center;
|
|
6193
|
+
}
|
|
6194
|
+
& .lexareatab img {
|
|
6195
|
+
width: 12px;
|
|
6196
|
+
height: 12px;
|
|
6197
|
+
margin-right: 6px;
|
|
6198
|
+
align-content: center;
|
|
6199
|
+
}
|
|
6123
6200
|
}
|
|
6124
6201
|
.lexcodeeditor ::-webkit-scrollbar {
|
|
6125
6202
|
width: 6px;
|
|
@@ -6136,20 +6213,10 @@ ul.lexassetscontent {
|
|
|
6136
6213
|
overflow: hidden;
|
|
6137
6214
|
}
|
|
6138
6215
|
.lexcodetabinfo {
|
|
6139
|
-
background-color: var(--card);
|
|
6140
|
-
position: absolute;
|
|
6141
6216
|
z-index: 3;
|
|
6142
|
-
bottom: 0px;
|
|
6143
6217
|
justify-items: end;
|
|
6144
6218
|
padding: 0.25rem 1rem;
|
|
6145
6219
|
}
|
|
6146
|
-
.lexcodegutter {
|
|
6147
|
-
width: 48px;
|
|
6148
|
-
background-color: inherit;
|
|
6149
|
-
overflow: hidden;
|
|
6150
|
-
position: absolute;
|
|
6151
|
-
top: 0;
|
|
6152
|
-
}
|
|
6153
6220
|
.lexcodeeditor .lexcodearea {
|
|
6154
6221
|
width: 100%;
|
|
6155
6222
|
background-color: inherit;
|
|
@@ -6159,6 +6226,8 @@ ul.lexassetscontent {
|
|
|
6159
6226
|
background-color: var(--secondary);
|
|
6160
6227
|
}
|
|
6161
6228
|
.lexcodeeditor .code {
|
|
6229
|
+
width: max-content;
|
|
6230
|
+
min-width: 100%;
|
|
6162
6231
|
cursor: text;
|
|
6163
6232
|
font-family: var(--global-code-font);
|
|
6164
6233
|
font-feature-settings: "ss02", 'ss19', "ss20";
|
|
@@ -6201,7 +6270,11 @@ ul.lexassetscontent {
|
|
|
6201
6270
|
pointer-events: none;
|
|
6202
6271
|
}
|
|
6203
6272
|
.lexcodeeditor pre.active-line {
|
|
6204
|
-
|
|
6273
|
+
--bg-color: var(--border);
|
|
6274
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
6275
|
+
--bg-color: color-mix(in srgb, var(--border), transparent);
|
|
6276
|
+
}
|
|
6277
|
+
background: linear-gradient(to bottom, var(--border) 0px, var(--border) 2px, var(--bg-color) 2px, var(--bg-color) calc(100% - 2px), var(--border) calc(100% - 2px), var(--border) 100% );
|
|
6205
6278
|
}
|
|
6206
6279
|
.lexcodeeditor.disabled pre.active-line {
|
|
6207
6280
|
background-color: transparent;
|
|
@@ -6231,12 +6304,11 @@ ul.lexassetscontent {
|
|
|
6231
6304
|
display: inline-block;
|
|
6232
6305
|
}
|
|
6233
6306
|
.lexcodeeditor pre .line-gutter {
|
|
6234
|
-
width:
|
|
6307
|
+
width: 4rem;
|
|
6235
6308
|
height: var(--code-editor-row-height);
|
|
6236
|
-
font-size: var(--code-editor-font-size);
|
|
6237
|
-
font-weight: 400;
|
|
6238
|
-
color: var(--muted-foreground);
|
|
6239
6309
|
line-height: var(--code-editor-row-height);
|
|
6310
|
+
font-size: calc(var(--code-editor-font-size) - 0.1rem);
|
|
6311
|
+
color: var(--muted-foreground);
|
|
6240
6312
|
text-align: center;
|
|
6241
6313
|
-webkit-user-select: none;
|
|
6242
6314
|
-moz-user-select: none;
|
|
@@ -6244,7 +6316,7 @@ ul.lexassetscontent {
|
|
|
6244
6316
|
user-select: none;
|
|
6245
6317
|
position: sticky;
|
|
6246
6318
|
left: 0;
|
|
6247
|
-
z-index:
|
|
6319
|
+
z-index: 10;
|
|
6248
6320
|
}
|
|
6249
6321
|
.lexcodeeditor pre.active-line .line-gutter {
|
|
6250
6322
|
color: var(--foreground);
|
|
@@ -6268,6 +6340,9 @@ ul.lexassetscontent {
|
|
|
6268
6340
|
.lexcodeeditor .cursors.show, .lexcodeeditor .selections.show {
|
|
6269
6341
|
visibility: visible;
|
|
6270
6342
|
}
|
|
6343
|
+
.lexcodeeditor .selections.unfocused {
|
|
6344
|
+
opacity: 0.25;
|
|
6345
|
+
}
|
|
6271
6346
|
.lexcodeeditor .cursors .cursor {
|
|
6272
6347
|
-webkit-text-size-adjust: 100%;
|
|
6273
6348
|
font-family: monospace;
|
|
@@ -6288,9 +6363,9 @@ ul.lexassetscontent {
|
|
|
6288
6363
|
}
|
|
6289
6364
|
.lexcodescrollbar {
|
|
6290
6365
|
width: 10px;
|
|
6366
|
+
height: 100%;
|
|
6291
6367
|
position: absolute;
|
|
6292
6368
|
background-color: transparent;
|
|
6293
|
-
box-sizing: border-box;
|
|
6294
6369
|
margin: 0;
|
|
6295
6370
|
padding: 0;
|
|
6296
6371
|
z-index: 1 !important;
|
|
@@ -6298,14 +6373,13 @@ ul.lexassetscontent {
|
|
|
6298
6373
|
pointer-events: none;
|
|
6299
6374
|
}
|
|
6300
6375
|
.lexcodescrollbar.horizontal {
|
|
6301
|
-
width:
|
|
6376
|
+
width: 100%;
|
|
6302
6377
|
height: 10px;
|
|
6303
6378
|
bottom: 0px;
|
|
6304
|
-
left:
|
|
6379
|
+
left: 4rem;
|
|
6305
6380
|
}
|
|
6306
6381
|
.lexcodescrollbar div {
|
|
6307
6382
|
background-color: var(--secondary) !important;
|
|
6308
|
-
box-sizing: border-box;
|
|
6309
6383
|
margin: 0;
|
|
6310
6384
|
padding: 0;
|
|
6311
6385
|
border-right: none;
|
|
@@ -6340,7 +6414,7 @@ ul.lexassetscontent {
|
|
|
6340
6414
|
top: 0px;
|
|
6341
6415
|
width: 100px;
|
|
6342
6416
|
height: var(--code-editor-row-height);
|
|
6343
|
-
background-color: var(--color-blue-
|
|
6417
|
+
background-color: var(--color-blue-500);
|
|
6344
6418
|
opacity: 0.25;
|
|
6345
6419
|
}
|
|
6346
6420
|
.lexcodeeditor .lexcodesearchresult {
|
|
@@ -6348,30 +6422,24 @@ ul.lexassetscontent {
|
|
|
6348
6422
|
opacity: 0.5;
|
|
6349
6423
|
}
|
|
6350
6424
|
.lexcodeeditor .searchbox {
|
|
6351
|
-
background-color: var(--card);
|
|
6352
|
-
position: absolute;
|
|
6353
|
-
right: 6px;
|
|
6354
|
-
top: 26px;
|
|
6355
|
-
z-index: 100;
|
|
6356
|
-
border-radius: 8px;
|
|
6357
|
-
border: 1px solid var(--border);
|
|
6358
6425
|
box-shadow: 0 0px 4px #101010;
|
|
6359
|
-
overflow-y: scroll;
|
|
6360
6426
|
transform: translateY(-96px);
|
|
6361
|
-
opacity: 0;
|
|
6362
6427
|
transition: transform 0.2s ease-in, opacity 0.2s ease-in;
|
|
6428
|
+
pointer-events: none;
|
|
6363
6429
|
}
|
|
6364
6430
|
.lexcodeeditor .searchbox.opened {
|
|
6365
6431
|
transform: translateY(0px);
|
|
6366
6432
|
opacity: 1;
|
|
6433
|
+
pointer-events: auto;
|
|
6367
6434
|
}
|
|
6368
6435
|
.lexcodeeditor .searchbox .lexpanel span {
|
|
6369
6436
|
height: 11px;
|
|
6370
6437
|
}
|
|
6371
6438
|
.lexcodeeditor .autocomplete {
|
|
6372
6439
|
background-color: var(--card);
|
|
6373
|
-
width:
|
|
6374
|
-
max-
|
|
6440
|
+
width: max-content;
|
|
6441
|
+
max-width: 450px;
|
|
6442
|
+
max-height: 264px;
|
|
6375
6443
|
position: absolute;
|
|
6376
6444
|
left: 0;
|
|
6377
6445
|
top: 0;
|
|
@@ -6394,7 +6462,8 @@ ul.lexassetscontent {
|
|
|
6394
6462
|
pointer-events: unset;
|
|
6395
6463
|
cursor: default;
|
|
6396
6464
|
height: 22px;
|
|
6397
|
-
padding-left:
|
|
6465
|
+
padding-left: 0.5rem;
|
|
6466
|
+
padding-right: 1rem;
|
|
6398
6467
|
display: flex;
|
|
6399
6468
|
align-items: center;
|
|
6400
6469
|
}
|
|
@@ -6468,6 +6537,9 @@ ul.lexassetscontent {
|
|
|
6468
6537
|
.cm-mtd.typescript {
|
|
6469
6538
|
color: #e9d98a;
|
|
6470
6539
|
}
|
|
6540
|
+
.cm-sym.typescript {
|
|
6541
|
+
color: #e7ded2;
|
|
6542
|
+
}
|
|
6471
6543
|
.cm-enu.typescript {
|
|
6472
6544
|
color: #4cacff;
|
|
6473
6545
|
}
|
|
@@ -6507,6 +6579,9 @@ ul.lexassetscontent {
|
|
|
6507
6579
|
.cm-sym.cmake {
|
|
6508
6580
|
color: #cf6dcf;
|
|
6509
6581
|
}
|
|
6582
|
+
.cm-str.css {
|
|
6583
|
+
color: #ca7d59;
|
|
6584
|
+
}
|
|
6510
6585
|
.cm-kwd.css {
|
|
6511
6586
|
color: #e8be53;
|
|
6512
6587
|
}
|
|
@@ -6520,7 +6595,7 @@ ul.lexassetscontent {
|
|
|
6520
6595
|
color: #f9d620;
|
|
6521
6596
|
}
|
|
6522
6597
|
.cm-mtd.css {
|
|
6523
|
-
color: #
|
|
6598
|
+
color: #e9d98a;
|
|
6524
6599
|
}
|
|
6525
6600
|
.cm-sym.json {
|
|
6526
6601
|
color: #cf6dcf;
|
|
@@ -6541,7 +6616,7 @@ ul.lexassetscontent {
|
|
|
6541
6616
|
color: #99caf1;
|
|
6542
6617
|
}
|
|
6543
6618
|
.cm-bln.wgsl {
|
|
6544
|
-
color: #
|
|
6619
|
+
color: #e8be53;
|
|
6545
6620
|
}
|
|
6546
6621
|
.cm-sym.rust {
|
|
6547
6622
|
color: #e7ded2;
|