lexgui 0.4.1 → 0.4.2
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/audio.js +9 -18
- package/build/lexgui.css +193 -215
- package/build/lexgui.js +938 -987
- package/build/lexgui.min.css +7 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +938 -989
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +13 -1
- package/demo.js +1 -4
- package/package.json +28 -22
package/build/lexgui.css
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
/* clean-css ignore:start */
|
|
1
2
|
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');
|
|
2
|
-
|
|
3
3
|
@font-face {
|
|
4
4
|
font-family: "GoogleSans";
|
|
5
5
|
src: url("https://raw.githubusercontent.com/jxarco/lexgui.js/master/data/GoogleSans.ttf");
|
|
6
6
|
}
|
|
7
|
+
/* clean-css ignore:end */
|
|
7
8
|
|
|
8
9
|
:root {
|
|
9
10
|
/* default color scheme */
|
|
@@ -217,9 +218,10 @@ canvas {
|
|
|
217
218
|
dialog {
|
|
218
219
|
transition: display 0.1s allow-discrete, overlay 0.1s allow-discrete;
|
|
219
220
|
animation: dialogHide 0.1s forwards;
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
dialog[open] {
|
|
224
|
+
animation: dialogShow 0.1s forwards;
|
|
223
225
|
}
|
|
224
226
|
|
|
225
227
|
dialog::backdrop {
|
|
@@ -328,6 +330,7 @@ body.noevents * {
|
|
|
328
330
|
cursor: pointer;
|
|
329
331
|
line-height: inherit !important;
|
|
330
332
|
color: var(--global-text-secondary);
|
|
333
|
+
align-content: center;
|
|
331
334
|
}
|
|
332
335
|
|
|
333
336
|
.lexicon:hover {
|
|
@@ -336,6 +339,7 @@ body.noevents * {
|
|
|
336
339
|
|
|
337
340
|
.lexicon:active {
|
|
338
341
|
color: var(--global-text-secondary);
|
|
342
|
+
transform: scale(0.99);
|
|
339
343
|
}
|
|
340
344
|
|
|
341
345
|
.lexicon:hover svg, .lexicon:hover svg path {
|
|
@@ -843,18 +847,12 @@ body.noevents * {
|
|
|
843
847
|
background: var(--global-blur-background);
|
|
844
848
|
}
|
|
845
849
|
|
|
846
|
-
:root[data-theme="light"] {
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
}
|
|
850
|
-
|
|
851
|
-
.lexdialogtitle {
|
|
852
|
-
text-shadow: 0px 2px 2px #8d8d8d34;
|
|
853
|
-
}
|
|
850
|
+
:root[data-theme="light"] .lexdialog {
|
|
851
|
+
box-shadow: 0px 2px 6px #30303083;
|
|
852
|
+
}
|
|
854
853
|
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
}
|
|
854
|
+
:root[data-theme="light"] .lexdialogtitle {
|
|
855
|
+
text-shadow: 0px 2px 2px #8d8d8d34;
|
|
858
856
|
}
|
|
859
857
|
|
|
860
858
|
/* Generic */
|
|
@@ -942,6 +940,7 @@ body.noevents * {
|
|
|
942
940
|
background-color: var(--global-color-secondary);
|
|
943
941
|
text-shadow: 0px 1px 6px #5554547c;
|
|
944
942
|
padding: 10px;
|
|
943
|
+
display: flex;
|
|
945
944
|
border-top-left-radius: 8px;
|
|
946
945
|
border-top-right-radius: 8px;
|
|
947
946
|
cursor: pointer;
|
|
@@ -995,6 +994,8 @@ body.noevents * {
|
|
|
995
994
|
|
|
996
995
|
.lexbranch .branchicon {
|
|
997
996
|
font-size: var(--global-font-size);
|
|
997
|
+
margin-right: 12px;
|
|
998
|
+
align-content: center;
|
|
998
999
|
}
|
|
999
1000
|
|
|
1000
1001
|
.lexbranch.first .lexbranchtitle {
|
|
@@ -1008,24 +1009,23 @@ body.noevents * {
|
|
|
1008
1009
|
.lexbranch .switch-branch-button {
|
|
1009
1010
|
float: right;
|
|
1010
1011
|
font-size: var(--global-font-size-sm);
|
|
1011
|
-
|
|
1012
|
-
|
|
1012
|
+
transition: transform 0.1s ease-out;
|
|
1013
|
+
margin-left: auto;
|
|
1014
|
+
align-content: center;
|
|
1013
1015
|
}
|
|
1014
1016
|
|
|
1015
1017
|
.lexbranch.closed .switch-branch-button {
|
|
1016
1018
|
transform: rotate(180deg);
|
|
1017
1019
|
}
|
|
1018
1020
|
|
|
1019
|
-
:root[data-theme="light"] {
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
}
|
|
1021
|
+
:root[data-theme="light"] .lexbranchtitle {
|
|
1022
|
+
color: var(--global-text-secondary);
|
|
1023
|
+
background-color: var(--global-color-secondary);
|
|
1024
|
+
text-shadow: 0px 2px 2px #e0e0e03a;
|
|
1025
|
+
}
|
|
1025
1026
|
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
}
|
|
1027
|
+
:root[data-theme="light"] .lexbranch.closed .lexbranchtitle {
|
|
1028
|
+
background-color: inherit;
|
|
1029
1029
|
}
|
|
1030
1030
|
|
|
1031
1031
|
/* Widgets */
|
|
@@ -1061,7 +1061,7 @@ body.noevents * {
|
|
|
1061
1061
|
}
|
|
1062
1062
|
|
|
1063
1063
|
.lexwidget.nobranch {
|
|
1064
|
-
|
|
1064
|
+
width: calc(100% - 10px) !important;
|
|
1065
1065
|
}
|
|
1066
1066
|
|
|
1067
1067
|
.lexwidget.auto {
|
|
@@ -1235,15 +1235,13 @@ body.noevents * {
|
|
|
1235
1235
|
margin: 5px 0 5px 4px;
|
|
1236
1236
|
}
|
|
1237
1237
|
|
|
1238
|
-
:root[data-theme="light"] {
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
}
|
|
1238
|
+
:root[data-theme="light"] .lexwidget .lextext {
|
|
1239
|
+
border: 1px solid var(--global-color-terciary) !important;
|
|
1240
|
+
}
|
|
1242
1241
|
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
}
|
|
1242
|
+
:root[data-theme="light"] .lexbranch .lexseparator {
|
|
1243
|
+
border-top: 1px solid #e7e7e7;
|
|
1244
|
+
border-bottom: 1px solid #c1c1c1;
|
|
1247
1245
|
}
|
|
1248
1246
|
|
|
1249
1247
|
.lextitle {
|
|
@@ -1314,16 +1312,14 @@ body.noevents * {
|
|
|
1314
1312
|
padding: 0.35rem;
|
|
1315
1313
|
}
|
|
1316
1314
|
|
|
1317
|
-
:root[data-theme="light"] {
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
}
|
|
1315
|
+
:root[data-theme="light"] .lexbutton {
|
|
1316
|
+
--button-color: var(--global-button-color);
|
|
1317
|
+
border: 1px solid var(--global-color-terciary);
|
|
1318
|
+
}
|
|
1322
1319
|
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
}
|
|
1320
|
+
:root[data-theme="light"] .lexbutton.selected {
|
|
1321
|
+
background: #3c4145;
|
|
1322
|
+
color: #DDD;
|
|
1327
1323
|
}
|
|
1328
1324
|
|
|
1329
1325
|
/* Colors */
|
|
@@ -1587,21 +1583,18 @@ body.noevents * {
|
|
|
1587
1583
|
margin-top: 8px;
|
|
1588
1584
|
}
|
|
1589
1585
|
|
|
1590
|
-
:root[data-theme="light"] {
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
background-color: var(--global-color-primary);
|
|
1594
|
-
}
|
|
1586
|
+
:root[data-theme="light"] .lexdropdown .lexfilter {
|
|
1587
|
+
background-color: var(--global-color-primary);
|
|
1588
|
+
}
|
|
1595
1589
|
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1590
|
+
:root[data-theme="light"] .lexdropdown ul {
|
|
1591
|
+
background-color: var(--global-color-primary);
|
|
1592
|
+
box-shadow: 0 0px 6px rgba(175, 175, 175, 0.788);
|
|
1593
|
+
}
|
|
1600
1594
|
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
}
|
|
1595
|
+
:root[data-theme="light"] .lexdropdown .lexdropdownitem:hover {
|
|
1596
|
+
background-color: var(--global-selected-light);
|
|
1597
|
+
color: #fff;
|
|
1605
1598
|
}
|
|
1606
1599
|
|
|
1607
1600
|
/* Check box */
|
|
@@ -1661,16 +1654,11 @@ body.noevents * {
|
|
|
1661
1654
|
}
|
|
1662
1655
|
|
|
1663
1656
|
.lexcheckboxcont {
|
|
1664
|
-
font-weight: bold;
|
|
1665
1657
|
display: inline-flex;
|
|
1666
1658
|
gap: 8px;
|
|
1667
1659
|
margin: 0 auto;
|
|
1668
1660
|
}
|
|
1669
1661
|
|
|
1670
|
-
.lexcheckboxcont .checkboxtext {
|
|
1671
|
-
font-weight: bold;
|
|
1672
|
-
}
|
|
1673
|
-
|
|
1674
1662
|
.lexcheckboxsubmenu {
|
|
1675
1663
|
width: 100%;
|
|
1676
1664
|
padding: 6px;
|
|
@@ -2331,7 +2319,7 @@ input[type=number] {
|
|
|
2331
2319
|
|
|
2332
2320
|
.lextree {
|
|
2333
2321
|
border-radius: 6px;
|
|
2334
|
-
width:
|
|
2322
|
+
width: 100%;
|
|
2335
2323
|
min-height: 12px;
|
|
2336
2324
|
margin: 0 auto;
|
|
2337
2325
|
margin-top: 6px;
|
|
@@ -2385,6 +2373,9 @@ input[type=number] {
|
|
|
2385
2373
|
.lextree ul {
|
|
2386
2374
|
padding-bottom: 16px;
|
|
2387
2375
|
padding-inline-start: 0px;
|
|
2376
|
+
display: flex;
|
|
2377
|
+
flex-direction: column;
|
|
2378
|
+
gap: 0.25rem;
|
|
2388
2379
|
}
|
|
2389
2380
|
|
|
2390
2381
|
.lextree input {
|
|
@@ -2401,8 +2392,8 @@ input[type=number] {
|
|
|
2401
2392
|
.lextree .lextreeitem {
|
|
2402
2393
|
list-style-type: none;
|
|
2403
2394
|
align-items: center;
|
|
2404
|
-
margin-bottom: 3px;
|
|
2405
2395
|
line-height: 25px;
|
|
2396
|
+
display: flex;
|
|
2406
2397
|
cursor: pointer;
|
|
2407
2398
|
outline: none;
|
|
2408
2399
|
border-radius: 6px;
|
|
@@ -2412,6 +2403,13 @@ input[type=number] {
|
|
|
2412
2403
|
user-select: none;
|
|
2413
2404
|
}
|
|
2414
2405
|
|
|
2406
|
+
.lextree .lextreeitem div {
|
|
2407
|
+
display: flex;
|
|
2408
|
+
gap: 0.25rem;
|
|
2409
|
+
margin-left: auto;
|
|
2410
|
+
margin-right: 8px;
|
|
2411
|
+
}
|
|
2412
|
+
|
|
2415
2413
|
.lextree .lextreeitem img {
|
|
2416
2414
|
width: 12px;
|
|
2417
2415
|
height: 12px;
|
|
@@ -2424,6 +2422,7 @@ input[type=number] {
|
|
|
2424
2422
|
width: 12px;
|
|
2425
2423
|
height: 12px;
|
|
2426
2424
|
margin-right: 6px;
|
|
2425
|
+
font-size: var(--global-font-size-sm);
|
|
2427
2426
|
}
|
|
2428
2427
|
|
|
2429
2428
|
.lextree .lextreeitem.draggingover {
|
|
@@ -2440,35 +2439,13 @@ input[type=number] {
|
|
|
2440
2439
|
background: light-dark(var(--global-selected-light), var(--global-selected));
|
|
2441
2440
|
}
|
|
2442
2441
|
|
|
2443
|
-
.lextree .lextreeitem a {
|
|
2444
|
-
margin-right: 6px;
|
|
2445
|
-
margin-top: 4px;
|
|
2446
|
-
font-size: var(--global-font-size-sm);
|
|
2447
|
-
}
|
|
2448
|
-
|
|
2449
2442
|
.lextree .lextreeitem a.hierarchy {
|
|
2450
2443
|
margin-right: 6px;
|
|
2451
2444
|
margin-top: 4px;
|
|
2452
2445
|
}
|
|
2453
2446
|
|
|
2454
|
-
.lextree .lextreeitem
|
|
2455
|
-
|
|
2456
|
-
}
|
|
2457
|
-
|
|
2458
|
-
.lextree .lextreeitem a:active {
|
|
2459
|
-
color: var(--global-button-color);
|
|
2460
|
-
margin-top: 6px;
|
|
2461
|
-
}
|
|
2462
|
-
|
|
2463
|
-
.lextree .lextreeitem.parent a {
|
|
2464
|
-
font-size: var(--global-font-size-xs);
|
|
2465
|
-
}
|
|
2466
|
-
|
|
2467
|
-
.lextree .lextreeitem .itemicon {
|
|
2468
|
-
font-size: var(--global-font-size-sm) !important;
|
|
2469
|
-
float: right;
|
|
2470
|
-
margin-top: 7px;
|
|
2471
|
-
margin-right: 8px;
|
|
2447
|
+
.lextree .lextreeitem .lexicon {
|
|
2448
|
+
font-size: var(--global-font-size-sm);
|
|
2472
2449
|
}
|
|
2473
2450
|
|
|
2474
2451
|
.lextree .lextreeitem .itemicon:hover {
|
|
@@ -2679,11 +2656,9 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
2679
2656
|
opacity: 0;
|
|
2680
2657
|
}
|
|
2681
2658
|
|
|
2682
|
-
:root[data-theme="light"] {
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
box-shadow: 0px 6px 7px -3px #a7a7a7b7 !important;
|
|
2686
|
-
}
|
|
2659
|
+
:root[data-theme="light"] .lexmenubox {
|
|
2660
|
+
background-color: #fffffff3;
|
|
2661
|
+
box-shadow: 0px 6px 7px -3px #a7a7a7b7 !important;
|
|
2687
2662
|
}
|
|
2688
2663
|
|
|
2689
2664
|
.lexmenubox[data-submenu] {
|
|
@@ -2848,6 +2823,10 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
2848
2823
|
margin-left: 0px !important;
|
|
2849
2824
|
}
|
|
2850
2825
|
|
|
2826
|
+
.lexmenubar .lexmenubutton.main a {
|
|
2827
|
+
font-size: var(--global-font-size-xxl);
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2851
2830
|
.lexmenubar .lexmenubutton.disabled a {
|
|
2852
2831
|
color: light-dark(var(--global-color-terciary), var(--global-button-color));
|
|
2853
2832
|
cursor: default;
|
|
@@ -3125,6 +3104,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3125
3104
|
margin-left: 16px;
|
|
3126
3105
|
padding-inline: 16px;
|
|
3127
3106
|
display: flex;
|
|
3107
|
+
align-self: center;
|
|
3128
3108
|
flex-direction: column;
|
|
3129
3109
|
-webkit-user-select: none;
|
|
3130
3110
|
-moz-user-select: none;
|
|
@@ -3201,7 +3181,9 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3201
3181
|
display: flex;
|
|
3202
3182
|
border-radius: 8px;
|
|
3203
3183
|
padding: 8px;
|
|
3184
|
+
font-size: var(--global-font-size);
|
|
3204
3185
|
cursor: pointer;
|
|
3186
|
+
align-items: center;
|
|
3205
3187
|
-webkit-user-select: none;
|
|
3206
3188
|
-moz-user-select: none;
|
|
3207
3189
|
-ms-user-select: none;
|
|
@@ -3230,13 +3212,16 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3230
3212
|
}
|
|
3231
3213
|
|
|
3232
3214
|
.lexsidebar .lexsidebarfooter div, .lexsidebar .lexsidebarheader div {
|
|
3233
|
-
width: calc(100% - 88px);
|
|
3234
3215
|
height: 100%;
|
|
3216
|
+
transition: width 0.3s cubic-bezier(0,0,.2,1), padding-inline 0.3s cubic-bezier(0,0,.2,1);
|
|
3217
|
+
}
|
|
3218
|
+
|
|
3219
|
+
.lexsidebar .lexsidebarfooter div.infodefault, .lexsidebar .lexsidebarheader div.infodefault {
|
|
3220
|
+
width: calc(100% - 88px);
|
|
3235
3221
|
padding-inline: 12px;
|
|
3236
3222
|
justify-content: center;
|
|
3237
3223
|
display: flex;
|
|
3238
3224
|
flex-direction: column;
|
|
3239
|
-
transition: width 0.3s cubic-bezier(0,0,.2,1), padding-inline 0.3s cubic-bezier(0,0,.2,1);
|
|
3240
3225
|
}
|
|
3241
3226
|
|
|
3242
3227
|
.lexsidebar .lexsidebarfooter div span, .lexsidebar .lexsidebarheader div span {
|
|
@@ -3258,6 +3243,10 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3258
3243
|
align-content: center;
|
|
3259
3244
|
}
|
|
3260
3245
|
|
|
3246
|
+
.lexsidebar .lexsidebarheader a.toggler {
|
|
3247
|
+
margin-left: auto;
|
|
3248
|
+
}
|
|
3249
|
+
|
|
3261
3250
|
.lexsidebar .lexsidebarfooter svg, .lexsidebar .lexsidebarheader svg {
|
|
3262
3251
|
place-self: center;
|
|
3263
3252
|
}
|
|
@@ -3375,10 +3364,8 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3375
3364
|
margin-left: 4px;
|
|
3376
3365
|
}
|
|
3377
3366
|
|
|
3378
|
-
:root[data-theme="light"] {
|
|
3379
|
-
|
|
3380
|
-
filter: invert(1);
|
|
3381
|
-
}
|
|
3367
|
+
:root[data-theme="light"] .lexoverlaybuttons .lexbutton img {
|
|
3368
|
+
filter: invert(1);
|
|
3382
3369
|
}
|
|
3383
3370
|
|
|
3384
3371
|
.lexoverlaybuttons .lexbutton.selected {
|
|
@@ -3914,10 +3901,8 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
|
|
|
3914
3901
|
gap: 8px;
|
|
3915
3902
|
}
|
|
3916
3903
|
|
|
3917
|
-
:root[data-theme="light"] {
|
|
3918
|
-
|
|
3919
|
-
box-shadow: none;
|
|
3920
|
-
}
|
|
3904
|
+
:root[data-theme="light"] .lextable table {
|
|
3905
|
+
box-shadow: none;
|
|
3921
3906
|
}
|
|
3922
3907
|
|
|
3923
3908
|
/* Custom Widgets Widget */
|
|
@@ -4058,38 +4043,35 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
|
|
|
4058
4043
|
margin-top: 8px;
|
|
4059
4044
|
}
|
|
4060
4045
|
|
|
4061
|
-
:root[data-theme="light"] {
|
|
4062
|
-
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
box-shadow: 0px 0px 8px 2px #a3a3a379;
|
|
4067
|
-
}
|
|
4046
|
+
:root[data-theme="light"] .lexknob .knobcircle {
|
|
4047
|
+
background: rgb(182, 182, 182);
|
|
4048
|
+
background: linear-gradient(180deg, rgba(200, 200, 200, 1) 0%, rgba(160, 160, 160, 1) 100%);
|
|
4049
|
+
box-shadow: 0px 0px 8px 2px #a3a3a379;
|
|
4050
|
+
}
|
|
4068
4051
|
|
|
4069
|
-
|
|
4070
|
-
|
|
4071
|
-
|
|
4072
|
-
|
|
4052
|
+
/* Arc Indicator */
|
|
4053
|
+
:root[data-theme="light"] .lexknob .knobcircle::before {
|
|
4054
|
+
border: 2px solid rgba(255, 255, 255, 0.2);
|
|
4055
|
+
}
|
|
4073
4056
|
|
|
4074
|
-
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4057
|
+
/* Tick Marks */
|
|
4058
|
+
:root[data-theme="light"] .lexknob.show-ticks .knobcircle::after {
|
|
4059
|
+
background: repeating-conic-gradient(transparent 0deg,
|
|
4060
|
+
rgba(50, 50, 50, 0.493) 1deg 3deg,
|
|
4061
|
+
transparent 4deg calc(var(--knob-snap-mark) - 1deg));
|
|
4062
|
+
}
|
|
4080
4063
|
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
-
|
|
4064
|
+
:root[data-theme="light"] .lexknob .innerknobcircle {
|
|
4065
|
+
background-color: rgb(182, 182, 182);
|
|
4066
|
+
}
|
|
4084
4067
|
|
|
4085
|
-
|
|
4086
|
-
|
|
4087
|
-
|
|
4088
|
-
|
|
4068
|
+
:root[data-theme="light"] .lexknob .knobmarker {
|
|
4069
|
+
background-color: var(--global-selected-dark);
|
|
4070
|
+
filter: brightness(1.5);
|
|
4071
|
+
}
|
|
4089
4072
|
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
}
|
|
4073
|
+
:root[data-theme="light"] .lexknob.disabled .knobmarker {
|
|
4074
|
+
background-color: var(--global-text-primary);
|
|
4093
4075
|
}
|
|
4094
4076
|
|
|
4095
4077
|
/* Icon swap */
|
|
@@ -4185,7 +4167,6 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
|
|
|
4185
4167
|
|
|
4186
4168
|
.lextimeline .lextree {
|
|
4187
4169
|
margin: 0px !important;
|
|
4188
|
-
width: 100%;
|
|
4189
4170
|
}
|
|
4190
4171
|
|
|
4191
4172
|
.lextimeline .lextree .lextreeitem {
|
|
@@ -5131,94 +5112,91 @@ ul.lexassetscontent {
|
|
|
5131
5112
|
|
|
5132
5113
|
.cm-bln.markdown { color: #a1d2f0; } /* builtin */
|
|
5133
5114
|
|
|
5134
|
-
:root[data-theme="light"] {
|
|
5135
|
-
|
|
5136
|
-
|
|
5137
|
-
background-color: #c5c4c4ab;
|
|
5138
|
-
}
|
|
5139
|
-
|
|
5140
|
-
.lexcodeeditor.disabled pre.active-line {
|
|
5141
|
-
background: none;
|
|
5142
|
-
}
|
|
5143
|
-
|
|
5144
|
-
.lexcodescrollbar div {
|
|
5145
|
-
/* thumb */
|
|
5146
|
-
background-color: #8383839d !important;
|
|
5147
|
-
}
|
|
5115
|
+
:root[data-theme="light"] .lexcodeeditor pre.active-line {
|
|
5116
|
+
background-color: #c5c4c4ab;
|
|
5117
|
+
}
|
|
5148
5118
|
|
|
5149
|
-
|
|
5150
|
-
|
|
5151
|
-
|
|
5152
|
-
}
|
|
5119
|
+
:root[data-theme="light"] .lexcodeeditor.disabled pre.active-line {
|
|
5120
|
+
background: none;
|
|
5121
|
+
}
|
|
5153
5122
|
|
|
5154
|
-
|
|
5155
|
-
|
|
5156
|
-
|
|
5157
|
-
.cm-com { color: #188038; } /* comment */
|
|
5158
|
-
|
|
5159
|
-
.cm-typ.javascript { color: #0b9484; } /* type */
|
|
5160
|
-
.cm-dec.javascript { color: #c5221f; } /* decimal */
|
|
5161
|
-
.cm-sym.javascript { color: #333333; } /* symbol */
|
|
5162
|
-
.cm-mtd.javascript { color: #539ac7 } /* method */
|
|
5163
|
-
|
|
5164
|
-
.cm-typ.c { color: #0b9484; } /* type */
|
|
5165
|
-
.cm-bln.c { color: #333333; } /* builtin */
|
|
5166
|
-
.cm-dec.c { color: #c5221f; } /* decimal */
|
|
5167
|
-
.cm-sym.c { color: #333333; } /* symbol */
|
|
5168
|
-
.cm-mtd.c { color: #539ac7 } /* method */
|
|
5169
|
-
.cm-ppc.c { color: #626262 } /* preprocessor */
|
|
5170
|
-
|
|
5171
|
-
.cm-typ.cpp { color: #0b9484; } /* type */
|
|
5172
|
-
.cm-bln.cpp { color: #333333; } /* builtin */
|
|
5173
|
-
.cm-dec.cpp { color: #c5221f; } /* decimal */
|
|
5174
|
-
.cm-sym.cpp { color: #333333; } /* symbol */
|
|
5175
|
-
.cm-mtd.cpp { color: #539ac7 } /* method */
|
|
5176
|
-
.cm-ppc.cpp { color: #626262 } /* preprocessor */
|
|
5177
|
-
|
|
5178
|
-
.cm-sym.cmake { color: #a753c0; } /* symbol */
|
|
5179
|
-
|
|
5180
|
-
.cm-kwd.css { color: #c49319; } /* keyword */
|
|
5181
|
-
.cm-typ.css { color: #539ac7; } /* type */
|
|
5182
|
-
.cm-bln.css { color: #2194ce; } /* builtin */
|
|
5183
|
-
.cm-dec.css { color: #c5221f; } /* decimal */
|
|
5184
|
-
.cm-sym.css { color: #a753c0; } /* symbol */
|
|
5185
|
-
|
|
5186
|
-
.cm-dec.json { color: #c5221f; } /* decimal */
|
|
5187
|
-
.cm-sym.json { color: #a753c0; } /* symbol */
|
|
5188
|
-
|
|
5189
|
-
.cm-typ.glsl { color: #0b9484; } /* type */
|
|
5190
|
-
.cm-dec.glsl { color: #c5221f; } /* decimal */
|
|
5191
|
-
.cm-mtd.glsl { color: #539ac7; } /* method */
|
|
5192
|
-
.cm-sym.glsl { color: #a753c0; } /* symbol */
|
|
5193
|
-
|
|
5194
|
-
.cm-typ.wgsl { color: #0b9484; } /* type */
|
|
5195
|
-
.cm-dec.wgsl { color: #c5221f; } /* decimal */
|
|
5196
|
-
.cm-mtd.wgsl { color: #539ac7; } /* method */
|
|
5197
|
-
.cm-sym.wgsl { color: #a753c0; } /* symbol */
|
|
5198
|
-
.cm-ppc.wgsl { color: #626262; } /* preprocessor */
|
|
5199
|
-
|
|
5200
|
-
.cm-typ.rust { color: #0b9484; } /* type */
|
|
5201
|
-
.cm-dec.rust { color: #c5221f; } /* decimal */
|
|
5202
|
-
.cm-sym.rust { color: #333333; } /* symbol */
|
|
5203
|
-
.cm-mtd.rust { color: #539ac7 } /* method */
|
|
5204
|
-
|
|
5205
|
-
.cm-typ.python { color: #0b9484; } /* type */
|
|
5206
|
-
.cm-dec.python { color: #c5221f; } /* decimal */
|
|
5207
|
-
.cm-sym.python { color: #333333; } /* symbol */
|
|
5208
|
-
.cm-mtd.python { color: #539ac7 } /* method */
|
|
5209
|
-
|
|
5210
|
-
.cm-dec.batch { color: #c5221f; } /* decimal */
|
|
5211
|
-
.cm-sym.batch { color: #a753c0; } /* symbol */
|
|
5212
|
-
|
|
5213
|
-
.cm-bln.html { color: #539ac7; } /* builtin */
|
|
5214
|
-
.cm-sym.html { color: #696969; } /* symbol */
|
|
5215
|
-
|
|
5216
|
-
.cm-bln.xml { color: #a1d2f0; } /* builtin */
|
|
5217
|
-
.cm-sym.xml { color: #929292; } /* symbol */
|
|
5218
|
-
|
|
5219
|
-
.cm-bln.markdown { color: #a1d2f0; } /* builtin */
|
|
5123
|
+
:root[data-theme="light"] .lexcodescrollbar div {
|
|
5124
|
+
/* thumb */
|
|
5125
|
+
background-color: #8383839d !important;
|
|
5220
5126
|
}
|
|
5221
5127
|
|
|
5128
|
+
:root[data-theme="light"] .lexcodescrollbar div:hover {
|
|
5129
|
+
/* thumb */
|
|
5130
|
+
background-color: #5e5e5ea9 !important;
|
|
5131
|
+
}
|
|
5132
|
+
|
|
5133
|
+
:root[data-theme="light"] .cm-str { color: #a15e3e; } /* string */
|
|
5134
|
+
:root[data-theme="light"] .cm-std { color: #a753c0; } /* statements & declarations */
|
|
5135
|
+
:root[data-theme="light"] .cm-kwd { color: #1967d2; } /* keyword */
|
|
5136
|
+
:root[data-theme="light"] .cm-com { color: #188038; } /* comment */
|
|
5137
|
+
|
|
5138
|
+
:root[data-theme="light"] .cm-typ.javascript { color: #0b9484; } /* type */
|
|
5139
|
+
:root[data-theme="light"] .cm-dec.javascript { color: #c5221f; } /* decimal */
|
|
5140
|
+
:root[data-theme="light"] .cm-sym.javascript { color: #333333; } /* symbol */
|
|
5141
|
+
:root[data-theme="light"] .cm-mtd.javascript { color: #539ac7 } /* method */
|
|
5142
|
+
|
|
5143
|
+
:root[data-theme="light"] .cm-typ.c { color: #0b9484; } /* type */
|
|
5144
|
+
:root[data-theme="light"] .cm-bln.c { color: #333333; } /* builtin */
|
|
5145
|
+
:root[data-theme="light"] .cm-dec.c { color: #c5221f; } /* decimal */
|
|
5146
|
+
:root[data-theme="light"] .cm-sym.c { color: #333333; } /* symbol */
|
|
5147
|
+
:root[data-theme="light"] .cm-mtd.c { color: #539ac7 } /* method */
|
|
5148
|
+
:root[data-theme="light"] .cm-ppc.c { color: #626262 } /* preprocessor */
|
|
5149
|
+
|
|
5150
|
+
:root[data-theme="light"] .cm-typ.cpp { color: #0b9484; } /* type */
|
|
5151
|
+
:root[data-theme="light"] .cm-bln.cpp { color: #333333; } /* builtin */
|
|
5152
|
+
:root[data-theme="light"] .cm-dec.cpp { color: #c5221f; } /* decimal */
|
|
5153
|
+
:root[data-theme="light"] .cm-sym.cpp { color: #333333; } /* symbol */
|
|
5154
|
+
:root[data-theme="light"] .cm-mtd.cpp { color: #539ac7 } /* method */
|
|
5155
|
+
:root[data-theme="light"] .cm-ppc.cpp { color: #626262 } /* preprocessor */
|
|
5156
|
+
|
|
5157
|
+
:root[data-theme="light"] .cm-sym.cmake { color: #a753c0; } /* symbol */
|
|
5158
|
+
|
|
5159
|
+
:root[data-theme="light"] .cm-kwd.css { color: #c49319; } /* keyword */
|
|
5160
|
+
:root[data-theme="light"] .cm-typ.css { color: #539ac7; } /* type */
|
|
5161
|
+
:root[data-theme="light"] .cm-bln.css { color: #2194ce; } /* builtin */
|
|
5162
|
+
:root[data-theme="light"] .cm-dec.css { color: #c5221f; } /* decimal */
|
|
5163
|
+
:root[data-theme="light"] .cm-sym.css { color: #a753c0; } /* symbol */
|
|
5164
|
+
|
|
5165
|
+
:root[data-theme="light"] .cm-dec.json { color: #c5221f; } /* decimal */
|
|
5166
|
+
:root[data-theme="light"] .cm-sym.json { color: #a753c0; } /* symbol */
|
|
5167
|
+
|
|
5168
|
+
:root[data-theme="light"] .cm-typ.glsl { color: #0b9484; } /* type */
|
|
5169
|
+
:root[data-theme="light"] .cm-dec.glsl { color: #c5221f; } /* decimal */
|
|
5170
|
+
:root[data-theme="light"] .cm-mtd.glsl { color: #539ac7; } /* method */
|
|
5171
|
+
:root[data-theme="light"] .cm-sym.glsl { color: #a753c0; } /* symbol */
|
|
5172
|
+
|
|
5173
|
+
:root[data-theme="light"] .cm-typ.wgsl { color: #0b9484; } /* type */
|
|
5174
|
+
:root[data-theme="light"] .cm-dec.wgsl { color: #c5221f; } /* decimal */
|
|
5175
|
+
:root[data-theme="light"] .cm-mtd.wgsl { color: #539ac7; } /* method */
|
|
5176
|
+
:root[data-theme="light"] .cm-sym.wgsl { color: #a753c0; } /* symbol */
|
|
5177
|
+
:root[data-theme="light"] .cm-ppc.wgsl { color: #626262; } /* preprocessor */
|
|
5178
|
+
|
|
5179
|
+
:root[data-theme="light"] .cm-typ.rust { color: #0b9484; } /* type */
|
|
5180
|
+
:root[data-theme="light"] .cm-dec.rust { color: #c5221f; } /* decimal */
|
|
5181
|
+
:root[data-theme="light"] .cm-sym.rust { color: #333333; } /* symbol */
|
|
5182
|
+
:root[data-theme="light"] .cm-mtd.rust { color: #539ac7 } /* method */
|
|
5183
|
+
|
|
5184
|
+
:root[data-theme="light"] .cm-typ.python { color: #0b9484; } /* type */
|
|
5185
|
+
:root[data-theme="light"] .cm-dec.python { color: #c5221f; } /* decimal */
|
|
5186
|
+
:root[data-theme="light"] .cm-sym.python { color: #333333; } /* symbol */
|
|
5187
|
+
:root[data-theme="light"] .cm-mtd.python { color: #539ac7 } /* method */
|
|
5188
|
+
|
|
5189
|
+
:root[data-theme="light"] .cm-dec.batch { color: #c5221f; } /* decimal */
|
|
5190
|
+
:root[data-theme="light"] .cm-sym.batch { color: #a753c0; } /* symbol */
|
|
5191
|
+
|
|
5192
|
+
:root[data-theme="light"] .cm-bln.html { color: #539ac7; } /* builtin */
|
|
5193
|
+
:root[data-theme="light"] .cm-sym.html { color: #696969; } /* symbol */
|
|
5194
|
+
|
|
5195
|
+
:root[data-theme="light"] .cm-bln.xml { color: #a1d2f0; } /* builtin */
|
|
5196
|
+
:root[data-theme="light"] .cm-sym.xml { color: #929292; } /* symbol */
|
|
5197
|
+
|
|
5198
|
+
:root[data-theme="light"] .cm-bln.markdown { color: #a1d2f0; } /* builtin */
|
|
5199
|
+
|
|
5222
5200
|
/* Node Graph */
|
|
5223
5201
|
|
|
5224
5202
|
.lexgraph {
|