lexgui 0.5.11 → 0.6.1
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 +185 -395
- package/build/lexgui.js +966 -1030
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +966 -1030
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +41 -1
- package/demo.js +103 -88
- 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);
|
|
@@ -1621,7 +1609,7 @@ a svg, svg path {
|
|
|
1621
1609
|
/* Title Widget */
|
|
1622
1610
|
|
|
1623
1611
|
.lextitle {
|
|
1624
|
-
width: fit-content;
|
|
1612
|
+
width: fit-content !important;
|
|
1625
1613
|
width: -moz-fit-content;
|
|
1626
1614
|
color: var(--global-text-secondary);
|
|
1627
1615
|
font-weight: 600;
|
|
@@ -1648,13 +1636,6 @@ a svg, svg path {
|
|
|
1648
1636
|
flex: none;
|
|
1649
1637
|
}
|
|
1650
1638
|
|
|
1651
|
-
.lextitle a {
|
|
1652
|
-
margin-top: 0.3em;
|
|
1653
|
-
margin-right: 0.7em;
|
|
1654
|
-
color: var(--global-color-accent-light);
|
|
1655
|
-
font-size: var(--global-font-size-sm);
|
|
1656
|
-
}
|
|
1657
|
-
|
|
1658
1639
|
.lextitle.link {
|
|
1659
1640
|
color: var(--global-text-secondary);
|
|
1660
1641
|
text-decoration: none;
|
|
@@ -1713,7 +1694,7 @@ a svg, svg path {
|
|
|
1713
1694
|
border-color: var(--border-color);
|
|
1714
1695
|
}
|
|
1715
1696
|
|
|
1716
|
-
.lexbutton:hover:not(.outline) {
|
|
1697
|
+
.lexbutton:hover:not(.outline, .bg-none) {
|
|
1717
1698
|
background-color: color-mix(in srgb, var(--button-color), #000 9%) !important;
|
|
1718
1699
|
}
|
|
1719
1700
|
|
|
@@ -2293,6 +2274,7 @@ dialog .lexselect .lexselectoptions {
|
|
|
2293
2274
|
display: flex;
|
|
2294
2275
|
position: relative;
|
|
2295
2276
|
width: 100%;
|
|
2277
|
+
flex: 1 0 0%;
|
|
2296
2278
|
border-radius: 4px;
|
|
2297
2279
|
border: 2px solid var(--global-color-transparent);
|
|
2298
2280
|
margin-right: 2px;
|
|
@@ -2300,23 +2282,16 @@ dialog .lexselect .lexselectoptions {
|
|
|
2300
2282
|
transition: 0.1s linear;
|
|
2301
2283
|
}
|
|
2302
2284
|
|
|
2303
|
-
.lexvector a.fa-lock {
|
|
2304
|
-
min-width: 12px;
|
|
2305
|
-
}
|
|
2306
|
-
|
|
2307
2285
|
.lexvector .vecbox:hover {
|
|
2308
2286
|
background-color: color-mix(in srgb, var(--global-color-tertiary), #000 7%);
|
|
2309
2287
|
}
|
|
2310
2288
|
|
|
2311
2289
|
.lexwidget .numberbox .drag-icon,
|
|
2312
2290
|
.lexwidget .vecbox .drag-icon {
|
|
2313
|
-
position: absolute;
|
|
2314
|
-
width: 2px;
|
|
2315
|
-
right: 1em;
|
|
2316
|
-
top: 25%;
|
|
2317
2291
|
font-size: var(--global-font-size-sm);
|
|
2318
2292
|
color: var(--global-text-secondary);
|
|
2319
2293
|
z-index: 11;
|
|
2294
|
+
margin-right: 0.25rem
|
|
2320
2295
|
}
|
|
2321
2296
|
|
|
2322
2297
|
.lexvector .vecbox:has(input:focus) {
|
|
@@ -2384,7 +2359,8 @@ input[type=number] {
|
|
|
2384
2359
|
|
|
2385
2360
|
.lexwidget .numberbox {
|
|
2386
2361
|
width: 100%;
|
|
2387
|
-
display:
|
|
2362
|
+
display: flex;
|
|
2363
|
+
flex-direction: column;
|
|
2388
2364
|
background-color: var(--global-color-tertiary);
|
|
2389
2365
|
border: 1px solid var(--global-color-transparent);
|
|
2390
2366
|
border-radius: 6px;
|
|
@@ -2466,10 +2442,6 @@ input[type=number] {
|
|
|
2466
2442
|
cursor: pointer;
|
|
2467
2443
|
}
|
|
2468
2444
|
|
|
2469
|
-
.lexwidget .numberbox .drag-icon {
|
|
2470
|
-
right: 0.8em;
|
|
2471
|
-
}
|
|
2472
|
-
|
|
2473
2445
|
/* Range Widget */
|
|
2474
2446
|
|
|
2475
2447
|
.lexrangeslider {
|
|
@@ -2574,21 +2546,7 @@ input[type=number] {
|
|
|
2574
2546
|
top: 50%;
|
|
2575
2547
|
}
|
|
2576
2548
|
|
|
2577
|
-
/*
|
|
2578
|
-
|
|
2579
|
-
.lexwidget .lexsizecross {
|
|
2580
|
-
color: var(--global-color-accent);
|
|
2581
|
-
font-weight: 800;
|
|
2582
|
-
}
|
|
2583
|
-
|
|
2584
|
-
.lexwidget .lexunit {
|
|
2585
|
-
-webkit-user-select: none;
|
|
2586
|
-
-moz-user-select: none;
|
|
2587
|
-
-ms-user-select: none;
|
|
2588
|
-
user-select: none;
|
|
2589
|
-
}
|
|
2590
|
-
|
|
2591
|
-
/* Size Widget */
|
|
2549
|
+
/* OTP Widget */
|
|
2592
2550
|
|
|
2593
2551
|
.lexotpslot.active {
|
|
2594
2552
|
border: 1px solid var(--global-text-primary);
|
|
@@ -2641,12 +2599,15 @@ input[type=number] {
|
|
|
2641
2599
|
border-right: 1px solid #a2a5c36a;
|
|
2642
2600
|
justify-items: center;
|
|
2643
2601
|
min-width: 32px;
|
|
2602
|
+
display: flex;
|
|
2603
|
+
flex-direction: column;
|
|
2604
|
+
gap: 0.5rem;
|
|
2644
2605
|
}
|
|
2645
2606
|
|
|
2646
2607
|
.lextabscontainer.horizontal .tabs {
|
|
2647
2608
|
border-right: none;
|
|
2648
2609
|
border-bottom: 1px solid #a2a5c36a;
|
|
2649
|
-
|
|
2610
|
+
flex-direction: row;
|
|
2650
2611
|
}
|
|
2651
2612
|
|
|
2652
2613
|
.lextabscontainer .widgets {
|
|
@@ -2656,39 +2617,12 @@ input[type=number] {
|
|
|
2656
2617
|
|
|
2657
2618
|
.lextabscontainer .tabs .lextab {
|
|
2658
2619
|
padding: 4px;
|
|
2659
|
-
margin-bottom: 10px;
|
|
2660
2620
|
border-radius: 4px;
|
|
2661
2621
|
color: #8184a264;
|
|
2662
2622
|
cursor: pointer;
|
|
2663
|
-
margin-right: 4px;
|
|
2664
2623
|
text-align: center;
|
|
2665
2624
|
}
|
|
2666
2625
|
|
|
2667
|
-
.lextabscontainer.horizontal .tabs .lextab {
|
|
2668
|
-
margin-bottom: 0px;
|
|
2669
|
-
margin-right: 10px;
|
|
2670
|
-
}
|
|
2671
|
-
|
|
2672
|
-
.lextabscontainer.horizontal .tabs .lextab a.withname {
|
|
2673
|
-
margin-left: 6px;
|
|
2674
|
-
}
|
|
2675
|
-
|
|
2676
|
-
.lextabscontainer .tabs .lextab:hover {
|
|
2677
|
-
color: var(--global-text-primary);
|
|
2678
|
-
}
|
|
2679
|
-
|
|
2680
|
-
.lextabscontainer .tabs .lextab.last {
|
|
2681
|
-
margin-right: 4px;
|
|
2682
|
-
}
|
|
2683
|
-
|
|
2684
|
-
.lextabscontainer .tabs .lextab.selected {
|
|
2685
|
-
color: var(--global-text-primary);
|
|
2686
|
-
}
|
|
2687
|
-
|
|
2688
|
-
.lextabscontainer .tabs .lextab:active {
|
|
2689
|
-
color: var(--global-text-secondary);
|
|
2690
|
-
}
|
|
2691
|
-
|
|
2692
2626
|
/* Data Tree Widget */
|
|
2693
2627
|
|
|
2694
2628
|
.lextree {
|
|
@@ -2701,11 +2635,11 @@ input[type=number] {
|
|
|
2701
2635
|
font-size: var(--global-font-size);
|
|
2702
2636
|
}
|
|
2703
2637
|
|
|
2704
|
-
.lextree .
|
|
2638
|
+
.lextree .lexnodetreefilter {
|
|
2705
2639
|
background: none !important;
|
|
2706
2640
|
}
|
|
2707
2641
|
|
|
2708
|
-
.lextree .
|
|
2642
|
+
.lextree .lexnodetreefilter:hover {
|
|
2709
2643
|
background: none;
|
|
2710
2644
|
}
|
|
2711
2645
|
|
|
@@ -2749,6 +2683,7 @@ input[type=number] {
|
|
|
2749
2683
|
user-select: none;
|
|
2750
2684
|
font-size: var(--global-font-size-lg);
|
|
2751
2685
|
font-weight: 500;
|
|
2686
|
+
white-space: nowrap;
|
|
2752
2687
|
}
|
|
2753
2688
|
|
|
2754
2689
|
.lextree ul {
|
|
@@ -2807,18 +2742,10 @@ input[type=number] {
|
|
|
2807
2742
|
}
|
|
2808
2743
|
|
|
2809
2744
|
.lextree .lextreeitem img {
|
|
2810
|
-
width:
|
|
2811
|
-
height:
|
|
2812
|
-
margin-right:
|
|
2745
|
+
width: 16px;
|
|
2746
|
+
height: 16px;
|
|
2747
|
+
margin-right: 0.5rem;
|
|
2813
2748
|
vertical-align: middle;
|
|
2814
|
-
margin-top: -1px;
|
|
2815
|
-
}
|
|
2816
|
-
|
|
2817
|
-
.lextree .lextreeitem .tree-item-icon {
|
|
2818
|
-
width: 12px;
|
|
2819
|
-
height: 12px;
|
|
2820
|
-
margin-right: 6px;
|
|
2821
|
-
font-size: var(--global-font-size-sm);
|
|
2822
2749
|
}
|
|
2823
2750
|
|
|
2824
2751
|
.lextree .lextreeitem.draggingover {
|
|
@@ -2843,10 +2770,6 @@ input[type=number] {
|
|
|
2843
2770
|
margin-right: 6px;
|
|
2844
2771
|
}
|
|
2845
2772
|
|
|
2846
|
-
.lextree .lextreeitem .lexicon {
|
|
2847
|
-
font-size: var(--global-font-size-sm);
|
|
2848
|
-
}
|
|
2849
|
-
|
|
2850
2773
|
/* File Input */
|
|
2851
2774
|
|
|
2852
2775
|
.lexfileinput::file-selector-button {
|
|
@@ -3032,151 +2955,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3032
2955
|
margin-top: 0.05em;
|
|
3033
2956
|
}
|
|
3034
2957
|
|
|
3035
|
-
.lexmenubox {
|
|
3036
|
-
position: fixed;
|
|
3037
|
-
z-index: 1001;
|
|
3038
|
-
background-color: #111111f3;
|
|
3039
|
-
border: 1px solid #aaaaaa48;
|
|
3040
|
-
border-radius: 6px;
|
|
3041
|
-
transition: all 0.15s cubic-bezier(.42,.97,.52,1.19);
|
|
3042
|
-
transform: translate(-2px, -10px);
|
|
3043
|
-
opacity: 0;
|
|
3044
|
-
}
|
|
3045
|
-
|
|
3046
|
-
:root[data-theme="light"] .lexmenubox {
|
|
3047
|
-
background-color: #fffffff3;
|
|
3048
|
-
box-shadow: 0px 6px 7px -3px #a7a7a7b7 !important;
|
|
3049
|
-
}
|
|
3050
|
-
|
|
3051
|
-
.lexmenubox[data-submenu] {
|
|
3052
|
-
transform: translate(-10px, -2px);
|
|
3053
|
-
}
|
|
3054
|
-
|
|
3055
|
-
.lexmenubox:before {
|
|
3056
|
-
content: "";
|
|
3057
|
-
position: absolute;
|
|
3058
|
-
width: 100%;
|
|
3059
|
-
height: 100%;
|
|
3060
|
-
top: 0;
|
|
3061
|
-
left: 0;
|
|
3062
|
-
border-radius: 6px;
|
|
3063
|
-
-webkit-backdrop-filter: blur(10px);
|
|
3064
|
-
backdrop-filter: blur(10px);
|
|
3065
|
-
z-index: -1;
|
|
3066
|
-
}
|
|
3067
|
-
|
|
3068
|
-
.lexmenubox[data-open]{
|
|
3069
|
-
transform: translate(0, 0);
|
|
3070
|
-
opacity: 1;
|
|
3071
|
-
}
|
|
3072
|
-
|
|
3073
|
-
.lexmenubox:focus {
|
|
3074
|
-
outline: none;
|
|
3075
|
-
}
|
|
3076
|
-
|
|
3077
|
-
.lexmenubox .lexmenuboxentry {
|
|
3078
|
-
font-size: var(--global-font-size);
|
|
3079
|
-
width: 100%;
|
|
3080
|
-
color: var(--global-text-primary);
|
|
3081
|
-
padding: 6px;
|
|
3082
|
-
padding-left: 8px;
|
|
3083
|
-
padding-right: 0px;
|
|
3084
|
-
cursor: pointer;
|
|
3085
|
-
-webkit-user-select: none;
|
|
3086
|
-
-moz-user-select: none;
|
|
3087
|
-
-ms-user-select: none;
|
|
3088
|
-
user-select: none;
|
|
3089
|
-
/* This makes properties like top, left to be relative to parents */
|
|
3090
|
-
transform: translateZ(0);
|
|
3091
|
-
-webkit-transform: translateZ(0);
|
|
3092
|
-
-moz-transform: translateZ(0);
|
|
3093
|
-
display: flex;
|
|
3094
|
-
flex-direction: row;
|
|
3095
|
-
align-content: center;
|
|
3096
|
-
justify-content: space-between;
|
|
3097
|
-
position: relative;
|
|
3098
|
-
}
|
|
3099
|
-
|
|
3100
|
-
.lexmenubox .lexmenuboxentry.disabled {
|
|
3101
|
-
color: var(--global-text-tertiary);
|
|
3102
|
-
cursor: default;
|
|
3103
|
-
}
|
|
3104
|
-
|
|
3105
|
-
.lexmenubox .lexmenuboxentry:first-child {
|
|
3106
|
-
border-top-right-radius: 5px;
|
|
3107
|
-
border-top-left-radius: 5px;
|
|
3108
|
-
}
|
|
3109
|
-
|
|
3110
|
-
.lexmenubox .lexmenuboxentry:last-child {
|
|
3111
|
-
border-bottom-right-radius: 5px;
|
|
3112
|
-
border-bottom-left-radius: 5px;
|
|
3113
|
-
}
|
|
3114
|
-
|
|
3115
|
-
.lexmenubox .lexmenuboxentrycontainer {
|
|
3116
|
-
display: flex;
|
|
3117
|
-
flex-direction: row;
|
|
3118
|
-
}
|
|
3119
|
-
|
|
3120
|
-
.lexmenubox .lexmenuboxentry .lexentryname {
|
|
3121
|
-
margin-right: 32px;
|
|
3122
|
-
}
|
|
3123
|
-
|
|
3124
|
-
.lexmenubox .lexmenuboxentry.noicon .lexentryname {
|
|
3125
|
-
margin-left: 10px;
|
|
3126
|
-
}
|
|
3127
|
-
|
|
3128
|
-
/* normal icons */
|
|
3129
|
-
.lexmenubox .lexmenuboxentry a {
|
|
3130
|
-
font-size: var(--global-font-size-sm);
|
|
3131
|
-
float: left;
|
|
3132
|
-
margin-right: 13px;
|
|
3133
|
-
margin-left: 9px;
|
|
3134
|
-
align-content: center;
|
|
3135
|
-
min-width: 10px;
|
|
3136
|
-
}
|
|
3137
|
-
|
|
3138
|
-
/* submenu specified arrow */
|
|
3139
|
-
.lexmenubox .lexmenuboxentry a.fa-xs {
|
|
3140
|
-
float: right;
|
|
3141
|
-
margin-right: 8px;
|
|
3142
|
-
}
|
|
3143
|
-
|
|
3144
|
-
.lexmenubox .lexmenuboxentry:not(.disabled):hover {
|
|
3145
|
-
background-color: var(--global-color-accent);
|
|
3146
|
-
color: #f5f5f5;
|
|
3147
|
-
}
|
|
3148
|
-
|
|
3149
|
-
.lexmenubox .lexmenuboxentry:active {
|
|
3150
|
-
color: var(--global-text-secondary);
|
|
3151
|
-
}
|
|
3152
|
-
|
|
3153
|
-
.lexmenubox .lexmenuboxentry input {
|
|
3154
|
-
float: left;
|
|
3155
|
-
margin-right: 28px;
|
|
3156
|
-
margin-left: 5px;
|
|
3157
|
-
}
|
|
3158
|
-
|
|
3159
|
-
.lexmenubox .lexmenuboxentry:hover input::after {
|
|
3160
|
-
border-color: #f5f5f5;
|
|
3161
|
-
}
|
|
3162
|
-
|
|
3163
|
-
.lexmenubox .lexseparator {
|
|
3164
|
-
margin: 2px 0 2px;
|
|
3165
|
-
width: 100%;
|
|
3166
|
-
border-color: var(--global-text-tertiary);
|
|
3167
|
-
opacity: 0.25;
|
|
3168
|
-
}
|
|
3169
|
-
|
|
3170
|
-
.lexmenubox .lexentryshort {
|
|
3171
|
-
font-size: var(--global-font-size-xs);
|
|
3172
|
-
font-weight: bold;
|
|
3173
|
-
text-align: right;
|
|
3174
|
-
float: right;
|
|
3175
|
-
align-content: center;
|
|
3176
|
-
color: var(--global-text-tertiary);
|
|
3177
|
-
margin-right: 12px;
|
|
3178
|
-
}
|
|
3179
|
-
|
|
3180
2958
|
.lexmenubar .lexmenubuttons {
|
|
3181
2959
|
display: inline-flex;
|
|
3182
2960
|
background-color: var(--global-color-secondary);
|
|
@@ -3268,6 +3046,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3268
3046
|
padding: 4px;
|
|
3269
3047
|
padding-inline: 8px;
|
|
3270
3048
|
display: flex;
|
|
3049
|
+
gap: 0.5rem;
|
|
3271
3050
|
cursor: pointer;
|
|
3272
3051
|
-webkit-user-select: none;
|
|
3273
3052
|
-moz-user-select: none;
|
|
@@ -3459,7 +3238,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3459
3238
|
}
|
|
3460
3239
|
|
|
3461
3240
|
.lexsidebar .lexsidebarentry.selected svg path {
|
|
3462
|
-
|
|
3241
|
+
color: #f4f4f4;
|
|
3463
3242
|
}
|
|
3464
3243
|
|
|
3465
3244
|
.lexsidebar .lexsidebarentry:active {
|
|
@@ -3587,7 +3366,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3587
3366
|
}
|
|
3588
3367
|
|
|
3589
3368
|
.lexsidebar.collapsing .lexsidebarheader svg path {
|
|
3590
|
-
|
|
3369
|
+
color: #f4f4f4;
|
|
3591
3370
|
}
|
|
3592
3371
|
|
|
3593
3372
|
.lexsidebar .lexsidebarfooter:active, .lexsidebar .lexsidebarheader:active {
|
|
@@ -3669,7 +3448,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3669
3448
|
height: auto !important;
|
|
3670
3449
|
justify-content: start;
|
|
3671
3450
|
gap: 0.35em;
|
|
3672
|
-
z-index:
|
|
3451
|
+
z-index: 95;
|
|
3673
3452
|
background-color: var(--global-color-secondary);
|
|
3674
3453
|
margin: 8px;
|
|
3675
3454
|
padding: 0.25em;
|
|
@@ -3879,6 +3658,10 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
3879
3658
|
transition-timing-function: ease-out;
|
|
3880
3659
|
}
|
|
3881
3660
|
|
|
3661
|
+
.lexareatabscontainer:not(.lexcodeeditor) > .lexarea.origin {
|
|
3662
|
+
padding-block: 0.25rem;
|
|
3663
|
+
}
|
|
3664
|
+
|
|
3882
3665
|
.lexareatabscontent.folded {
|
|
3883
3666
|
max-height: 0px;
|
|
3884
3667
|
}
|
|
@@ -4012,13 +3795,12 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
4012
3795
|
color: var(--global-text-secondary);
|
|
4013
3796
|
font-size: var(--global-font-size);
|
|
4014
3797
|
border-radius: 4px;
|
|
4015
|
-
padding-
|
|
4016
|
-
|
|
4017
|
-
margin-top: 1px;
|
|
4018
|
-
margin-bottom: 1px;
|
|
3798
|
+
padding-inline: 4px;
|
|
3799
|
+
margin-block: 1px;
|
|
4019
3800
|
line-height: 22px;
|
|
4020
3801
|
align-content: center;
|
|
4021
|
-
display:
|
|
3802
|
+
display: flex;
|
|
3803
|
+
flex-direction: row;
|
|
4022
3804
|
-webkit-user-select: none;
|
|
4023
3805
|
-moz-user-select: none;
|
|
4024
3806
|
-ms-user-select: none;
|
|
@@ -4072,7 +3854,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
4072
3854
|
|
|
4073
3855
|
.lexarrayitems {
|
|
4074
3856
|
width: 100%;
|
|
4075
|
-
padding:
|
|
3857
|
+
padding: 2px;
|
|
4076
3858
|
color: var(--global-text-secondary);
|
|
4077
3859
|
font-size: var(--global-font-size);
|
|
4078
3860
|
margin-top: -1px;
|
|
@@ -4080,7 +3862,11 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
4080
3862
|
}
|
|
4081
3863
|
|
|
4082
3864
|
.lexarrayitems .lexwidgetname {
|
|
4083
|
-
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;
|
|
4084
3870
|
}
|
|
4085
3871
|
|
|
4086
3872
|
/* Tags Widget */
|
|
@@ -4163,12 +3949,12 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
4163
3949
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
4164
3950
|
}
|
|
4165
3951
|
|
|
4166
|
-
.lextable svg
|
|
4167
|
-
|
|
3952
|
+
.lextable svg {
|
|
3953
|
+
color: var(--global-text-tertiary);
|
|
4168
3954
|
}
|
|
4169
3955
|
|
|
4170
3956
|
.lextable svg.success, .lextable svg.success path {
|
|
4171
|
-
|
|
3957
|
+
color: #42d065 !important;
|
|
4172
3958
|
}
|
|
4173
3959
|
|
|
4174
3960
|
.lextable thead {
|
|
@@ -4724,15 +4510,15 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
|
|
|
4724
4510
|
}
|
|
4725
4511
|
|
|
4726
4512
|
ul.lexassetscontent {
|
|
4727
|
-
|
|
4513
|
+
height: 100%;
|
|
4728
4514
|
-webkit-text-size-adjust: 100%;
|
|
4515
|
+
padding: 0 1em;
|
|
4516
|
+
margin: 0;
|
|
4729
4517
|
font-size: var(--global-font-size);
|
|
4730
4518
|
color: #AAA;
|
|
4519
|
+
position: relative;
|
|
4731
4520
|
box-sizing: border-box;
|
|
4732
4521
|
overflow: auto;
|
|
4733
|
-
padding: 0 1em;
|
|
4734
|
-
margin: 0;
|
|
4735
|
-
height: calc(100% - 36px);
|
|
4736
4522
|
}
|
|
4737
4523
|
|
|
4738
4524
|
.lexassetscontent.list {
|
|
@@ -4984,8 +4770,10 @@ ul.lexassetscontent {
|
|
|
4984
4770
|
margin: 0px !important;
|
|
4985
4771
|
border: 1px solid #91909036;
|
|
4986
4772
|
border-right: none;
|
|
4773
|
+
border-bottom: none;
|
|
4987
4774
|
background-color: var(--global-color-primary) !important;
|
|
4988
4775
|
transition: none;
|
|
4776
|
+
display: flex !important;
|
|
4989
4777
|
}
|
|
4990
4778
|
|
|
4991
4779
|
.codebasearea .lexareatab:hover {
|
|
@@ -5046,7 +4834,7 @@ ul.lexassetscontent {
|
|
|
5046
4834
|
}
|
|
5047
4835
|
|
|
5048
4836
|
.lexcodetabinfo {
|
|
5049
|
-
background-color: light-dark(var(--global-color-
|
|
4837
|
+
background-color: light-dark(var(--global-color-secondary), var(--global-medium-background));
|
|
5050
4838
|
position: absolute;
|
|
5051
4839
|
z-index: 3;
|
|
5052
4840
|
bottom: 0px;
|
|
@@ -5061,7 +4849,7 @@ ul.lexassetscontent {
|
|
|
5061
4849
|
.lexcodegutter {
|
|
5062
4850
|
width: 48px;
|
|
5063
4851
|
height: calc(100% - 65px);
|
|
5064
|
-
background-color: light-dark(var(--global-color-
|
|
4852
|
+
background-color: light-dark(var(--global-color-secondary), var(--global-medium-background));
|
|
5065
4853
|
margin-top: 31px;
|
|
5066
4854
|
overflow: hidden;
|
|
5067
4855
|
position: absolute;
|
|
@@ -5069,8 +4857,8 @@ ul.lexassetscontent {
|
|
|
5069
4857
|
}
|
|
5070
4858
|
|
|
5071
4859
|
.lexcodeeditor .codetabsarea {
|
|
5072
|
-
height: calc(100% -
|
|
5073
|
-
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));
|
|
5074
4862
|
overflow: scroll;
|
|
5075
4863
|
}
|
|
5076
4864
|
|
|
@@ -5246,10 +5034,14 @@ ul.lexassetscontent {
|
|
|
5246
5034
|
.lexcodescrollbar.horizontal {
|
|
5247
5035
|
width: calc(100% - 58px);
|
|
5248
5036
|
height: 10px;
|
|
5249
|
-
bottom:
|
|
5037
|
+
bottom: 47px;
|
|
5250
5038
|
right: 10px;
|
|
5251
5039
|
}
|
|
5252
5040
|
|
|
5041
|
+
.codebasearea:has(.codetabsarea.no-code-info) .lexcodescrollbar.horizontal {
|
|
5042
|
+
bottom: 0px;
|
|
5043
|
+
}
|
|
5044
|
+
|
|
5253
5045
|
.lexcodescrollbar.scrollbar-unused {
|
|
5254
5046
|
display: none;
|
|
5255
5047
|
}
|
|
@@ -5360,13 +5152,8 @@ ul.lexassetscontent {
|
|
|
5360
5152
|
cursor: default;
|
|
5361
5153
|
height: 22px;
|
|
5362
5154
|
padding-left: 6px;
|
|
5363
|
-
|
|
5364
|
-
|
|
5365
|
-
.lexcodeeditor .autocomplete pre a {
|
|
5366
|
-
font-size: 11px;
|
|
5367
|
-
margin-top: 4px;
|
|
5368
|
-
margin-right: 6px;
|
|
5369
|
-
margin-left: 2px;
|
|
5155
|
+
display: flex;
|
|
5156
|
+
align-items: center;
|
|
5370
5157
|
}
|
|
5371
5158
|
|
|
5372
5159
|
.lexcodeeditor .autocomplete pre:hover {
|
|
@@ -5490,7 +5277,7 @@ ul.lexassetscontent {
|
|
|
5490
5277
|
.cm-bln.markdown { color: #a1d2f0; } /* builtin */
|
|
5491
5278
|
|
|
5492
5279
|
:root[data-theme="light"] .lexcodeeditor pre.active-line {
|
|
5493
|
-
background-color: #
|
|
5280
|
+
background-color: #e4e0e0ab;
|
|
5494
5281
|
}
|
|
5495
5282
|
|
|
5496
5283
|
:root[data-theme="light"] .lexcodeeditor.disabled pre.active-line {
|
|
@@ -5624,7 +5411,6 @@ ul.lexassetscontent {
|
|
|
5624
5411
|
left: 0;
|
|
5625
5412
|
bottom: 0;
|
|
5626
5413
|
right: 0;
|
|
5627
|
-
stroke: unset;
|
|
5628
5414
|
}
|
|
5629
5415
|
|
|
5630
5416
|
.lexgraph .box-selection-svg {
|
|
@@ -6093,10 +5879,13 @@ ul.lexassetscontent {
|
|
|
6093
5879
|
.hover\:fg-error:hover { color: var(--global-color-error) !important }
|
|
6094
5880
|
.hover\:fg-warning:hover { color: var(--global-color-warning) !important }
|
|
6095
5881
|
|
|
5882
|
+
.stroke-none { stroke: none }
|
|
5883
|
+
|
|
6096
5884
|
/* Layout */
|
|
6097
5885
|
|
|
6098
5886
|
.flex { display: flex }
|
|
6099
5887
|
.inline-flex { display: inline-flex }
|
|
5888
|
+
.flex-fill { flex: 1 0 0% }
|
|
6100
5889
|
.grid { display: grid }
|
|
6101
5890
|
.block { display: block }
|
|
6102
5891
|
.inline-block { display: inline-block }
|
|
@@ -6389,6 +6178,7 @@ ul.lexassetscontent {
|
|
|
6389
6178
|
.left-0 { left: 0 }
|
|
6390
6179
|
|
|
6391
6180
|
.z-0 { z-index: 0 }
|
|
6181
|
+
.z-1 { z-index: 1 }
|
|
6392
6182
|
.z-10 { z-index: 10 }
|
|
6393
6183
|
.z-50 { z-index: 50 }
|
|
6394
6184
|
.z-100 { z-index: 100 }
|