lexgui 0.5.10 → 0.6.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/README.md +1 -1
- package/build/components/codeeditor.js +89 -40
- package/build/components/nodegraph.js +32 -23
- package/build/components/timeline.js +5 -5
- package/build/components/videoeditor.js +1 -1
- package/build/lexgui.css +187 -394
- package/build/lexgui.js +892 -1001
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +892 -1001
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +38 -1
- package/demo.js +103 -86
- package/examples/all_widgets.html +37 -38
- package/examples/area_tabs.html +5 -5
- package/examples/asset_view.html +1 -1
- package/examples/code_editor.html +1 -1
- package/examples/dialogs.html +4 -4
- package/examples/immediate_ui.html +1 -1
- package/examples/index.html +8 -8
- package/examples/node_graph.html +1 -1
- package/examples/side_bar.html +15 -15
- package/examples/timeline.html +9 -9
- package/examples/video_editor.html +1 -1
- package/examples/video_editor2.html +5 -6
- package/package.json +1 -1
package/build/lexgui.css
CHANGED
|
@@ -170,28 +170,48 @@
|
|
|
170
170
|
background: #aaaaaa;
|
|
171
171
|
}
|
|
172
172
|
|
|
173
|
+
/* default app layout (editor-like) */
|
|
174
|
+
|
|
173
175
|
html,
|
|
174
176
|
body {
|
|
175
177
|
width: 100%;
|
|
176
178
|
height: 100%;
|
|
177
|
-
overflow: hidden;
|
|
178
|
-
/* no general overflow in desktop app */
|
|
179
179
|
margin: 0;
|
|
180
180
|
padding: 0;
|
|
181
|
+
overflow: hidden;
|
|
181
182
|
font-family: var(--global-font);
|
|
182
183
|
background-color: var(--global-color-primary);
|
|
183
184
|
}
|
|
184
185
|
|
|
186
|
+
#lexroot {
|
|
187
|
+
left: 0;
|
|
188
|
+
right: 0;
|
|
189
|
+
top: 0;
|
|
190
|
+
bottom: 0;
|
|
191
|
+
width: 100%;
|
|
192
|
+
min-height: 100vh;
|
|
193
|
+
display: flex;
|
|
194
|
+
flex-direction: column;
|
|
195
|
+
position: absolute;
|
|
196
|
+
outline: none;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
/* document layout (scrolling page) */
|
|
200
|
+
|
|
201
|
+
:root[data-layout="document"] #lexroot {
|
|
202
|
+
bottom: unset;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
:root[data-layout="document"], :root[data-layout="document"] body {
|
|
206
|
+
overflow-y: auto;
|
|
207
|
+
}
|
|
208
|
+
|
|
185
209
|
*,
|
|
186
210
|
*::before,
|
|
187
211
|
*::after {
|
|
188
212
|
box-sizing: border-box;
|
|
189
213
|
}
|
|
190
214
|
|
|
191
|
-
:root[data-strictVP="false"] {
|
|
192
|
-
overflow-y: auto;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
215
|
blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
|
|
196
216
|
margin: 0;
|
|
197
217
|
}
|
|
@@ -295,7 +315,11 @@ body.noevents * {
|
|
|
295
315
|
.orange { color: orange }
|
|
296
316
|
.gray { color: gray }
|
|
297
317
|
.dodgerblue { color: dodgerblue }
|
|
318
|
+
.munsellblue { color: #0093af }
|
|
319
|
+
.pictonblue { color: #45B1E8 }
|
|
298
320
|
.lightblue { color: #5aa8f7 }
|
|
321
|
+
.goldenrod { color: goldenrod }
|
|
322
|
+
.heliotrope { color: #d460ff }
|
|
299
323
|
|
|
300
324
|
svg.xs { width: var(--svg-size-xs); height: var(--svg-size-xs); }
|
|
301
325
|
svg.sm { width: var(--svg-size-sm); height: var(--svg-size-sm); }
|
|
@@ -304,34 +328,12 @@ svg.xl { width: var(--svg-size-xl); height: var(--svg-size-xl); }
|
|
|
304
328
|
svg.xxl { width: var(--svg-size-xxl); height: var(--svg-size-xxl); }
|
|
305
329
|
|
|
306
330
|
#modal {
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
bottom: 0;
|
|
311
|
-
width: 100%;
|
|
312
|
-
height: 100%;
|
|
313
|
-
background-color: rgba(0, 0, 0, 0.5);
|
|
314
|
-
position: absolute;
|
|
331
|
+
inset: 0;
|
|
332
|
+
background-color: rgba(0, 0, 0, 0.8);
|
|
333
|
+
position: fixed;
|
|
315
334
|
z-index: 99;
|
|
316
335
|
opacity: 1;
|
|
317
|
-
transition: opacity 0.
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
#lexroot {
|
|
321
|
-
left: 0;
|
|
322
|
-
right: 0;
|
|
323
|
-
top: 0;
|
|
324
|
-
bottom: 0;
|
|
325
|
-
width: 100%;
|
|
326
|
-
min-height: 100vh;
|
|
327
|
-
display: flex;
|
|
328
|
-
flex-direction: column;
|
|
329
|
-
position: absolute;
|
|
330
|
-
outline: none;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
:root[data-strictVP="false"] #lexroot {
|
|
334
|
-
bottom: unset;
|
|
336
|
+
transition: opacity 0.15s ease-in;
|
|
335
337
|
}
|
|
336
338
|
|
|
337
339
|
.leximage {
|
|
@@ -368,20 +370,25 @@ svg.xxl { width: var(--svg-size-xxl); height: var(--svg-size-xxl); }
|
|
|
368
370
|
background-color: var(--global-color-secondary);
|
|
369
371
|
}
|
|
370
372
|
|
|
371
|
-
svg
|
|
373
|
+
svg {
|
|
372
374
|
width: 1rem;
|
|
373
375
|
height: 1rem;
|
|
374
|
-
|
|
375
|
-
stroke:
|
|
376
|
+
color: var(--global-text-secondary);
|
|
377
|
+
stroke: currentColor;
|
|
376
378
|
display: block;
|
|
377
379
|
}
|
|
378
380
|
|
|
381
|
+
svg path {
|
|
382
|
+
color: inherit;
|
|
383
|
+
stroke: inherit;
|
|
384
|
+
}
|
|
385
|
+
|
|
379
386
|
a svg, svg path {
|
|
380
387
|
pointer-events: none;
|
|
381
388
|
}
|
|
382
389
|
|
|
383
390
|
.lexicon:hover svg, .lexicon:hover svg path {
|
|
384
|
-
|
|
391
|
+
color: var(--global-text-primary) !important;
|
|
385
392
|
}
|
|
386
393
|
|
|
387
394
|
/* Notifications */
|
|
@@ -525,38 +532,6 @@ a svg, svg path {
|
|
|
525
532
|
display: flex;
|
|
526
533
|
}
|
|
527
534
|
|
|
528
|
-
.commandbar .gs-header {
|
|
529
|
-
width: 100%;
|
|
530
|
-
height: 44px;
|
|
531
|
-
display: flex;
|
|
532
|
-
padding: 6px;
|
|
533
|
-
}
|
|
534
|
-
|
|
535
|
-
.commandbar a {
|
|
536
|
-
color: var(--global-text-secondary);
|
|
537
|
-
padding: 10px;
|
|
538
|
-
background-color: var(--global-color-tertiary);
|
|
539
|
-
border-top-left-radius: 6px;
|
|
540
|
-
border-bottom-left-radius: 6px;
|
|
541
|
-
font-size: var(--global-font-size-sm);
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
.commandbar input {
|
|
545
|
-
width: 100%;
|
|
546
|
-
flex: 50%;
|
|
547
|
-
background: none;
|
|
548
|
-
border-top-right-radius: 6px;
|
|
549
|
-
border-bottom-right-radius: 6px;
|
|
550
|
-
color: var(--global-text-secondary);
|
|
551
|
-
background-color: var(--global-color-tertiary);
|
|
552
|
-
outline: none;
|
|
553
|
-
border: none;
|
|
554
|
-
font-family: var(--global-font);
|
|
555
|
-
font-size: var(--global-font-size);
|
|
556
|
-
line-height: 23px;
|
|
557
|
-
font-weight: 600;
|
|
558
|
-
}
|
|
559
|
-
|
|
560
535
|
.commandbar .lexarea {
|
|
561
536
|
background: none !important;
|
|
562
537
|
}
|
|
@@ -572,38 +547,22 @@ a svg, svg path {
|
|
|
572
547
|
}
|
|
573
548
|
|
|
574
549
|
.commandbar .searchitembox .searchitem {
|
|
575
|
-
padding:
|
|
576
|
-
padding-left:
|
|
550
|
+
padding: 6px;
|
|
551
|
+
padding-left: 48px;
|
|
577
552
|
color: var(--global-text-primary);
|
|
578
553
|
font-size: var(--global-font-size);
|
|
579
|
-
line-height: 15px;
|
|
580
554
|
cursor: pointer;
|
|
555
|
+
display: flex;
|
|
556
|
+
align-items: center;
|
|
581
557
|
}
|
|
582
558
|
|
|
583
|
-
.commandbar .searchitembox .searchitem
|
|
584
|
-
padding: 0px;
|
|
559
|
+
.commandbar .searchitembox .searchitem svg:not(.separator) {
|
|
585
560
|
margin-left: -28px;
|
|
586
|
-
margin-
|
|
587
|
-
color: var(--global-color-accent-light);
|
|
588
|
-
float: left;
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
.commandbar .searchitembox .searchitem i {
|
|
592
|
-
width: 12px;
|
|
593
|
-
font-size: var(--global-font-size-sm);
|
|
594
|
-
margin-right: 8px;
|
|
595
|
-
margin-top: -2px;
|
|
596
|
-
vertical-align: middle;
|
|
597
|
-
}
|
|
598
|
-
|
|
599
|
-
.commandbar .searchitembox .searchitem img {
|
|
600
|
-
width: 12px;
|
|
601
|
-
margin-right: 4px;
|
|
602
|
-
margin-top: -2px;
|
|
603
|
-
vertical-align: middle;
|
|
561
|
+
margin-right: 12px;
|
|
604
562
|
}
|
|
605
563
|
|
|
606
564
|
.commandbar .searchitembox .searchitem .lang-ext {
|
|
565
|
+
margin-left: 4px;
|
|
607
566
|
color: #676e75;
|
|
608
567
|
font-size: var(--global-font-size);
|
|
609
568
|
}
|
|
@@ -677,10 +636,8 @@ a svg, svg path {
|
|
|
677
636
|
font-size: var(--global-font-size);
|
|
678
637
|
}
|
|
679
638
|
|
|
680
|
-
.lexfooter .
|
|
681
|
-
|
|
682
|
-
margin-block-start: 1em;
|
|
683
|
-
margin-block-end: 1em;
|
|
639
|
+
.lexfooter .credits-and-socials p {
|
|
640
|
+
font-size: var(--global-font-size-sm);
|
|
684
641
|
}
|
|
685
642
|
|
|
686
643
|
@media (max-width: 768px) {
|
|
@@ -689,39 +646,11 @@ a svg, svg path {
|
|
|
689
646
|
text-align: center;
|
|
690
647
|
}
|
|
691
648
|
|
|
692
|
-
.lexfooter .
|
|
693
|
-
|
|
649
|
+
.lexfooter .socials {
|
|
650
|
+
justify-content: center;
|
|
694
651
|
}
|
|
695
652
|
}
|
|
696
653
|
|
|
697
|
-
.lexfooter .social svg {
|
|
698
|
-
max-width: 28px;
|
|
699
|
-
max-height: 28px;
|
|
700
|
-
transition: all .2s ease-in-out;
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
.lexfooter .social a {
|
|
704
|
-
max-width: 28px;
|
|
705
|
-
max-height: 28px;
|
|
706
|
-
color: var(--global-text-secondary);
|
|
707
|
-
margin-right: 6px;
|
|
708
|
-
vertical-align: -webkit-baseline-middle;
|
|
709
|
-
vertical-align: middle;
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
.lexfooter .social a a {
|
|
713
|
-
font-size: var(--global-font-size-xxl);
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
.lexfooter a:hover {
|
|
717
|
-
color: var(--global-color-accent-light);
|
|
718
|
-
}
|
|
719
|
-
|
|
720
|
-
.lexfooter svg:hover {
|
|
721
|
-
fill: var(--global-color-accent-light);
|
|
722
|
-
stroke: var(--global-color-accent-light);
|
|
723
|
-
}
|
|
724
|
-
|
|
725
654
|
.lexfooter hr {
|
|
726
655
|
border: none;
|
|
727
656
|
border-top: 1px solid #2c2c2c;
|
|
@@ -932,7 +861,7 @@ a svg, svg path {
|
|
|
932
861
|
padding: 0.2rem;
|
|
933
862
|
padding-inline: 0.5rem;
|
|
934
863
|
border-radius: 0.4rem;
|
|
935
|
-
transition: opacity 0.
|
|
864
|
+
transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1);
|
|
936
865
|
animation-duration: 400ms;
|
|
937
866
|
animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
|
|
938
867
|
will-change: transform, opacity;
|
|
@@ -1015,6 +944,75 @@ a svg, svg path {
|
|
|
1015
944
|
animation-name: slideRightAndFade;
|
|
1016
945
|
}
|
|
1017
946
|
|
|
947
|
+
/* Sheet */
|
|
948
|
+
|
|
949
|
+
.lexsheet {
|
|
950
|
+
position: fixed;
|
|
951
|
+
z-index: 150;
|
|
952
|
+
animation-duration: 400ms;
|
|
953
|
+
animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
|
|
954
|
+
will-change: transform, opacity;
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
@keyframes enterBottom {
|
|
958
|
+
from {
|
|
959
|
+
opacity: 0;
|
|
960
|
+
transform: translateY(100%);
|
|
961
|
+
}
|
|
962
|
+
to {
|
|
963
|
+
opacity: 1;
|
|
964
|
+
transform: translateY(0);
|
|
965
|
+
}
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
@keyframes enterLeft {
|
|
969
|
+
from {
|
|
970
|
+
opacity: 0;
|
|
971
|
+
transform: translateX(-100%);
|
|
972
|
+
}
|
|
973
|
+
to {
|
|
974
|
+
opacity: 1;
|
|
975
|
+
transform: translateX(0);
|
|
976
|
+
}
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
@keyframes enterTop {
|
|
980
|
+
from {
|
|
981
|
+
opacity: 0;
|
|
982
|
+
transform: translateY(-100%);
|
|
983
|
+
}
|
|
984
|
+
to {
|
|
985
|
+
opacity: 1;
|
|
986
|
+
transform: translateY(0);
|
|
987
|
+
}
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
@keyframes enterRight {
|
|
991
|
+
from {
|
|
992
|
+
opacity: 0;
|
|
993
|
+
transform: translateX(100%);
|
|
994
|
+
}
|
|
995
|
+
to {
|
|
996
|
+
opacity: 1;
|
|
997
|
+
transform: translateX(0);
|
|
998
|
+
}
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
.lexsheet[data-side="top"]{
|
|
1002
|
+
animation-name: enterTop;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.lexsheet[data-side="right"]{
|
|
1006
|
+
animation-name: enterRight;
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
.lexsheet[data-side="bottom"]{
|
|
1010
|
+
animation-name: enterBottom;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
.lexsheet[data-side="left"]{
|
|
1014
|
+
animation-name: enterLeft;
|
|
1015
|
+
}
|
|
1018
1016
|
|
|
1019
1017
|
/* Dropdown Menu */
|
|
1020
1018
|
|
|
@@ -1032,6 +1030,7 @@ a svg, svg path {
|
|
|
1032
1030
|
padding: 0.2rem;
|
|
1033
1031
|
border-radius: 6px;
|
|
1034
1032
|
border: 1px solid #7a797c4f;
|
|
1033
|
+
outline: none;
|
|
1035
1034
|
animation-duration: 400ms;
|
|
1036
1035
|
animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
|
|
1037
1036
|
will-change: transform, opacity;
|
|
@@ -1079,7 +1078,6 @@ a svg, svg path {
|
|
|
1079
1078
|
|
|
1080
1079
|
.lexdropdownmenuitem a {
|
|
1081
1080
|
margin-left: auto;
|
|
1082
|
-
margin-right: 4px;
|
|
1083
1081
|
align-content: center;
|
|
1084
1082
|
pointer-events: none;
|
|
1085
1083
|
}
|
|
@@ -1358,16 +1356,6 @@ a svg, svg path {
|
|
|
1358
1356
|
padding-inline: 0.4rem;
|
|
1359
1357
|
}
|
|
1360
1358
|
|
|
1361
|
-
.lexwidget .inputicon {
|
|
1362
|
-
padding: 6px;
|
|
1363
|
-
font-size: var(--global-font-size-xs);
|
|
1364
|
-
align-self: center;
|
|
1365
|
-
text-align: center;
|
|
1366
|
-
margin-left: 4px;
|
|
1367
|
-
position: absolute;
|
|
1368
|
-
z-index: 1;
|
|
1369
|
-
}
|
|
1370
|
-
|
|
1371
1359
|
.lexseparator {
|
|
1372
1360
|
border-top: 1px solid var(--global-color-secondary);
|
|
1373
1361
|
border-bottom: 1px solid var(--global-color-tertiary);
|
|
@@ -1434,7 +1422,10 @@ a svg, svg path {
|
|
|
1434
1422
|
|
|
1435
1423
|
.lexwidget .lextext.formlabel {
|
|
1436
1424
|
margin-left: 8px;
|
|
1437
|
-
margin-bottom: -
|
|
1425
|
+
margin-bottom: -6px;
|
|
1426
|
+
font-weight: 500;
|
|
1427
|
+
padding: 0;
|
|
1428
|
+
font-size: var(--global-font-size-sm);
|
|
1438
1429
|
}
|
|
1439
1430
|
|
|
1440
1431
|
.lexwidget .lextext.outline {
|
|
@@ -1618,7 +1609,7 @@ a svg, svg path {
|
|
|
1618
1609
|
/* Title Widget */
|
|
1619
1610
|
|
|
1620
1611
|
.lextitle {
|
|
1621
|
-
width: fit-content;
|
|
1612
|
+
width: fit-content !important;
|
|
1622
1613
|
width: -moz-fit-content;
|
|
1623
1614
|
color: var(--global-text-secondary);
|
|
1624
1615
|
font-weight: 600;
|
|
@@ -1645,13 +1636,6 @@ a svg, svg path {
|
|
|
1645
1636
|
flex: none;
|
|
1646
1637
|
}
|
|
1647
1638
|
|
|
1648
|
-
.lextitle a {
|
|
1649
|
-
margin-top: 0.3em;
|
|
1650
|
-
margin-right: 0.7em;
|
|
1651
|
-
color: var(--global-color-accent-light);
|
|
1652
|
-
font-size: var(--global-font-size-sm);
|
|
1653
|
-
}
|
|
1654
|
-
|
|
1655
1639
|
.lextitle.link {
|
|
1656
1640
|
color: var(--global-text-secondary);
|
|
1657
1641
|
text-decoration: none;
|
|
@@ -1710,7 +1694,7 @@ a svg, svg path {
|
|
|
1710
1694
|
border-color: var(--border-color);
|
|
1711
1695
|
}
|
|
1712
1696
|
|
|
1713
|
-
.lexbutton:hover:not(.outline) {
|
|
1697
|
+
.lexbutton:hover:not(.outline, .bg-none) {
|
|
1714
1698
|
background-color: color-mix(in srgb, var(--button-color), #000 9%) !important;
|
|
1715
1699
|
}
|
|
1716
1700
|
|
|
@@ -2290,6 +2274,7 @@ dialog .lexselect .lexselectoptions {
|
|
|
2290
2274
|
display: flex;
|
|
2291
2275
|
position: relative;
|
|
2292
2276
|
width: 100%;
|
|
2277
|
+
flex: 1 0 0%;
|
|
2293
2278
|
border-radius: 4px;
|
|
2294
2279
|
border: 2px solid var(--global-color-transparent);
|
|
2295
2280
|
margin-right: 2px;
|
|
@@ -2297,23 +2282,16 @@ dialog .lexselect .lexselectoptions {
|
|
|
2297
2282
|
transition: 0.1s linear;
|
|
2298
2283
|
}
|
|
2299
2284
|
|
|
2300
|
-
.lexvector a.fa-lock {
|
|
2301
|
-
min-width: 12px;
|
|
2302
|
-
}
|
|
2303
|
-
|
|
2304
2285
|
.lexvector .vecbox:hover {
|
|
2305
2286
|
background-color: color-mix(in srgb, var(--global-color-tertiary), #000 7%);
|
|
2306
2287
|
}
|
|
2307
2288
|
|
|
2308
2289
|
.lexwidget .numberbox .drag-icon,
|
|
2309
2290
|
.lexwidget .vecbox .drag-icon {
|
|
2310
|
-
position: absolute;
|
|
2311
|
-
width: 2px;
|
|
2312
|
-
right: 1em;
|
|
2313
|
-
top: 25%;
|
|
2314
2291
|
font-size: var(--global-font-size-sm);
|
|
2315
2292
|
color: var(--global-text-secondary);
|
|
2316
2293
|
z-index: 11;
|
|
2294
|
+
margin-right: 0.25rem
|
|
2317
2295
|
}
|
|
2318
2296
|
|
|
2319
2297
|
.lexvector .vecbox:has(input:focus) {
|
|
@@ -2381,7 +2359,8 @@ input[type=number] {
|
|
|
2381
2359
|
|
|
2382
2360
|
.lexwidget .numberbox {
|
|
2383
2361
|
width: 100%;
|
|
2384
|
-
display:
|
|
2362
|
+
display: flex;
|
|
2363
|
+
flex-direction: column;
|
|
2385
2364
|
background-color: var(--global-color-tertiary);
|
|
2386
2365
|
border: 1px solid var(--global-color-transparent);
|
|
2387
2366
|
border-radius: 6px;
|
|
@@ -2463,10 +2442,6 @@ input[type=number] {
|
|
|
2463
2442
|
cursor: pointer;
|
|
2464
2443
|
}
|
|
2465
2444
|
|
|
2466
|
-
.lexwidget .numberbox .drag-icon {
|
|
2467
|
-
right: 0.8em;
|
|
2468
|
-
}
|
|
2469
|
-
|
|
2470
2445
|
/* Range Widget */
|
|
2471
2446
|
|
|
2472
2447
|
.lexrangeslider {
|
|
@@ -2571,21 +2546,7 @@ input[type=number] {
|
|
|
2571
2546
|
top: 50%;
|
|
2572
2547
|
}
|
|
2573
2548
|
|
|
2574
|
-
/*
|
|
2575
|
-
|
|
2576
|
-
.lexwidget .lexsizecross {
|
|
2577
|
-
color: var(--global-color-accent);
|
|
2578
|
-
font-weight: 800;
|
|
2579
|
-
}
|
|
2580
|
-
|
|
2581
|
-
.lexwidget .lexunit {
|
|
2582
|
-
-webkit-user-select: none;
|
|
2583
|
-
-moz-user-select: none;
|
|
2584
|
-
-ms-user-select: none;
|
|
2585
|
-
user-select: none;
|
|
2586
|
-
}
|
|
2587
|
-
|
|
2588
|
-
/* Size Widget */
|
|
2549
|
+
/* OTP Widget */
|
|
2589
2550
|
|
|
2590
2551
|
.lexotpslot.active {
|
|
2591
2552
|
border: 1px solid var(--global-text-primary);
|
|
@@ -2638,12 +2599,15 @@ input[type=number] {
|
|
|
2638
2599
|
border-right: 1px solid #a2a5c36a;
|
|
2639
2600
|
justify-items: center;
|
|
2640
2601
|
min-width: 32px;
|
|
2602
|
+
display: flex;
|
|
2603
|
+
flex-direction: column;
|
|
2604
|
+
gap: 0.5rem;
|
|
2641
2605
|
}
|
|
2642
2606
|
|
|
2643
2607
|
.lextabscontainer.horizontal .tabs {
|
|
2644
2608
|
border-right: none;
|
|
2645
2609
|
border-bottom: 1px solid #a2a5c36a;
|
|
2646
|
-
|
|
2610
|
+
flex-direction: row;
|
|
2647
2611
|
}
|
|
2648
2612
|
|
|
2649
2613
|
.lextabscontainer .widgets {
|
|
@@ -2653,39 +2617,12 @@ input[type=number] {
|
|
|
2653
2617
|
|
|
2654
2618
|
.lextabscontainer .tabs .lextab {
|
|
2655
2619
|
padding: 4px;
|
|
2656
|
-
margin-bottom: 10px;
|
|
2657
2620
|
border-radius: 4px;
|
|
2658
2621
|
color: #8184a264;
|
|
2659
2622
|
cursor: pointer;
|
|
2660
|
-
margin-right: 4px;
|
|
2661
2623
|
text-align: center;
|
|
2662
2624
|
}
|
|
2663
2625
|
|
|
2664
|
-
.lextabscontainer.horizontal .tabs .lextab {
|
|
2665
|
-
margin-bottom: 0px;
|
|
2666
|
-
margin-right: 10px;
|
|
2667
|
-
}
|
|
2668
|
-
|
|
2669
|
-
.lextabscontainer.horizontal .tabs .lextab a.withname {
|
|
2670
|
-
margin-left: 6px;
|
|
2671
|
-
}
|
|
2672
|
-
|
|
2673
|
-
.lextabscontainer .tabs .lextab:hover {
|
|
2674
|
-
color: var(--global-text-primary);
|
|
2675
|
-
}
|
|
2676
|
-
|
|
2677
|
-
.lextabscontainer .tabs .lextab.last {
|
|
2678
|
-
margin-right: 4px;
|
|
2679
|
-
}
|
|
2680
|
-
|
|
2681
|
-
.lextabscontainer .tabs .lextab.selected {
|
|
2682
|
-
color: var(--global-text-primary);
|
|
2683
|
-
}
|
|
2684
|
-
|
|
2685
|
-
.lextabscontainer .tabs .lextab:active {
|
|
2686
|
-
color: var(--global-text-secondary);
|
|
2687
|
-
}
|
|
2688
|
-
|
|
2689
2626
|
/* Data Tree Widget */
|
|
2690
2627
|
|
|
2691
2628
|
.lextree {
|
|
@@ -2698,11 +2635,11 @@ input[type=number] {
|
|
|
2698
2635
|
font-size: var(--global-font-size);
|
|
2699
2636
|
}
|
|
2700
2637
|
|
|
2701
|
-
.lextree .
|
|
2638
|
+
.lextree .lexnodetreefilter {
|
|
2702
2639
|
background: none !important;
|
|
2703
2640
|
}
|
|
2704
2641
|
|
|
2705
|
-
.lextree .
|
|
2642
|
+
.lextree .lexnodetreefilter:hover {
|
|
2706
2643
|
background: none;
|
|
2707
2644
|
}
|
|
2708
2645
|
|
|
@@ -2746,6 +2683,7 @@ input[type=number] {
|
|
|
2746
2683
|
user-select: none;
|
|
2747
2684
|
font-size: var(--global-font-size-lg);
|
|
2748
2685
|
font-weight: 500;
|
|
2686
|
+
white-space: nowrap;
|
|
2749
2687
|
}
|
|
2750
2688
|
|
|
2751
2689
|
.lextree ul {
|
|
@@ -2804,18 +2742,10 @@ input[type=number] {
|
|
|
2804
2742
|
}
|
|
2805
2743
|
|
|
2806
2744
|
.lextree .lextreeitem img {
|
|
2807
|
-
width:
|
|
2808
|
-
height:
|
|
2809
|
-
margin-right:
|
|
2745
|
+
width: 16px;
|
|
2746
|
+
height: 16px;
|
|
2747
|
+
margin-right: 0.5rem;
|
|
2810
2748
|
vertical-align: middle;
|
|
2811
|
-
margin-top: -1px;
|
|
2812
|
-
}
|
|
2813
|
-
|
|
2814
|
-
.lextree .lextreeitem .tree-item-icon {
|
|
2815
|
-
width: 12px;
|
|
2816
|
-
height: 12px;
|
|
2817
|
-
margin-right: 6px;
|
|
2818
|
-
font-size: var(--global-font-size-sm);
|
|
2819
2749
|
}
|
|
2820
2750
|
|
|
2821
2751
|
.lextree .lextreeitem.draggingover {
|
|
@@ -2840,10 +2770,6 @@ input[type=number] {
|
|
|
2840
2770
|
margin-right: 6px;
|
|
2841
2771
|
}
|
|
2842
2772
|
|
|
2843
|
-
.lextree .lextreeitem .lexicon {
|
|
2844
|
-
font-size: var(--global-font-size-sm);
|
|
2845
|
-
}
|
|
2846
|
-
|
|
2847
2773
|
/* File Input */
|
|
2848
2774
|
|
|
2849
2775
|
.lexfileinput::file-selector-button {
|
|
@@ -3029,151 +2955,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3029
2955
|
margin-top: 0.05em;
|
|
3030
2956
|
}
|
|
3031
2957
|
|
|
3032
|
-
.lexmenubox {
|
|
3033
|
-
position: fixed;
|
|
3034
|
-
z-index: 1001;
|
|
3035
|
-
background-color: #111111f3;
|
|
3036
|
-
border: 1px solid #aaaaaa48;
|
|
3037
|
-
border-radius: 6px;
|
|
3038
|
-
transition: all 0.15s cubic-bezier(.42,.97,.52,1.19);
|
|
3039
|
-
transform: translate(-2px, -10px);
|
|
3040
|
-
opacity: 0;
|
|
3041
|
-
}
|
|
3042
|
-
|
|
3043
|
-
:root[data-theme="light"] .lexmenubox {
|
|
3044
|
-
background-color: #fffffff3;
|
|
3045
|
-
box-shadow: 0px 6px 7px -3px #a7a7a7b7 !important;
|
|
3046
|
-
}
|
|
3047
|
-
|
|
3048
|
-
.lexmenubox[data-submenu] {
|
|
3049
|
-
transform: translate(-10px, -2px);
|
|
3050
|
-
}
|
|
3051
|
-
|
|
3052
|
-
.lexmenubox:before {
|
|
3053
|
-
content: "";
|
|
3054
|
-
position: absolute;
|
|
3055
|
-
width: 100%;
|
|
3056
|
-
height: 100%;
|
|
3057
|
-
top: 0;
|
|
3058
|
-
left: 0;
|
|
3059
|
-
border-radius: 6px;
|
|
3060
|
-
-webkit-backdrop-filter: blur(10px);
|
|
3061
|
-
backdrop-filter: blur(10px);
|
|
3062
|
-
z-index: -1;
|
|
3063
|
-
}
|
|
3064
|
-
|
|
3065
|
-
.lexmenubox[data-open]{
|
|
3066
|
-
transform: translate(0, 0);
|
|
3067
|
-
opacity: 1;
|
|
3068
|
-
}
|
|
3069
|
-
|
|
3070
|
-
.lexmenubox:focus {
|
|
3071
|
-
outline: none;
|
|
3072
|
-
}
|
|
3073
|
-
|
|
3074
|
-
.lexmenubox .lexmenuboxentry {
|
|
3075
|
-
font-size: var(--global-font-size);
|
|
3076
|
-
width: 100%;
|
|
3077
|
-
color: var(--global-text-primary);
|
|
3078
|
-
padding: 6px;
|
|
3079
|
-
padding-left: 8px;
|
|
3080
|
-
padding-right: 0px;
|
|
3081
|
-
cursor: pointer;
|
|
3082
|
-
-webkit-user-select: none;
|
|
3083
|
-
-moz-user-select: none;
|
|
3084
|
-
-ms-user-select: none;
|
|
3085
|
-
user-select: none;
|
|
3086
|
-
/* This makes properties like top, left to be relative to parents */
|
|
3087
|
-
transform: translateZ(0);
|
|
3088
|
-
-webkit-transform: translateZ(0);
|
|
3089
|
-
-moz-transform: translateZ(0);
|
|
3090
|
-
display: flex;
|
|
3091
|
-
flex-direction: row;
|
|
3092
|
-
align-content: center;
|
|
3093
|
-
justify-content: space-between;
|
|
3094
|
-
position: relative;
|
|
3095
|
-
}
|
|
3096
|
-
|
|
3097
|
-
.lexmenubox .lexmenuboxentry.disabled {
|
|
3098
|
-
color: var(--global-text-tertiary);
|
|
3099
|
-
cursor: default;
|
|
3100
|
-
}
|
|
3101
|
-
|
|
3102
|
-
.lexmenubox .lexmenuboxentry:first-child {
|
|
3103
|
-
border-top-right-radius: 5px;
|
|
3104
|
-
border-top-left-radius: 5px;
|
|
3105
|
-
}
|
|
3106
|
-
|
|
3107
|
-
.lexmenubox .lexmenuboxentry:last-child {
|
|
3108
|
-
border-bottom-right-radius: 5px;
|
|
3109
|
-
border-bottom-left-radius: 5px;
|
|
3110
|
-
}
|
|
3111
|
-
|
|
3112
|
-
.lexmenubox .lexmenuboxentrycontainer {
|
|
3113
|
-
display: flex;
|
|
3114
|
-
flex-direction: row;
|
|
3115
|
-
}
|
|
3116
|
-
|
|
3117
|
-
.lexmenubox .lexmenuboxentry .lexentryname {
|
|
3118
|
-
margin-right: 32px;
|
|
3119
|
-
}
|
|
3120
|
-
|
|
3121
|
-
.lexmenubox .lexmenuboxentry.noicon .lexentryname {
|
|
3122
|
-
margin-left: 10px;
|
|
3123
|
-
}
|
|
3124
|
-
|
|
3125
|
-
/* normal icons */
|
|
3126
|
-
.lexmenubox .lexmenuboxentry a {
|
|
3127
|
-
font-size: var(--global-font-size-sm);
|
|
3128
|
-
float: left;
|
|
3129
|
-
margin-right: 13px;
|
|
3130
|
-
margin-left: 9px;
|
|
3131
|
-
align-content: center;
|
|
3132
|
-
min-width: 10px;
|
|
3133
|
-
}
|
|
3134
|
-
|
|
3135
|
-
/* submenu specified arrow */
|
|
3136
|
-
.lexmenubox .lexmenuboxentry a.fa-xs {
|
|
3137
|
-
float: right;
|
|
3138
|
-
margin-right: 8px;
|
|
3139
|
-
}
|
|
3140
|
-
|
|
3141
|
-
.lexmenubox .lexmenuboxentry:not(.disabled):hover {
|
|
3142
|
-
background-color: var(--global-color-accent);
|
|
3143
|
-
color: #f5f5f5;
|
|
3144
|
-
}
|
|
3145
|
-
|
|
3146
|
-
.lexmenubox .lexmenuboxentry:active {
|
|
3147
|
-
color: var(--global-text-secondary);
|
|
3148
|
-
}
|
|
3149
|
-
|
|
3150
|
-
.lexmenubox .lexmenuboxentry input {
|
|
3151
|
-
float: left;
|
|
3152
|
-
margin-right: 28px;
|
|
3153
|
-
margin-left: 5px;
|
|
3154
|
-
}
|
|
3155
|
-
|
|
3156
|
-
.lexmenubox .lexmenuboxentry:hover input::after {
|
|
3157
|
-
border-color: #f5f5f5;
|
|
3158
|
-
}
|
|
3159
|
-
|
|
3160
|
-
.lexmenubox .lexseparator {
|
|
3161
|
-
margin: 2px 0 2px;
|
|
3162
|
-
width: 100%;
|
|
3163
|
-
border-color: var(--global-text-tertiary);
|
|
3164
|
-
opacity: 0.25;
|
|
3165
|
-
}
|
|
3166
|
-
|
|
3167
|
-
.lexmenubox .lexentryshort {
|
|
3168
|
-
font-size: var(--global-font-size-xs);
|
|
3169
|
-
font-weight: bold;
|
|
3170
|
-
text-align: right;
|
|
3171
|
-
float: right;
|
|
3172
|
-
align-content: center;
|
|
3173
|
-
color: var(--global-text-tertiary);
|
|
3174
|
-
margin-right: 12px;
|
|
3175
|
-
}
|
|
3176
|
-
|
|
3177
2958
|
.lexmenubar .lexmenubuttons {
|
|
3178
2959
|
display: inline-flex;
|
|
3179
2960
|
background-color: var(--global-color-secondary);
|
|
@@ -3265,6 +3046,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3265
3046
|
padding: 4px;
|
|
3266
3047
|
padding-inline: 8px;
|
|
3267
3048
|
display: flex;
|
|
3049
|
+
gap: 0.5rem;
|
|
3268
3050
|
cursor: pointer;
|
|
3269
3051
|
-webkit-user-select: none;
|
|
3270
3052
|
-moz-user-select: none;
|
|
@@ -3456,7 +3238,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3456
3238
|
}
|
|
3457
3239
|
|
|
3458
3240
|
.lexsidebar .lexsidebarentry.selected svg path {
|
|
3459
|
-
|
|
3241
|
+
color: #f4f4f4;
|
|
3460
3242
|
}
|
|
3461
3243
|
|
|
3462
3244
|
.lexsidebar .lexsidebarentry:active {
|
|
@@ -3584,7 +3366,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3584
3366
|
}
|
|
3585
3367
|
|
|
3586
3368
|
.lexsidebar.collapsing .lexsidebarheader svg path {
|
|
3587
|
-
|
|
3369
|
+
color: #f4f4f4;
|
|
3588
3370
|
}
|
|
3589
3371
|
|
|
3590
3372
|
.lexsidebar .lexsidebarfooter:active, .lexsidebar .lexsidebarheader:active {
|
|
@@ -3666,7 +3448,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3666
3448
|
height: auto !important;
|
|
3667
3449
|
justify-content: start;
|
|
3668
3450
|
gap: 0.35em;
|
|
3669
|
-
z-index:
|
|
3451
|
+
z-index: 95;
|
|
3670
3452
|
background-color: var(--global-color-secondary);
|
|
3671
3453
|
margin: 8px;
|
|
3672
3454
|
padding: 0.25em;
|
|
@@ -3876,6 +3658,10 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3876
3658
|
transition-timing-function: ease-out;
|
|
3877
3659
|
}
|
|
3878
3660
|
|
|
3661
|
+
.lexareatabscontainer:not(.lexcodeeditor) > .lexarea.origin {
|
|
3662
|
+
padding-block: 0.25rem;
|
|
3663
|
+
}
|
|
3664
|
+
|
|
3879
3665
|
.lexareatabscontent.folded {
|
|
3880
3666
|
max-height: 0px;
|
|
3881
3667
|
}
|
|
@@ -4009,13 +3795,12 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
4009
3795
|
color: var(--global-text-secondary);
|
|
4010
3796
|
font-size: var(--global-font-size);
|
|
4011
3797
|
border-radius: 4px;
|
|
4012
|
-
padding-
|
|
4013
|
-
|
|
4014
|
-
margin-top: 1px;
|
|
4015
|
-
margin-bottom: 1px;
|
|
3798
|
+
padding-inline: 4px;
|
|
3799
|
+
margin-block: 1px;
|
|
4016
3800
|
line-height: 22px;
|
|
4017
3801
|
align-content: center;
|
|
4018
|
-
display:
|
|
3802
|
+
display: flex;
|
|
3803
|
+
flex-direction: row;
|
|
4019
3804
|
-webkit-user-select: none;
|
|
4020
3805
|
-moz-user-select: none;
|
|
4021
3806
|
-ms-user-select: none;
|
|
@@ -4069,7 +3854,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
4069
3854
|
|
|
4070
3855
|
.lexarrayitems {
|
|
4071
3856
|
width: 100%;
|
|
4072
|
-
padding:
|
|
3857
|
+
padding: 2px;
|
|
4073
3858
|
color: var(--global-text-secondary);
|
|
4074
3859
|
font-size: var(--global-font-size);
|
|
4075
3860
|
margin-top: -1px;
|
|
@@ -4077,7 +3862,11 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
4077
3862
|
}
|
|
4078
3863
|
|
|
4079
3864
|
.lexarrayitems .lexwidgetname {
|
|
4080
|
-
color: var(--global-text-
|
|
3865
|
+
color: var(--global-text-tertiary);
|
|
3866
|
+
font-size: var(--global-font-size-sm);
|
|
3867
|
+
justify-content: center;
|
|
3868
|
+
margin-right: 0.4rem;
|
|
3869
|
+
font-weight: 600;
|
|
4081
3870
|
}
|
|
4082
3871
|
|
|
4083
3872
|
/* Tags Widget */
|
|
@@ -4160,12 +3949,12 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
4160
3949
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
4161
3950
|
}
|
|
4162
3951
|
|
|
4163
|
-
.lextable svg
|
|
4164
|
-
|
|
3952
|
+
.lextable svg {
|
|
3953
|
+
color: var(--global-text-tertiary);
|
|
4165
3954
|
}
|
|
4166
3955
|
|
|
4167
3956
|
.lextable svg.success, .lextable svg.success path {
|
|
4168
|
-
|
|
3957
|
+
color: #42d065 !important;
|
|
4169
3958
|
}
|
|
4170
3959
|
|
|
4171
3960
|
.lextable thead {
|
|
@@ -4851,6 +4640,7 @@ ul.lexassetscontent {
|
|
|
4851
4640
|
.lexassetscontent li .lexassettitle {
|
|
4852
4641
|
position: absolute;
|
|
4853
4642
|
width: 100%;
|
|
4643
|
+
height: 24px;
|
|
4854
4644
|
bottom: 0px;
|
|
4855
4645
|
-webkit-text-size-adjust: 100%;
|
|
4856
4646
|
font-size: var(--global-font-size);
|
|
@@ -4859,12 +4649,11 @@ ul.lexassetscontent {
|
|
|
4859
4649
|
text-align: center;
|
|
4860
4650
|
box-sizing: border-box;
|
|
4861
4651
|
display: block;
|
|
4862
|
-
height: 20px;
|
|
4863
4652
|
padding: 0.1em;
|
|
4864
|
-
padding-top: 0.15em;
|
|
4865
4653
|
overflow: hidden;
|
|
4866
4654
|
text-overflow: ellipsis;
|
|
4867
4655
|
white-space: nowrap;
|
|
4656
|
+
align-content: center;
|
|
4868
4657
|
background-color: var(--global-intense-background);
|
|
4869
4658
|
transition: all 0.1s;
|
|
4870
4659
|
z-index: 1;
|
|
@@ -4981,8 +4770,10 @@ ul.lexassetscontent {
|
|
|
4981
4770
|
margin: 0px !important;
|
|
4982
4771
|
border: 1px solid #91909036;
|
|
4983
4772
|
border-right: none;
|
|
4773
|
+
border-bottom: none;
|
|
4984
4774
|
background-color: var(--global-color-primary) !important;
|
|
4985
4775
|
transition: none;
|
|
4776
|
+
display: flex !important;
|
|
4986
4777
|
}
|
|
4987
4778
|
|
|
4988
4779
|
.codebasearea .lexareatab:hover {
|
|
@@ -5043,7 +4834,7 @@ ul.lexassetscontent {
|
|
|
5043
4834
|
}
|
|
5044
4835
|
|
|
5045
4836
|
.lexcodetabinfo {
|
|
5046
|
-
background-color: light-dark(var(--global-color-
|
|
4837
|
+
background-color: light-dark(var(--global-color-secondary), var(--global-medium-background));
|
|
5047
4838
|
position: absolute;
|
|
5048
4839
|
z-index: 3;
|
|
5049
4840
|
bottom: 0px;
|
|
@@ -5058,7 +4849,7 @@ ul.lexassetscontent {
|
|
|
5058
4849
|
.lexcodegutter {
|
|
5059
4850
|
width: 48px;
|
|
5060
4851
|
height: calc(100% - 65px);
|
|
5061
|
-
background-color: light-dark(var(--global-color-
|
|
4852
|
+
background-color: light-dark(var(--global-color-secondary), var(--global-medium-background));
|
|
5062
4853
|
margin-top: 31px;
|
|
5063
4854
|
overflow: hidden;
|
|
5064
4855
|
position: absolute;
|
|
@@ -5066,8 +4857,8 @@ ul.lexassetscontent {
|
|
|
5066
4857
|
}
|
|
5067
4858
|
|
|
5068
4859
|
.lexcodeeditor .codetabsarea {
|
|
5069
|
-
height: calc(100% -
|
|
5070
|
-
background-color: light-dark(var(--global-color-
|
|
4860
|
+
height: calc(100% - 76px) !important;
|
|
4861
|
+
background-color: light-dark(var(--global-color-secondary), var(--global-medium-background));
|
|
5071
4862
|
overflow: scroll;
|
|
5072
4863
|
}
|
|
5073
4864
|
|
|
@@ -5243,10 +5034,14 @@ ul.lexassetscontent {
|
|
|
5243
5034
|
.lexcodescrollbar.horizontal {
|
|
5244
5035
|
width: calc(100% - 58px);
|
|
5245
5036
|
height: 10px;
|
|
5246
|
-
bottom:
|
|
5037
|
+
bottom: 47px;
|
|
5247
5038
|
right: 10px;
|
|
5248
5039
|
}
|
|
5249
5040
|
|
|
5041
|
+
.codebasearea:has(.codetabsarea.no-code-info) .lexcodescrollbar.horizontal {
|
|
5042
|
+
bottom: 0px;
|
|
5043
|
+
}
|
|
5044
|
+
|
|
5250
5045
|
.lexcodescrollbar.scrollbar-unused {
|
|
5251
5046
|
display: none;
|
|
5252
5047
|
}
|
|
@@ -5357,13 +5152,8 @@ ul.lexassetscontent {
|
|
|
5357
5152
|
cursor: default;
|
|
5358
5153
|
height: 22px;
|
|
5359
5154
|
padding-left: 6px;
|
|
5360
|
-
|
|
5361
|
-
|
|
5362
|
-
.lexcodeeditor .autocomplete pre a {
|
|
5363
|
-
font-size: 11px;
|
|
5364
|
-
margin-top: 4px;
|
|
5365
|
-
margin-right: 6px;
|
|
5366
|
-
margin-left: 2px;
|
|
5155
|
+
display: flex;
|
|
5156
|
+
align-items: center;
|
|
5367
5157
|
}
|
|
5368
5158
|
|
|
5369
5159
|
.lexcodeeditor .autocomplete pre:hover {
|
|
@@ -5487,7 +5277,7 @@ ul.lexassetscontent {
|
|
|
5487
5277
|
.cm-bln.markdown { color: #a1d2f0; } /* builtin */
|
|
5488
5278
|
|
|
5489
5279
|
:root[data-theme="light"] .lexcodeeditor pre.active-line {
|
|
5490
|
-
background-color: #
|
|
5280
|
+
background-color: #e4e0e0ab;
|
|
5491
5281
|
}
|
|
5492
5282
|
|
|
5493
5283
|
:root[data-theme="light"] .lexcodeeditor.disabled pre.active-line {
|
|
@@ -5621,7 +5411,6 @@ ul.lexassetscontent {
|
|
|
5621
5411
|
left: 0;
|
|
5622
5412
|
bottom: 0;
|
|
5623
5413
|
right: 0;
|
|
5624
|
-
stroke: unset;
|
|
5625
5414
|
}
|
|
5626
5415
|
|
|
5627
5416
|
.lexgraph .box-selection-svg {
|
|
@@ -6090,10 +5879,13 @@ ul.lexassetscontent {
|
|
|
6090
5879
|
.hover\:fg-error:hover { color: var(--global-color-error) !important }
|
|
6091
5880
|
.hover\:fg-warning:hover { color: var(--global-color-warning) !important }
|
|
6092
5881
|
|
|
5882
|
+
.stroke-none { stroke: none }
|
|
5883
|
+
|
|
6093
5884
|
/* Layout */
|
|
6094
5885
|
|
|
6095
5886
|
.flex { display: flex }
|
|
6096
5887
|
.inline-flex { display: inline-flex }
|
|
5888
|
+
.flex-fill { flex: 1 0 0% }
|
|
6097
5889
|
.grid { display: grid }
|
|
6098
5890
|
.block { display: block }
|
|
6099
5891
|
.inline-block { display: inline-block }
|
|
@@ -6386,6 +6178,7 @@ ul.lexassetscontent {
|
|
|
6386
6178
|
.left-0 { left: 0 }
|
|
6387
6179
|
|
|
6388
6180
|
.z-0 { z-index: 0 }
|
|
6181
|
+
.z-1 { z-index: 1 }
|
|
6389
6182
|
.z-10 { z-index: 10 }
|
|
6390
6183
|
.z-50 { z-index: 50 }
|
|
6391
6184
|
.z-100 { z-index: 100 }
|