lexgui 0.1.41 → 0.1.43
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 +451 -271
- package/build/components/timeline.js +165 -109
- package/build/lexgui.css +142 -71
- package/build/lexgui.js +1162 -835
- package/build/lexgui.module.js +979 -647
- package/changelog.md +35 -3
- package/demo.js +16 -12
- package/examples/asset_view.html +3 -2
- package/examples/code_editor.html +11 -6
- package/examples/previews/side_bar.png +0 -0
- package/examples/previews/timeline.png +0 -0
- package/examples/side_bar.html +2 -2
- package/package.json +1 -1
package/build/lexgui.css
CHANGED
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
--global-title-font: "Poppins", sans-serif;
|
|
8
8
|
--global-font-size: 12px;
|
|
9
9
|
--global-font-size-big: 14px;
|
|
10
|
-
--global-color-primary: #
|
|
10
|
+
--global-color-primary: #1c1c1c;
|
|
11
11
|
--global-color-secondary: #2c2c2c;
|
|
12
12
|
--global-color-terciary: #444;
|
|
13
|
-
--global-selected: #
|
|
14
|
-
--global-selected-light: #
|
|
15
|
-
--global-selected-dark: #
|
|
13
|
+
--global-selected: #2962dd;
|
|
14
|
+
--global-selected-light: #668ee4;
|
|
15
|
+
--global-selected-dark: #304b86;
|
|
16
16
|
--global-branch-darker: #252525;
|
|
17
17
|
--branch-title-background: #2e3338;
|
|
18
18
|
--branch-title-inactive-background: #42484e;
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
--global-text-secondary: #cacad4ea;
|
|
24
24
|
--global-text-terciary: #727272b9;
|
|
25
25
|
--global-dark-background: #121212;
|
|
26
|
-
--global-blur-background: #
|
|
26
|
+
--global-blur-background: #1f1f1fe7;
|
|
27
27
|
--global-color-transparent: #7b8ae200;
|
|
28
28
|
--transition-time: 1000;
|
|
29
29
|
--code-editor-font-size: 14px;
|
|
@@ -148,13 +148,13 @@ body.noevents * {
|
|
|
148
148
|
margin-top: 0.01em;
|
|
149
149
|
}
|
|
150
150
|
|
|
151
|
-
#
|
|
151
|
+
#global-search {
|
|
152
152
|
position: absolute;
|
|
153
153
|
background-color: var(--global-blur-background);
|
|
154
154
|
--webkit-backdrop-filter: blur(12px);
|
|
155
155
|
backdrop-filter: blur(12px);
|
|
156
156
|
border-radius: 8px;
|
|
157
|
-
border: 1px solid #
|
|
157
|
+
border: 1px solid #d0d0ec2a;
|
|
158
158
|
width: 30%;
|
|
159
159
|
max-width: 740px;
|
|
160
160
|
top: 15%;
|
|
@@ -166,37 +166,53 @@ body.noevents * {
|
|
|
166
166
|
mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC); /* this fixes the overflow:hidden in Chrome/Opera */
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
-
#
|
|
170
|
-
|
|
171
|
-
|
|
169
|
+
#global-search .gs-header {
|
|
170
|
+
width: 100%;
|
|
171
|
+
height: 32px;
|
|
172
|
+
display: flex;
|
|
173
|
+
padding: 6px;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
#global-search a {
|
|
177
|
+
color: var(--global-text-secondary);
|
|
178
|
+
padding: 10px;
|
|
179
|
+
background-color: var(--global-color-terciary);
|
|
172
180
|
border-top-left-radius: 6px;
|
|
181
|
+
border-bottom-left-radius: 6px;
|
|
182
|
+
font-size: 12px;
|
|
173
183
|
}
|
|
174
184
|
|
|
175
|
-
#
|
|
176
|
-
border-top-right-radius: 6px;
|
|
185
|
+
#global-search input {
|
|
177
186
|
width: 100%;
|
|
178
187
|
flex: 50%;
|
|
179
188
|
background: none;
|
|
189
|
+
border-top-right-radius: 6px;
|
|
190
|
+
border-bottom-right-radius: 6px;
|
|
180
191
|
color: var(--global-text-secondary);
|
|
192
|
+
background-color: var(--global-color-terciary);
|
|
181
193
|
outline: none;
|
|
182
194
|
border: none;
|
|
183
195
|
font-family: var(--global-font);
|
|
184
196
|
line-height: 23px;
|
|
185
|
-
font-size:
|
|
186
|
-
font-weight:
|
|
197
|
+
font-size: 14px;
|
|
198
|
+
font-weight: 600;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
#global-search .lexarea {
|
|
202
|
+
background: none !important;
|
|
187
203
|
}
|
|
188
204
|
|
|
189
|
-
#
|
|
205
|
+
#global-search .searchitembox {
|
|
190
206
|
flex-basis: 100%;
|
|
191
207
|
overflow-y: scroll;
|
|
192
208
|
max-height: calc(512px - 48px);
|
|
193
209
|
}
|
|
194
210
|
|
|
195
|
-
#
|
|
211
|
+
#global-search .searchitembox::-webkit-scrollbar {
|
|
196
212
|
display: none;
|
|
197
213
|
}
|
|
198
214
|
|
|
199
|
-
#
|
|
215
|
+
#global-search .searchitembox .searchitem {
|
|
200
216
|
padding: 10px;
|
|
201
217
|
padding-left: 50px;
|
|
202
218
|
color: var(--global-text-primary);
|
|
@@ -204,7 +220,7 @@ body.noevents * {
|
|
|
204
220
|
cursor: pointer;
|
|
205
221
|
}
|
|
206
222
|
|
|
207
|
-
#
|
|
223
|
+
#global-search .searchitembox .searchitem a {
|
|
208
224
|
padding: 0px;
|
|
209
225
|
margin-left: -28px;
|
|
210
226
|
margin-top: 2px;
|
|
@@ -212,7 +228,7 @@ body.noevents * {
|
|
|
212
228
|
float: left;
|
|
213
229
|
}
|
|
214
230
|
|
|
215
|
-
#
|
|
231
|
+
#global-search .searchitembox .searchitem i {
|
|
216
232
|
width: 12px;
|
|
217
233
|
font-size: 11px;
|
|
218
234
|
margin-right: 4px;
|
|
@@ -220,24 +236,24 @@ body.noevents * {
|
|
|
220
236
|
vertical-align: middle;
|
|
221
237
|
}
|
|
222
238
|
|
|
223
|
-
#
|
|
239
|
+
#global-search .searchitembox .searchitem img {
|
|
224
240
|
width: 12px;
|
|
225
241
|
margin-right: 4px;
|
|
226
242
|
margin-top: -2px;
|
|
227
243
|
vertical-align: middle;
|
|
228
244
|
}
|
|
229
245
|
|
|
230
|
-
#
|
|
246
|
+
#global-search .searchitembox .searchitem .lang-ext {
|
|
231
247
|
color: #676e75;
|
|
232
248
|
font-size: var(--global-font-size);
|
|
233
249
|
}
|
|
234
250
|
|
|
235
|
-
#
|
|
251
|
+
#global-search .searchitembox .searchitem.last {
|
|
236
252
|
border-bottom-left-radius: 6px;
|
|
237
253
|
border-bottom-right-radius: 6px;
|
|
238
254
|
}
|
|
239
255
|
|
|
240
|
-
#
|
|
256
|
+
#global-search .searchitembox .searchitem.hovered {
|
|
241
257
|
background-color: var(--global-selected);
|
|
242
258
|
color: #f5f5f5;
|
|
243
259
|
}
|
|
@@ -418,11 +434,11 @@ body.noevents * {
|
|
|
418
434
|
}
|
|
419
435
|
|
|
420
436
|
.lexsplitbar.horizontal {
|
|
421
|
-
cursor:
|
|
437
|
+
cursor: ew-resize;
|
|
422
438
|
}
|
|
423
439
|
|
|
424
440
|
.lexsplitbar.vertical {
|
|
425
|
-
cursor:
|
|
441
|
+
cursor: ns-resize;
|
|
426
442
|
transform: translateY(-3px);
|
|
427
443
|
left: calc(50% - 32px);
|
|
428
444
|
}
|
|
@@ -618,7 +634,7 @@ body.noevents * {
|
|
|
618
634
|
height: 2px;
|
|
619
635
|
width: 11px;
|
|
620
636
|
cursor: ew-resize;
|
|
621
|
-
color: var(--global-
|
|
637
|
+
color: var(--global-text-terciary);
|
|
622
638
|
}
|
|
623
639
|
|
|
624
640
|
.lexwidgetseparator div:hover {
|
|
@@ -691,7 +707,8 @@ body.noevents * {
|
|
|
691
707
|
.lexwidget .inputicon {
|
|
692
708
|
padding: 6px;
|
|
693
709
|
font-size: 10px;
|
|
694
|
-
margin-top:
|
|
710
|
+
margin-top: 2px;
|
|
711
|
+
margin-left: 2px;
|
|
695
712
|
}
|
|
696
713
|
|
|
697
714
|
.lexwidget textarea {
|
|
@@ -734,7 +751,7 @@ body.noevents * {
|
|
|
734
751
|
|
|
735
752
|
.lexbranch .lexseparator {
|
|
736
753
|
border-top: 1px solid var(--global-dark-background);
|
|
737
|
-
border-bottom:
|
|
754
|
+
border-bottom: 1px solid var(--global-color-terciary);
|
|
738
755
|
width: -moz-calc(100% - 8px);
|
|
739
756
|
width: -webkit-calc(100% - 8px);
|
|
740
757
|
width: calc(100% - 8px);
|
|
@@ -879,15 +896,16 @@ body.noevents * {
|
|
|
879
896
|
margin-right: 1px;
|
|
880
897
|
border-radius: 0px;
|
|
881
898
|
display: flex;
|
|
882
|
-
padding
|
|
883
|
-
padding-
|
|
899
|
+
padding: 1em;
|
|
900
|
+
padding-top: 0.5em;
|
|
901
|
+
padding-bottom: 2.0em;
|
|
884
902
|
transition: 0.2s;
|
|
885
903
|
}
|
|
886
904
|
|
|
887
905
|
.lexcombobuttons .lexbutton.combo:first-child {
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
906
|
+
border-top-left-radius: 4px;
|
|
907
|
+
border-bottom-left-radius: 4px;
|
|
908
|
+
margin-left: 0px;
|
|
891
909
|
}
|
|
892
910
|
|
|
893
911
|
.lexcombobuttons .lexbutton.combo:last-child {
|
|
@@ -904,8 +922,7 @@ body.noevents * {
|
|
|
904
922
|
|
|
905
923
|
.lexcombobuttons .lexbutton.combo:active {
|
|
906
924
|
outline: none;
|
|
907
|
-
color: #
|
|
908
|
-
padding-top: 0.2em;
|
|
925
|
+
color: #ccc;
|
|
909
926
|
}
|
|
910
927
|
|
|
911
928
|
.lexcombobuttons .lexbutton.combo a {
|
|
@@ -962,7 +979,7 @@ body.noevents * {
|
|
|
962
979
|
.lexdropdown ul {
|
|
963
980
|
position: fixed;
|
|
964
981
|
list-style: none;
|
|
965
|
-
background-color:
|
|
982
|
+
background-color: #1c1c1ce8;
|
|
966
983
|
-webkit-backdrop-filter: blur(10px);
|
|
967
984
|
backdrop-filter: blur(10px);
|
|
968
985
|
padding: 0px;
|
|
@@ -981,7 +998,7 @@ body.noevents * {
|
|
|
981
998
|
.lexdropdown .lexdropdownitem {
|
|
982
999
|
width: 100%;
|
|
983
1000
|
cursor: pointer;
|
|
984
|
-
color:
|
|
1001
|
+
color: var(--global-text-primary);
|
|
985
1002
|
min-height: 20px;
|
|
986
1003
|
line-height: 22px;
|
|
987
1004
|
align-content: center;
|
|
@@ -994,7 +1011,7 @@ body.noevents * {
|
|
|
994
1011
|
}
|
|
995
1012
|
|
|
996
1013
|
.lexdropdown .lexdropdownitem:hover {
|
|
997
|
-
background-color: var(--
|
|
1014
|
+
background-color: var(--global-selected);
|
|
998
1015
|
color: var(--global-text-primary);
|
|
999
1016
|
}
|
|
1000
1017
|
|
|
@@ -1010,7 +1027,6 @@ body.noevents * {
|
|
|
1010
1027
|
|
|
1011
1028
|
.lexdropdown .lexdropdownitem.selected {
|
|
1012
1029
|
font-weight: 700;
|
|
1013
|
-
background-color: var(--global-selected);
|
|
1014
1030
|
}
|
|
1015
1031
|
|
|
1016
1032
|
.lexdropdown .lexdropdownitem.selected a {
|
|
@@ -1351,11 +1367,8 @@ input[type="range"] {
|
|
|
1351
1367
|
right: 0.8em;
|
|
1352
1368
|
}
|
|
1353
1369
|
|
|
1354
|
-
.lexwidget .
|
|
1355
|
-
|
|
1356
|
-
-moz-user-select: none; /* Firefox 2+ */
|
|
1357
|
-
-ms-user-select: none; /* IE 10+ */
|
|
1358
|
-
user-select: none; /* Standard syntax */
|
|
1370
|
+
.lexwidget .lock {
|
|
1371
|
+
/* color: red; */
|
|
1359
1372
|
}
|
|
1360
1373
|
|
|
1361
1374
|
/* Size Widget */
|
|
@@ -1365,6 +1378,14 @@ input[type="range"] {
|
|
|
1365
1378
|
font-weight: 800;
|
|
1366
1379
|
}
|
|
1367
1380
|
|
|
1381
|
+
.lexwidget .lexunit {
|
|
1382
|
+
-webkit-user-select: none; /* Safari 3.1+ */
|
|
1383
|
+
-moz-user-select: none; /* Firefox 2+ */
|
|
1384
|
+
-ms-user-select: none; /* IE 10+ */
|
|
1385
|
+
user-select: none; /* Standard syntax */
|
|
1386
|
+
margin-left: -2px;
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1368
1389
|
/* Pad Widget */
|
|
1369
1390
|
|
|
1370
1391
|
.lexwidget .lexpad {
|
|
@@ -1622,7 +1643,7 @@ input[type="range"] {
|
|
|
1622
1643
|
|
|
1623
1644
|
.lexprogressbar {
|
|
1624
1645
|
border: none !important;
|
|
1625
|
-
width:
|
|
1646
|
+
width: 90%;
|
|
1626
1647
|
outline: none;
|
|
1627
1648
|
opacity: 0.7;
|
|
1628
1649
|
-webkit-transition: .2s;
|
|
@@ -2073,14 +2094,25 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2073
2094
|
|
|
2074
2095
|
/* Overlay Buttons */
|
|
2075
2096
|
|
|
2076
|
-
.
|
|
2097
|
+
.lexoverlaybuttonscontainer {
|
|
2077
2098
|
position: absolute;
|
|
2078
2099
|
display: flex;
|
|
2079
|
-
margin: 12px;
|
|
2080
2100
|
top: 0;
|
|
2081
|
-
|
|
2101
|
+
width: 100%;
|
|
2082
2102
|
pointer-events: none;
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2105
|
+
.lexoverlaybuttons {
|
|
2106
|
+
display: flex;
|
|
2107
|
+
width: auto !important;
|
|
2108
|
+
height: auto !important;
|
|
2109
|
+
justify-content: start;
|
|
2083
2110
|
z-index: 100;
|
|
2111
|
+
background-color: var(--global-color-secondary);
|
|
2112
|
+
margin: 8px;
|
|
2113
|
+
padding: 0.25em;
|
|
2114
|
+
padding-bottom: 0.3em;
|
|
2115
|
+
border-radius: 12px;
|
|
2084
2116
|
}
|
|
2085
2117
|
|
|
2086
2118
|
.lexoverlaybuttons .lexwidget {
|
|
@@ -2094,40 +2126,43 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2094
2126
|
min-width: 32px;
|
|
2095
2127
|
}
|
|
2096
2128
|
|
|
2097
|
-
.
|
|
2129
|
+
.lexoverlaybuttonscontainer.vertical {
|
|
2098
2130
|
display: grid;
|
|
2099
2131
|
justify-items: left;
|
|
2100
2132
|
}
|
|
2101
2133
|
|
|
2102
|
-
.
|
|
2134
|
+
.lexoverlaybuttonscontainer.vertical .lexoverlaybuttons {
|
|
2135
|
+
display: grid;
|
|
2136
|
+
}
|
|
2137
|
+
|
|
2138
|
+
.lexoverlaybuttonscontainer.vertical .lexwidget {
|
|
2103
2139
|
margin-bottom: 6px;
|
|
2104
2140
|
margin-right: 0px;
|
|
2105
2141
|
}
|
|
2106
2142
|
|
|
2107
|
-
.
|
|
2143
|
+
.lexoverlaybuttonscontainer.vertical .lexwidget button {
|
|
2108
2144
|
min-width: 32px;
|
|
2109
|
-
/* max-width: 32px !important; */
|
|
2110
2145
|
max-height: 32px !important;
|
|
2111
2146
|
}
|
|
2112
2147
|
|
|
2113
|
-
.
|
|
2148
|
+
.lexoverlaybuttonscontainer.bottom {
|
|
2114
2149
|
top: unset;
|
|
2115
2150
|
bottom: 0;
|
|
2116
2151
|
}
|
|
2117
2152
|
|
|
2118
|
-
.
|
|
2153
|
+
.lexoverlaybuttonscontainer.center {
|
|
2119
2154
|
justify-content: center;
|
|
2120
2155
|
}
|
|
2121
2156
|
|
|
2122
|
-
.
|
|
2157
|
+
.lexoverlaybuttonscontainer.right {
|
|
2123
2158
|
justify-content: right;
|
|
2124
2159
|
}
|
|
2125
2160
|
|
|
2126
|
-
.
|
|
2161
|
+
.lexoverlaybuttonscontainer.vertical.center {
|
|
2127
2162
|
justify-items: center;
|
|
2128
2163
|
}
|
|
2129
2164
|
|
|
2130
|
-
.
|
|
2165
|
+
.lexoverlaybuttonscontainer.vertical.right {
|
|
2131
2166
|
justify-items: right;
|
|
2132
2167
|
}
|
|
2133
2168
|
|
|
@@ -2136,13 +2171,11 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2136
2171
|
}
|
|
2137
2172
|
|
|
2138
2173
|
.lexoverlaybuttons .lexbutton {
|
|
2139
|
-
padding:
|
|
2174
|
+
padding: 14px 10px;
|
|
2140
2175
|
font-size: var(--global-font-size-big);
|
|
2141
2176
|
border-radius: 10px;
|
|
2142
2177
|
justify-content: center;
|
|
2143
|
-
background
|
|
2144
|
-
-webkit-backdrop-filter: blur(6px);
|
|
2145
|
-
backdrop-filter: blur(6px);
|
|
2178
|
+
background: none;
|
|
2146
2179
|
color: #d1d1d3bd;
|
|
2147
2180
|
}
|
|
2148
2181
|
|
|
@@ -2151,16 +2184,21 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2151
2184
|
}
|
|
2152
2185
|
|
|
2153
2186
|
.lexoverlaybuttons .lexbutton a {
|
|
2154
|
-
line-height:
|
|
2187
|
+
line-height: 12px;
|
|
2155
2188
|
font-size: var(--global-font-size-big);
|
|
2156
2189
|
}
|
|
2157
2190
|
|
|
2191
|
+
.lexoverlaybuttons .lexbutton.array a {
|
|
2192
|
+
font-size: 10px;
|
|
2193
|
+
margin-left: 4px;
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2158
2196
|
.lexoverlaybuttons .lexbutton img {
|
|
2159
2197
|
filter: brightness(0.7)
|
|
2160
2198
|
}
|
|
2161
2199
|
|
|
2162
2200
|
.lexoverlaybuttons .lexbutton.selected {
|
|
2163
|
-
background-color:
|
|
2201
|
+
background-color: var(--global-selected) !important;
|
|
2164
2202
|
color: #fff;
|
|
2165
2203
|
outline: none;
|
|
2166
2204
|
border-radius: 8px;
|
|
@@ -2172,6 +2210,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2172
2210
|
|
|
2173
2211
|
.lexoverlaybuttons .lexbutton:hover {
|
|
2174
2212
|
color: #f5f5f5;
|
|
2213
|
+
background: var(--global-button-color-hovered);
|
|
2175
2214
|
}
|
|
2176
2215
|
|
|
2177
2216
|
.lexoverlaybuttons .lexbutton:active {
|
|
@@ -2182,9 +2221,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2182
2221
|
.lexoverlaybuttons .lexoverlaygroup {
|
|
2183
2222
|
display: flex;
|
|
2184
2223
|
margin-right: 6px;
|
|
2185
|
-
background-color:
|
|
2186
|
-
-webkit-backdrop-filter: blur(6px);
|
|
2187
|
-
backdrop-filter: blur(6px);
|
|
2224
|
+
background-color: var(--global-color-terciary);
|
|
2188
2225
|
border-radius: 8px;
|
|
2189
2226
|
}
|
|
2190
2227
|
|
|
@@ -2194,7 +2231,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2194
2231
|
backdrop-filter: none;
|
|
2195
2232
|
}
|
|
2196
2233
|
|
|
2197
|
-
.
|
|
2234
|
+
.lexoverlaybuttonscontainer.vertical .lexoverlaygroup {
|
|
2198
2235
|
display: grid;
|
|
2199
2236
|
margin-right: 0px;
|
|
2200
2237
|
margin-bottom: 6px;
|
|
@@ -2205,15 +2242,19 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2205
2242
|
margin-right: 0px;
|
|
2206
2243
|
}
|
|
2207
2244
|
|
|
2208
|
-
.
|
|
2245
|
+
.lexoverlaybuttonscontainer.vertical .lexoverlaygroup .lexwidget {
|
|
2209
2246
|
margin-right: 0px;
|
|
2210
2247
|
margin-bottom: 0px;
|
|
2211
2248
|
}
|
|
2212
2249
|
|
|
2213
|
-
.
|
|
2250
|
+
.lexoverlaybuttonscontainer.vertical .lexoverlaygroup .lexwidget button {
|
|
2214
2251
|
width: 100% !important;
|
|
2215
2252
|
}
|
|
2216
2253
|
|
|
2254
|
+
.lexoverlaybuttons .lexwidget:last-child {
|
|
2255
|
+
margin-right: 0px;
|
|
2256
|
+
}
|
|
2257
|
+
|
|
2217
2258
|
/* Area Tabs */
|
|
2218
2259
|
|
|
2219
2260
|
.lexareatabs {
|
|
@@ -2263,7 +2304,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2263
2304
|
}
|
|
2264
2305
|
|
|
2265
2306
|
.lexareatabs.row .lexareatab {
|
|
2266
|
-
background-color: var(--global-color-
|
|
2307
|
+
background-color: var(--global-color-secondary);
|
|
2267
2308
|
padding-left: 16px;
|
|
2268
2309
|
padding-right: 16px;
|
|
2269
2310
|
margin-right: 4px;
|
|
@@ -2851,6 +2892,7 @@ meter::-webkit-meter-even-less-good-value {
|
|
|
2851
2892
|
}
|
|
2852
2893
|
|
|
2853
2894
|
ul.lexassetscontent {
|
|
2895
|
+
position: relative;
|
|
2854
2896
|
-webkit-text-size-adjust: 100%;
|
|
2855
2897
|
font-size: var(--global-font-size);
|
|
2856
2898
|
color: #AAA;
|
|
@@ -2894,6 +2936,24 @@ ul.lexassetscontent {
|
|
|
2894
2936
|
border-top: 4px solid rgba(0,0,0,0);
|
|
2895
2937
|
}
|
|
2896
2938
|
|
|
2939
|
+
.lexassetscontent .lexitemdesc {
|
|
2940
|
+
position: absolute;
|
|
2941
|
+
font-weight: 600;
|
|
2942
|
+
background-color: #afafaf;
|
|
2943
|
+
color: var(--global-color-primary);
|
|
2944
|
+
font-size: 14px;
|
|
2945
|
+
border-radius: 6px;
|
|
2946
|
+
display: none;
|
|
2947
|
+
opacity: 0;
|
|
2948
|
+
z-index: 102;
|
|
2949
|
+
padding: 2px 6px;
|
|
2950
|
+
transition: opacity ease-in 0.1s;
|
|
2951
|
+
pointer-events: none;
|
|
2952
|
+
}
|
|
2953
|
+
|
|
2954
|
+
.lexassetscontent li:hover + .lexitemdesc {
|
|
2955
|
+
opacity: 1;
|
|
2956
|
+
}
|
|
2897
2957
|
.lexassetscontent.list li {
|
|
2898
2958
|
width: calc(100% - 0.5em);
|
|
2899
2959
|
height: 1.8em;
|
|
@@ -3453,6 +3513,13 @@ pre .line-gutter {
|
|
|
3453
3513
|
.cm-sym.javascript { color: #e7ded2; } /* symbol */
|
|
3454
3514
|
.cm-mtd.javascript { color: #e0cc68 } /* method */
|
|
3455
3515
|
|
|
3516
|
+
.cm-typ.c { color: #36c0b0; } /* type */
|
|
3517
|
+
.cm-bln.c { color: #d44141; } /* builtin */
|
|
3518
|
+
.cm-dec.c { color: #2ddf53; } /* decimal */
|
|
3519
|
+
.cm-sym.c { color: #e7ded2; } /* symbol */
|
|
3520
|
+
.cm-mtd.c { color: #7a9ae0 } /* method */
|
|
3521
|
+
.cm-ppc.c { color: #969696 } /* preprocessor */
|
|
3522
|
+
|
|
3456
3523
|
.cm-typ.cpp { color: #36c0b0; } /* type */
|
|
3457
3524
|
.cm-bln.cpp { color: #d44141; } /* builtin */
|
|
3458
3525
|
.cm-dec.cpp { color: #2ddf53; } /* decimal */
|
|
@@ -3460,6 +3527,8 @@ pre .line-gutter {
|
|
|
3460
3527
|
.cm-mtd.cpp { color: #7a9ae0 } /* method */
|
|
3461
3528
|
.cm-ppc.cpp { color: #969696 } /* preprocessor */
|
|
3462
3529
|
|
|
3530
|
+
.cm-sym.cmake { color: #cf6dcf; } /* symbol */
|
|
3531
|
+
|
|
3463
3532
|
.cm-kwd.css { color: #e8be53; } /* keyword */
|
|
3464
3533
|
.cm-typ.css { color: #b7c3ec; } /* type */
|
|
3465
3534
|
.cm-bln.css { color: #2194ce; } /* builtin */
|
|
@@ -3481,7 +3550,6 @@ pre .line-gutter {
|
|
|
3481
3550
|
.cm-sym.wgsl { color: #f9cb20; } /* symbol */
|
|
3482
3551
|
.cm-ppc.wgsl { color: #99caf1; } /* preprocessor */
|
|
3483
3552
|
|
|
3484
|
-
|
|
3485
3553
|
.cm-typ.rust { color: #36c0b0; } /* type */
|
|
3486
3554
|
.cm-dec.rust { color: #b1ce9b; } /* decimal */
|
|
3487
3555
|
.cm-sym.rust { color: #e7ded2; } /* symbol */
|
|
@@ -3499,6 +3567,9 @@ pre .line-gutter {
|
|
|
3499
3567
|
.cm-bln.html { color: #a1d2f0; } /* builtin */
|
|
3500
3568
|
.cm-sym.html { color: #929292; } /* symbol */
|
|
3501
3569
|
|
|
3570
|
+
.cm-bln.xml { color: #a1d2f0; } /* builtin */
|
|
3571
|
+
.cm-sym.xml { color: #929292; } /* symbol */
|
|
3572
|
+
|
|
3502
3573
|
.cm-bln.markdown { color: #a1d2f0; } /* builtin */
|
|
3503
3574
|
|
|
3504
3575
|
/* Node Graph */
|