lexgui 0.6.12 → 0.7.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.
Files changed (46) hide show
  1. package/README.md +14 -9
  2. package/build/{components → extensions}/audio.js +11 -11
  3. package/build/{components → extensions}/codeeditor.js +95 -63
  4. package/build/{components → extensions}/docmaker.js +10 -3
  5. package/build/{components → extensions}/imui.js +19 -12
  6. package/build/{components → extensions}/nodegraph.js +1 -1
  7. package/build/{components → extensions}/timeline.js +23 -23
  8. package/build/{components → extensions}/videoeditor.js +1 -1
  9. package/build/lexgui-docs.css +9 -9
  10. package/build/lexgui.css +500 -226
  11. package/build/lexgui.js +1562 -772
  12. package/build/lexgui.min.css +8 -2
  13. package/build/lexgui.min.js +1 -1
  14. package/build/lexgui.module.js +1563 -773
  15. package/build/lexgui.module.min.js +1 -1
  16. package/changelog.md +81 -21
  17. package/demo.js +45 -31
  18. package/examples/{all_widgets.html → all-components.html} +22 -4
  19. package/examples/{area_tabs.html → area-tabs.html} +3 -3
  20. package/examples/{asset_view.html → asset-view.html} +3 -3
  21. package/examples/{code_editor.html → code-editor.html} +4 -4
  22. package/examples/dialogs.html +3 -3
  23. package/examples/editor.html +27 -18
  24. package/examples/{immediate_ui.html → immediate-ui.html} +3 -3
  25. package/examples/index.html +8 -8
  26. package/examples/{node_graph.html → node-graph.html} +3 -3
  27. package/examples/previews/all-components.png +0 -0
  28. package/examples/previews/area-tabs.png +0 -0
  29. package/examples/previews/asset-view.png +0 -0
  30. package/examples/previews/code-editor.png +0 -0
  31. package/examples/previews/dialogs.png +0 -0
  32. package/examples/previews/editor.png +0 -0
  33. package/examples/previews/node-graph.png +0 -0
  34. package/examples/previews/side-bar.png +0 -0
  35. package/examples/previews/timeline.png +0 -0
  36. package/examples/{side_bar.html → side-bar.html} +3 -3
  37. package/examples/timeline.html +4 -4
  38. package/examples/{video_editor.html → video-editor.html} +3 -3
  39. package/examples/{video_editor2.html → video-editor2.html} +3 -3
  40. package/package.json +2 -2
  41. package/examples/previews/all_widgets.png +0 -0
  42. package/examples/previews/area_tabs.png +0 -0
  43. package/examples/previews/asset_view.png +0 -0
  44. package/examples/previews/code_editor.png +0 -0
  45. package/examples/previews/node_graph.png +0 -0
  46. package/examples/previews/side_bar.png +0 -0
package/build/lexgui.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /* clean-css ignore:start */
2
- @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');
3
2
  @font-face { font-family: "GeistSans"; src: url("https://raw.githubusercontent.com/jxarco/lexgui.js/master/data/GeistSans.ttf"); }
3
+ @font-face { font-family: "CascadiaCode"; src: url("https://raw.githubusercontent.com/jxarco/lexgui.js/master/data/CascadiaCode.ttf"); font-weight: 400; }
4
4
  /* clean-css ignore:end */
5
5
 
6
6
  :root {
@@ -8,6 +8,7 @@
8
8
  color-scheme: dark;
9
9
 
10
10
  --global-font: "GeistSans", sans-serif;
11
+ --global-code-font: "CascadiaCode", monospace;
11
12
  --global-title-font: "GeistSans", sans-serif;
12
13
  --global-font-size-xs: 0.625rem; /* 10px */
13
14
  --global-font-size-sm: 0.75rem; /* 12px */
@@ -36,6 +37,13 @@
36
37
  --global-blur-background: light-dark(#f7f7f7d8, #1f1f1fe7);
37
38
  --global-color-transparent: #00000000;
38
39
 
40
+ --global-padding-xs: 0.25rem;
41
+ --global-padding-sm: 0.375rem;
42
+ --global-padding-md: 0.5rem;
43
+ --global-padding-lg: 0.75rem;
44
+ --global-padding-xl: 1rem;
45
+
46
+ --svg-size-xxs: 0.5rem;
39
47
  --svg-size-xs: 0.7rem;
40
48
  --svg-size-sm: 0.85rem;
41
49
  --svg-size-md: 1rem;
@@ -48,6 +56,14 @@
48
56
  --graphnode-background: 17, 17, 17;
49
57
  }
50
58
 
59
+ :root[data-spacing="compact"] {
60
+ --global-padding-xs: 0.15rem;
61
+ --global-padding-sm: 0.25rem;
62
+ --global-padding-md: 0.35rem;
63
+ --global-padding-lg: 0.5rem;
64
+ --global-padding-xl: 0.75rem;
65
+ }
66
+
51
67
  :root[data-theme="light"] { color-scheme: light }
52
68
 
53
69
  /* Font Size media queries */
@@ -194,6 +210,30 @@ body {
194
210
  flex-direction: column;
195
211
  position: absolute;
196
212
  outline: none;
213
+ transform-origin: center center;
214
+ transition-property: transform, border-radius;
215
+ transition-duration: 0.5s;
216
+ transition-timing-function: cubic-bezier(0.32, 0.72, 0, 1);
217
+ }
218
+
219
+ :root[data-scale="sheet-top"] #lexroot {
220
+ border-radius: 8px;
221
+ transform: scale(0.975) translate3d(0, -16px, 0);
222
+ }
223
+
224
+ :root[data-scale="sheet-bottom"] #lexroot {
225
+ border-radius: 8px;
226
+ transform: scale(0.975) translate3d(0, 16px, 0);
227
+ }
228
+
229
+ :root[data-scale="sheet-left"] #lexroot {
230
+ border-radius: 8px;
231
+ transform: scale(0.975) translate3d(-16px, 0, 0);
232
+ }
233
+
234
+ :root[data-scale="sheet-right"] #lexroot {
235
+ border-radius: 8px;
236
+ transform: scale(0.975) translate3d(16px, 0, 0);
197
237
  }
198
238
 
199
239
  /* document layout (scrolling page) */
@@ -319,8 +359,10 @@ body.noevents * {
319
359
  .pictonblue { color: #45B1E8 }
320
360
  .lightblue { color: #5aa8f7 }
321
361
  .goldenrod { color: goldenrod }
362
+ .metallicyellow { color: #FDCC0D }
322
363
  .heliotrope { color: #d460ff }
323
364
 
365
+ svg.xxs { width: var(--svg-size-xxs); height: var(--svg-size-xxs); }
324
366
  svg.xs { width: var(--svg-size-xs); height: var(--svg-size-xs); }
325
367
  svg.sm { width: var(--svg-size-sm); height: var(--svg-size-sm); }
326
368
  svg.lg { width: var(--svg-size-lg); height: var(--svg-size-lg); }
@@ -400,14 +442,12 @@ a svg, svg path {
400
442
  max-height: 100vh;
401
443
  position: fixed;
402
444
  margin: 0;
403
- right: 1rem;
404
- bottom: 1rem;
405
- top: auto;
406
445
  pointer-events: none;
407
446
  display: flex;
408
447
  flex-direction: column-reverse;
409
448
  gap: 0.15em;
410
449
  z-index: 100;
450
+ padding: 0;
411
451
  }
412
452
 
413
453
  .notifications ol.list {
@@ -419,9 +459,9 @@ a svg, svg path {
419
459
  flex-direction: row;
420
460
  position: relative;
421
461
  width: 100%;
422
- background-color: var(--global-intense-background);
462
+ background-color: light-dark(var(--global-color-primary), var(--global-color-secondary));
423
463
  border: 1px solid var(--global-color-tertiary);
424
- box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
464
+ box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
425
465
  overflow: hidden;
426
466
  -webkit-user-select: none;
427
467
  -moz-user-select: none;
@@ -430,7 +470,7 @@ a svg, svg path {
430
470
  touch-action: none;
431
471
  overflow: hidden;
432
472
  pointer-events: auto;
433
- padding: 0.8rem;
473
+ padding: 0.75rem;
434
474
  border-radius: 8px;
435
475
  z-index: 3000;
436
476
  transition: all 0.5s cubic-bezier(.42,.97,.52,1.19);
@@ -438,12 +478,29 @@ a svg, svg path {
438
478
  --stack-offset: calc(100% - var(--element-offset));
439
479
  }
440
480
 
441
- .lextoast[data-open] {
481
+ .lextoast.top {
482
+ --stack-offset: calc(-100% + var(--element-offset));
483
+ }
484
+
485
+ .lextoast[data-open="true"] {
442
486
  translate: 0 0 !important;
443
487
  }
444
488
 
445
- .lextoast[data-closed] {
446
- translate: calc(100% + 30px) 0 !important;
489
+ .lextoast[data-open="false"] {
490
+ translate: 100% 0 !important;
491
+ opacity: 0 !important;
492
+ }
493
+
494
+ .lextoast.center[data-open="false"] {
495
+ translate: 0 30px !important;
496
+ }
497
+
498
+ .lextoast.center.top[data-open="false"] {
499
+ translate: 0 -30px !important;
500
+ }
501
+
502
+ .lextoast.left[data-open="false"] {
503
+ translate: -100% 0 !important;
447
504
  }
448
505
 
449
506
  .lextoast .lextoastcontent {
@@ -470,8 +527,8 @@ a svg, svg path {
470
527
  color: var(--global-text-secondary);
471
528
  }
472
529
 
473
- .lextoast .lexwidget {
474
- padding-inline: 16px;
530
+ .lextoast .lexcomponent {
531
+ padding-inline: 1rem;
475
532
  }
476
533
 
477
534
  .lextoast .closer {
@@ -685,8 +742,7 @@ a svg, svg path {
685
742
  font-size: var(--global-font-size-xl);
686
743
  color: var(--global-text-secondary);
687
744
  text-shadow: 0px 1px 6px #22222283;
688
- padding: 12px;
689
- padding-left: 16px;
745
+ padding: var(--global-padding-lg);
690
746
  border-top-left-radius: 8px;
691
747
  border-top-right-radius: 8px;
692
748
  outline: none;
@@ -701,7 +757,7 @@ a svg, svg path {
701
757
 
702
758
  .lexdialogcontent {
703
759
  width: 100%;
704
- padding: 15px;
760
+ padding: 0.25rem;
705
761
  word-break: break-all;
706
762
  color: var(--global-text-primary);
707
763
  font-size: var(--global-font-size);
@@ -713,7 +769,6 @@ a svg, svg path {
713
769
  .lexdialogcontent.notitle {
714
770
  border-top-left-radius: 8px;
715
771
  border-top-right-radius: 8px;
716
- padding-top: 24px;
717
772
  }
718
773
 
719
774
  .lexdialogcloser {
@@ -729,8 +784,8 @@ a svg, svg path {
729
784
 
730
785
  .lexdialogcloser.notitle {
731
786
  position: absolute;
732
- top: 0.8em;
733
- right: 0.6em;
787
+ top: 0.5em;
788
+ right: 0;
734
789
  }
735
790
 
736
791
  .lexdialogcloser:hover {
@@ -766,8 +821,6 @@ a svg, svg path {
766
821
  }
767
822
 
768
823
  .lexdialog.pocket .lexdialogcontent {
769
- padding: 4px;
770
- padding-left: 8px;
771
824
  max-height: -webkit-fill-available;
772
825
  opacity: 1;
773
826
 
@@ -836,11 +889,11 @@ a svg, svg path {
836
889
  .lexcontainer.wrapper {
837
890
  margin-left: auto;
838
891
  margin-right: auto;
839
- max-width: 1400px;
892
+ max-width: 1600px;
840
893
  border: 0px solid var(--global-color-tertiary);
841
894
  }
842
895
 
843
- @media (min-width: 1400px) {
896
+ @media (min-width: 1600px) {
844
897
  .lexcontainer.wrapper {
845
898
  border-left-width: 1px;
846
899
  border-right-width: 1px;
@@ -849,13 +902,13 @@ a svg, svg path {
849
902
 
850
903
  @media (min-width: 1800px) {
851
904
  .lexcontainer.wrapper {
852
- max-width: 1536px;
905
+ max-width: 1736px;
853
906
  }
854
907
  }
855
908
 
856
909
  @media (min-width: 2100px) {
857
910
  .lexcontainer.wrapper {
858
- max-width: 1736px;
911
+ max-width: 1920px;
859
912
  }
860
913
  }
861
914
 
@@ -1037,7 +1090,7 @@ a svg, svg path {
1037
1090
  z-index: 150;
1038
1091
  display: flex;
1039
1092
  flex-direction: column;
1040
- padding: 0.2rem;
1093
+ padding: var(--global-padding-xs);
1041
1094
  border-radius: 6px;
1042
1095
  border: 1px solid #7a797c4f;
1043
1096
  outline: none;
@@ -1049,7 +1102,7 @@ a svg, svg path {
1049
1102
  .lexdropdownmenuitem {
1050
1103
  display: flex;
1051
1104
  flex-direction: row;
1052
- padding: 0.5rem;
1105
+ padding: var(--global-padding-md);
1053
1106
  border-radius: 6px;
1054
1107
  gap: 0.5rem;
1055
1108
  white-space: nowrap;
@@ -1160,7 +1213,7 @@ a svg, svg path {
1160
1213
 
1161
1214
  .lexpanel {
1162
1215
  margin: 0;
1163
- padding: 4px;
1216
+ padding: var(--global-padding-xs);
1164
1217
  overflow: hidden;
1165
1218
  overflow-y: scroll;
1166
1219
  }
@@ -1179,7 +1232,7 @@ a svg, svg path {
1179
1232
  }
1180
1233
 
1181
1234
  .lexbranch .lexbranchcontent {
1182
- padding: 4px;
1235
+ padding: var(--global-padding-xs);
1183
1236
  background-color: var(--global-color-secondary);
1184
1237
  border-bottom-left-radius: 8px;
1185
1238
  border-bottom-right-radius: 8px;
@@ -1197,7 +1250,7 @@ a svg, svg path {
1197
1250
  background-color: var(--global-color-secondary);
1198
1251
  text-shadow: 0px 1px 6px #42424260;
1199
1252
  letter-spacing: calc(var(--global-font-size-lg) * 0.025);
1200
- padding: 10px;
1253
+ padding: var(--global-padding-lg);
1201
1254
  display: flex;
1202
1255
  border-top-left-radius: 8px;
1203
1256
  border-top-right-radius: 8px;
@@ -1212,44 +1265,7 @@ a svg, svg path {
1212
1265
  background-color: inherit;
1213
1266
  }
1214
1267
 
1215
- .lexbranchtitle:active {
1216
- padding-left: 11px;
1217
- }
1218
-
1219
- .lexbranchtitle.wtabs {
1220
- display: flex;
1221
- padding: 0px;
1222
- cursor: default;
1223
- background-color: var(--global-color-tertiary);
1224
- text-shadow: none;
1225
- color: #5f6770;
1226
- }
1227
-
1228
1268
  /* Tab */
1229
- .lexbranchtitle.wtabs span {
1230
- padding: 10px;
1231
- cursor: pointer;
1232
- }
1233
-
1234
- .lexbranchtitle.wtabs span:hover {
1235
- background-color: #47505872;
1236
- }
1237
-
1238
- .lexbranchtitle.wtabs span:active {
1239
- margin-top: 1px;
1240
- }
1241
-
1242
- .lexbranchtitle.wtabs span.first {
1243
- border-top-left-radius: 8px;
1244
- }
1245
-
1246
- .lexbranchtitle.wtabs span.selected {
1247
- border-top: 2px solid var(--global-color-accent-light);
1248
- background-color: var(--global-color-secondary);
1249
- color: var(--global-text-primary);
1250
- text-shadow: 0px 1px 2px #000;
1251
- }
1252
-
1253
1269
  .lexbranch .branchicon {
1254
1270
  font-size: var(--global-font-size);
1255
1271
  margin-right: 12px;
@@ -1283,58 +1299,56 @@ a svg, svg path {
1283
1299
  background-color: inherit;
1284
1300
  }
1285
1301
 
1286
- /* Widgets */
1302
+ /* Components */
1287
1303
 
1288
- .lexwidget {
1304
+ .lexcomponent {
1289
1305
  display: flex;
1290
1306
  align-items: center;
1291
- padding: 5px;
1307
+ padding: var(--global-padding-xs);
1292
1308
  font-size: var(--global-font-size);
1293
1309
  color: var(--global-text-primary);
1294
1310
  line-height: 2;
1295
1311
  overflow: hidden;
1296
1312
  }
1297
1313
 
1298
- .lexinlinewidgets .lexwidgetname.float-center {
1314
+ .lexinlinecomponents .lexcomponentname.float-center {
1299
1315
  justify-content: center;
1300
1316
  }
1301
1317
 
1302
- .lexinlinewidgets .lexwidgetname.float-right {
1318
+ .lexinlinecomponents .lexcomponentname.float-right {
1303
1319
  justify-content: end;
1304
1320
  -moz-transform: translateX(-1em);
1305
1321
  -webkit-transform: translateX(-1em);
1306
1322
  transform: translateX(-1em);
1307
1323
  }
1308
1324
 
1309
- .lexwidget.auto {
1325
+ .lexcomponent.auto {
1310
1326
  width: unset !important;
1311
1327
  }
1312
1328
 
1313
- .lexwidget.micro {
1329
+ .lexcomponent.micro {
1314
1330
  min-width: 24px;
1315
1331
  width: 3% !important;
1316
- padding-left: 4px;
1317
- padding-right: 4px;
1318
1332
  }
1319
1333
 
1320
- .lexwidget.right {
1334
+ .lexcomponent.right {
1321
1335
  margin-left: auto;
1322
1336
  margin-right: 8px;
1323
1337
  }
1324
1338
 
1325
- .lexwidget.small {
1339
+ .lexcomponent.small {
1326
1340
  width: 5% !important;
1327
1341
  }
1328
1342
 
1329
- .lexwidget.md {
1343
+ .lexcomponent.md {
1330
1344
  width: 75% !important;
1331
1345
  }
1332
1346
 
1333
- .lexinlinewidgets {
1347
+ .lexinlinecomponents {
1334
1348
  display: flex;
1335
1349
  }
1336
1350
 
1337
- .lexwidgetseparator div {
1351
+ .lexcomponentseparator div {
1338
1352
  -ms-transform: translateY(-11px);
1339
1353
  -webkit-transform: translateY(-11px);
1340
1354
  transform: translateY(-11px);
@@ -1344,15 +1358,15 @@ a svg, svg path {
1344
1358
  color: var(--global-text-tertiary);
1345
1359
  }
1346
1360
 
1347
- .lexwidgetseparator div:hover {
1361
+ .lexcomponentseparator div:hover {
1348
1362
  color: #4d4d5ac4;
1349
1363
  }
1350
1364
 
1351
- .lexwidgetseparator div div {
1365
+ .lexcomponentseparator div div {
1352
1366
  background: #dddddd33;
1353
1367
  }
1354
1368
 
1355
- .lexwidgetname {
1369
+ .lexcomponentname {
1356
1370
  white-space: nowrap;
1357
1371
  overflow: hidden;
1358
1372
  display: flex;
@@ -1361,7 +1375,7 @@ a svg, svg path {
1361
1375
  color: var(--global-text-secondary);
1362
1376
  }
1363
1377
 
1364
- .lexinlinewidgets .lexwidgetname {
1378
+ .lexinlinecomponents .lexcomponentname {
1365
1379
  width: fit-content !important;
1366
1380
  padding-inline: 0.4rem;
1367
1381
  }
@@ -1386,9 +1400,9 @@ a svg, svg path {
1386
1400
  border-bottom: 1px solid #c1c1c1;
1387
1401
  }
1388
1402
 
1389
- .lexwidget input:not(.lexcheckbox, .lextoggle, .lexrangeslider) {
1403
+ .lexcomponent input:not(.lexcheckbox, .lextoggle, .lexrangeslider) {
1390
1404
  font-family: var(--global-font);
1391
- padding: 4px;
1405
+ padding: var(--global-padding-xs);
1392
1406
  color: var(--global-text-primary);
1393
1407
  --background-color: var(--global-color-tertiary);
1394
1408
  background-color: var(--background-color);
@@ -1400,37 +1414,37 @@ a svg, svg path {
1400
1414
  transition-duration: .15s;
1401
1415
  }
1402
1416
 
1403
- .lexwidget input:not(.lexcheckbox, .lextoggle, .lexrangeslider, .outline):hover {
1417
+ .lexcomponent input:not(.lexcheckbox, .lextoggle, .lexrangeslider, .outline):hover {
1404
1418
  background-color: color-mix(in srgb, var(--background-color), #000 5%);
1405
1419
  }
1406
1420
 
1407
- .lexwidget input.colorinput {
1421
+ .lexcomponent input.colorinput {
1408
1422
  border: none;
1409
1423
  margin-left: -4px;
1410
1424
  }
1411
1425
 
1412
- .lexwidget input:disabled:not(.lextoggle) {
1426
+ .lexcomponent input:disabled:not(.lextoggle) {
1413
1427
  outline: none;
1414
1428
  border: none;
1415
1429
  color: var(--global-text-tertiary);
1416
1430
  }
1417
1431
 
1418
- /* Text Widget */
1432
+ /* Text Component */
1419
1433
 
1420
- .lexwidget input.lextext, .lexwidget div.lextext {
1434
+ .lexcomponent input.lextext, .lexcomponent div.lextext {
1421
1435
  width: 100%;
1422
1436
  border-radius: 6px;
1423
1437
  position: relative;
1424
1438
  border: 1px solid transparent;
1425
- padding: 6px 12px;
1439
+ padding: var(--global-padding-xs) 0.75rem;
1426
1440
  }
1427
1441
 
1428
- .lexwidget .lextext:disabled {
1442
+ .lexcomponent .lextext:disabled {
1429
1443
  background-color: var(--global-color-tertiary);
1430
1444
  color: var(--global-text-tertiary);
1431
1445
  }
1432
1446
 
1433
- .lexwidget .lextext.formlabel {
1447
+ .lexcomponent .lextext.formlabel {
1434
1448
  margin-left: 8px;
1435
1449
  margin-bottom: -6px;
1436
1450
  font-weight: 500;
@@ -1438,51 +1452,51 @@ a svg, svg path {
1438
1452
  font-size: var(--global-font-size-sm);
1439
1453
  }
1440
1454
 
1441
- .lexwidget .lextext.outline {
1455
+ .lexcomponent .lextext.outline {
1442
1456
  background: var(--global-color-primary);
1443
1457
  border: 1px solid #7a797c4f;
1444
1458
  }
1445
1459
 
1446
- .lexwidget .lextext.nobg {
1460
+ .lexcomponent .lextext.nobg {
1447
1461
  background: none;
1448
1462
  border: 1px solid transparent;
1449
1463
  }
1450
1464
 
1451
- .lexwidget .lextext.dashed {
1465
+ .lexcomponent .lextext.dashed {
1452
1466
  background: var(--global-color-primary);
1453
1467
  border: 1px dashed #7a797c4f;
1454
1468
  }
1455
1469
 
1456
- .lexwidget .lextext.nobg:hover {
1470
+ .lexcomponent .lextext.nobg:hover {
1457
1471
  background: none;
1458
1472
  }
1459
1473
 
1460
- .lexwidget .lextext:focus {
1474
+ .lexcomponent .lextext:focus {
1461
1475
  border: 1px solid var(--global-text-quaternary);
1462
1476
  }
1463
1477
 
1464
- .lexwidget .lextext:invalid:focus {
1478
+ .lexcomponent .lextext:invalid:focus {
1465
1479
  border: 1px solid var(--global-color-error);
1466
1480
  }
1467
1481
 
1468
- .lexwidget .lextext.lexwarning div {
1482
+ .lexcomponent .lextext.lexwarning div {
1469
1483
  color: var(--global-color-warning);
1470
1484
  font-weight: 600;
1471
1485
  }
1472
1486
 
1473
- .lexwidget .lextext.lexwarning i {
1487
+ .lexcomponent .lextext.lexwarning i {
1474
1488
  color: var(--global-color-warning);
1475
1489
  margin-right: 16px;
1476
1490
  }
1477
1491
 
1478
- /* TextArea Widget */
1492
+ /* TextArea Component */
1479
1493
 
1480
- .lexwidget textarea {
1494
+ .lexcomponent textarea {
1481
1495
  width: 100%;
1482
1496
  word-break: break-word;
1483
1497
  font-family: var(--global-font);
1484
1498
  background: none;
1485
- padding: 5px;
1499
+ padding: var(--global-padding-md);
1486
1500
  color: var(--global-text-primary);
1487
1501
  outline: none;
1488
1502
  border-radius: 6px;
@@ -1490,34 +1504,34 @@ a svg, svg path {
1490
1504
  transition: 0.1s linear;
1491
1505
  }
1492
1506
 
1493
- .lexwidget textarea.outline {
1507
+ .lexcomponent textarea.outline {
1494
1508
  background: var(--global-color-primary);
1495
1509
  border: 1px solid #7a797c4f;
1496
1510
  }
1497
1511
 
1498
- .lexwidget textarea.nobg {
1512
+ .lexcomponent textarea.nobg {
1499
1513
  background: none;
1500
1514
  border: 1px solid transparent;
1501
1515
  }
1502
1516
 
1503
- .lexwidget textarea.dashed {
1517
+ .lexcomponent textarea.dashed {
1504
1518
  background: var(--global-color-primary);
1505
1519
  border: 1px dashed #7a797c4f;
1506
1520
  }
1507
1521
 
1508
- .lexwidget textarea.outline:hover, .lexwidget .lextext.nobg:hover {
1522
+ .lexcomponent textarea.outline:hover, .lexcomponent .lextext.nobg:hover {
1509
1523
  background: none;
1510
1524
  }
1511
1525
 
1512
- .lexwidget textarea:disabled {
1526
+ .lexcomponent textarea:disabled {
1513
1527
  resize: none;
1514
1528
  }
1515
1529
 
1516
- .lexwidget textarea:focus {
1530
+ .lexcomponent textarea:focus {
1517
1531
  border: 1px solid var(--global-text-quaternary);
1518
1532
  }
1519
1533
 
1520
- /* Input Color Widget */
1534
+ /* Input Color Component */
1521
1535
 
1522
1536
  .lexcolor {
1523
1537
  display: flex;
@@ -1542,7 +1556,7 @@ a svg, svg path {
1542
1556
  font-weight: 600;
1543
1557
  }
1544
1558
 
1545
- .lexcolor .lexwidget {
1559
+ .lexcolor .lexcomponent {
1546
1560
  padding: 0px;
1547
1561
  }
1548
1562
 
@@ -1609,11 +1623,11 @@ a svg, svg path {
1609
1623
  letter-spacing: 0.02rem;
1610
1624
  }
1611
1625
 
1612
- .lexcolorpicker .lexwidget {
1626
+ .lexcolorpicker .lexcomponent {
1613
1627
  padding: 2px !important;
1614
1628
  }
1615
1629
 
1616
- /* Title Widget */
1630
+ /* Title Component */
1617
1631
 
1618
1632
  .lextitle {
1619
1633
  width: fit-content !important;
@@ -1622,9 +1636,7 @@ a svg, svg path {
1622
1636
  font-weight: 600;
1623
1637
  font-size: var(--global-font-size);
1624
1638
  margin: 12px;
1625
- padding: 2px;
1626
- padding-left: 12px;
1627
- padding-right: 12px;
1639
+ padding: var(--global-padding-xs) var(--global-padding-lg);
1628
1640
  line-height: 1.5;
1629
1641
  display: grid;
1630
1642
  align-content: center;
@@ -1637,7 +1649,7 @@ a svg, svg path {
1637
1649
  user-select: none;
1638
1650
  }
1639
1651
 
1640
- .lexinlinewidgets .lextitle {
1652
+ .lexinlinecomponents .lextitle {
1641
1653
  margin: 8px;
1642
1654
  height: 24px;
1643
1655
  flex: none;
@@ -1655,7 +1667,7 @@ a svg, svg path {
1655
1667
  }
1656
1668
 
1657
1669
 
1658
- /* Button Widget */
1670
+ /* Button Component */
1659
1671
 
1660
1672
  .lexbutton {
1661
1673
  --button-color: var(--global-color-tertiary);
@@ -1763,7 +1775,7 @@ a svg, svg path {
1763
1775
  background-color: var(--global-color-tertiary);
1764
1776
  width: max-content;
1765
1777
  justify-self: center;
1766
- padding: 3px;
1778
+ padding: var(--global-padding-xs);
1767
1779
  border-radius: 8px;
1768
1780
  gap: 0.2em;
1769
1781
  }
@@ -1805,7 +1817,7 @@ a svg, svg path {
1805
1817
  position: relative;
1806
1818
  }
1807
1819
 
1808
- .lexselect .lexwidget {
1820
+ .lexselect .lexcomponent {
1809
1821
  padding: 0;
1810
1822
  }
1811
1823
 
@@ -2033,11 +2045,11 @@ dialog .lexselect .lexselectoptions {
2033
2045
  grid-column: span 2;
2034
2046
  }
2035
2047
 
2036
- .lexcheckboxsubmenu .lexwidget {
2048
+ .lexcheckboxsubmenu .lexcomponent {
2037
2049
  width: 100% !important;
2038
2050
  }
2039
2051
 
2040
- /* Toggle Widget */
2052
+ /* Toggle Component */
2041
2053
 
2042
2054
  .lextoggle {
2043
2055
  --toggle-bg-color: var(--global-text-tertiary); /* Color of background CHECKED */
@@ -2198,7 +2210,7 @@ dialog .lexselect .lexselectoptions {
2198
2210
  grid-column: span 2;
2199
2211
  }
2200
2212
 
2201
- /* Radio Group Widget */
2213
+ /* Radio Group Component */
2202
2214
 
2203
2215
  .lexradiogroup {
2204
2216
  width: 100% !important;
@@ -2263,7 +2275,7 @@ dialog .lexselect .lexselectoptions {
2263
2275
  .lexradiogroup.error .lexradiogroupitem button.checked span { background-color: var(--global-color-error); }
2264
2276
  .lexradiogroup.warning .lexradiogroupitem button.checked span { background-color: var(--global-color-warning); }
2265
2277
 
2266
- /* Vector Widgets */
2278
+ /* Vector Component */
2267
2279
 
2268
2280
  .lexvector {
2269
2281
  display: flex;
@@ -2290,8 +2302,8 @@ dialog .lexselect .lexselectoptions {
2290
2302
  background-color: color-mix(in srgb, var(--global-color-tertiary), #000 7%);
2291
2303
  }
2292
2304
 
2293
- .lexwidget .numberbox .drag-icon,
2294
- .lexwidget .vecbox .drag-icon {
2305
+ .lexcomponent .numberbox .drag-icon,
2306
+ .lexcomponent .vecbox .drag-icon {
2295
2307
  font-size: var(--global-font-size-sm);
2296
2308
  color: var(--global-text-secondary);
2297
2309
  z-index: 11;
@@ -2360,9 +2372,9 @@ input[type=number] {
2360
2372
  color: var(--global-text-secondary);
2361
2373
  }
2362
2374
 
2363
- /* Number Widget */
2375
+ /* Number Component */
2364
2376
 
2365
- .lexwidget .numberbox {
2377
+ .lexcomponent .numberbox {
2366
2378
  width: 100%;
2367
2379
  display: flex;
2368
2380
  flex-direction: column;
@@ -2375,21 +2387,33 @@ input[type=number] {
2375
2387
  transition: 0.1s linear;
2376
2388
  }
2377
2389
 
2378
- .lexwidget .numberbox:hover {
2390
+ .lexcomponent .numberbox::-webkit-scrollbar {
2391
+ display: none;
2392
+ }
2393
+
2394
+ .lexcomponent .numberbox:hover {
2379
2395
  background-color: color-mix(in srgb, var(--global-color-tertiary), #000 7%);
2380
2396
  }
2381
2397
 
2382
- .lexwidget .numberbox:has(input:focus) {
2398
+ .lexcomponent .numberbox:has(input:focus) {
2383
2399
  border: 1px solid var(--global-text-quaternary);
2384
2400
  }
2385
2401
 
2386
- .lexwidget .numberbox span {
2402
+ .lexcomponent .numberbox .input-box {
2403
+ padding-block: var(--global-padding-xs);
2404
+ }
2405
+
2406
+ .lexcomponent .numberbox .input-box input {
2407
+ padding-block: 0;
2408
+ }
2409
+
2410
+ .lexcomponent .numberbox span {
2387
2411
  position: absolute;
2388
2412
  pointer-events: none;
2389
2413
  align-self: center;
2390
2414
  }
2391
2415
 
2392
- .lexwidget .numberbox:has(input[type=range]) span {
2416
+ .lexcomponent .numberbox:has(input[type=range]) span {
2393
2417
  margin-top: -12px;
2394
2418
  }
2395
2419
 
@@ -2447,14 +2471,14 @@ input[type=number] {
2447
2471
  cursor: pointer;
2448
2472
  }
2449
2473
 
2450
- /* Range Widget */
2474
+ /* Range Component */
2451
2475
 
2452
2476
  .lexrangeslider {
2453
2477
  --range-thumb-color: var(--global-color-primary);
2454
2478
  --range-thumb-size: 1rem;
2455
2479
  --range-progress: currentColor;
2456
2480
  --range-fill: 1;
2457
- --range-thumb-padding: 0.15rem;
2481
+ --range-thumb-padding: 0.2rem;
2458
2482
  --range-bg: color-mix(in oklab,currentColor 20%,#0000);
2459
2483
  --range-dir: 1;
2460
2484
  --radius-selector: 0.5rem;
@@ -2497,7 +2521,19 @@ input[type=number] {
2497
2521
 
2498
2522
  .lexrangeslider.no-fill {
2499
2523
  --range-fill: 0;
2500
- --range-bg: currentColor;
2524
+ --in-range-color: color-mix(in oklab,currentColor 30%,#0000);
2525
+ --range-bg: linear-gradient(to right,
2526
+ var(--in-range-color) 0%,
2527
+ var(--in-range-color) calc(var(--range-min-value) + var(--range-fix-min-offset)),
2528
+ currentColor calc(var(--range-min-value) + var(--range-fix-min-offset)),
2529
+ currentColor calc( var(--range-max-value) - var(--range-fix-max-offset)),
2530
+ var(--in-range-color) calc( var(--range-max-value) - var(--range-fix-max-offset)),
2531
+ var(--in-range-color) 100%);
2532
+ background: var(--range-bg);
2533
+ }
2534
+
2535
+ .lexrangeslider.overlap {
2536
+ --range-bg: transparent;
2501
2537
  }
2502
2538
 
2503
2539
  .lexrangeslider:hover {
@@ -2536,6 +2572,7 @@ input[type=number] {
2536
2572
  background-color: currentColor;
2537
2573
  position: relative;
2538
2574
  top: 50%;
2575
+ pointer-events: all !important;
2539
2576
  transform: translateY(-50%);
2540
2577
  }
2541
2578
 
@@ -2550,9 +2587,10 @@ input[type=number] {
2550
2587
  background-color: currentColor;
2551
2588
  position: relative;
2552
2589
  top: 50%;
2590
+ pointer-events: all !important;
2553
2591
  }
2554
2592
 
2555
- /* OTP Widget */
2593
+ /* OTP Component */
2556
2594
 
2557
2595
  .lexotpslot.active {
2558
2596
  border: 1px solid var(--global-text-primary);
@@ -2564,18 +2602,18 @@ input[type=number] {
2564
2602
  cursor: not-allowed;
2565
2603
  }
2566
2604
 
2567
- /* Pad Widget */
2605
+ /* Pad Component */
2568
2606
 
2569
- .lexwidget .lexpad {
2607
+ .lexcomponent .lexpad {
2570
2608
  place-items: center;
2571
2609
  }
2572
2610
 
2573
- .lexwidget .lexpad .lexinnerpad {
2611
+ .lexcomponent .lexpad .lexinnerpad {
2574
2612
  border-radius: 4px;
2575
2613
  background-color: light-dark(var(--global-color-tertiary), var(--global-intense-background));
2576
2614
  }
2577
2615
 
2578
- .lexwidget .lexpad .lexinnerpad .lexpadthumb {
2616
+ .lexcomponent .lexpad .lexinnerpad .lexpadthumb {
2579
2617
  background-color: var(--global-color-accent);
2580
2618
  width: 10%;
2581
2619
  height: 10%;
@@ -2583,11 +2621,11 @@ input[type=number] {
2583
2621
  transform: translate(0px, 0px);
2584
2622
  }
2585
2623
 
2586
- .lexwidget .lexpad .lexinnerpad .lexpadthumb.active {
2624
+ .lexcomponent .lexpad .lexinnerpad .lexpadthumb.active {
2587
2625
  background-color: var(--global-color-accent-light);
2588
2626
  }
2589
2627
 
2590
- /* Tabs Widget */
2628
+ /* Tabs Component */
2591
2629
 
2592
2630
  .lextabscontainer {
2593
2631
  width: 100%;
@@ -2616,7 +2654,7 @@ input[type=number] {
2616
2654
  flex-direction: row;
2617
2655
  }
2618
2656
 
2619
- .lextabscontainer .widgets {
2657
+ .lextabscontainer .components {
2620
2658
  width: 100%;
2621
2659
  padding: 4px;
2622
2660
  }
@@ -2629,7 +2667,7 @@ input[type=number] {
2629
2667
  text-align: center;
2630
2668
  }
2631
2669
 
2632
- /* Data Tree Widget */
2670
+ /* Data Tree Component */
2633
2671
 
2634
2672
  .lextree {
2635
2673
  border-radius: 6px;
@@ -2659,7 +2697,7 @@ input[type=number] {
2659
2697
  gap: 0.5rem;
2660
2698
  }
2661
2699
 
2662
- .lexwidget.nobranch .lextree .lextreetools {
2700
+ .lexcomponent.nobranch .lextree .lextreetools {
2663
2701
  background: var(--global-color-secondary);
2664
2702
  }
2665
2703
 
@@ -2878,14 +2916,15 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2878
2916
  /* Badges */
2879
2917
 
2880
2918
  .lexbadge {
2881
- border-radius: 0.35rem;
2919
+ border-radius: 0.4rem;
2882
2920
  color: #f4f4f5;
2883
2921
  border: 1px solid var(--badge-color, #14171a);
2884
2922
  width: fit-content;
2923
+ height: 1.1rem;
2885
2924
  justify-content: center;
2886
2925
  align-items: center;
2887
- gap: 0.5rem;
2888
- padding-inline: 0.6rem;
2926
+ gap: 0.25rem;
2927
+ padding-inline: 0.5rem;
2889
2928
  font-size: var(--global-font-size);
2890
2929
  display: inline-flex;
2891
2930
  background-color: var(--badge-color, #1d232a);
@@ -2911,11 +2950,30 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2911
2950
  border: none;
2912
2951
  }
2913
2952
  /* Sizes */
2914
- .lexbadge.xs { padding-inline: 0.4rem; font-size: var(--global-font-size-xs); }
2915
- .lexbadge.sm { padding-inline: 0.5rem; font-size: var(--global-font-size-sm); }
2953
+ .lexbadge.xs { height: 0.7rem; padding-inline: 0.3rem; font-size: var(--global-font-size-xs); }
2954
+ .lexbadge.sm { height: 0.9rem; padding-inline: 0.4rem; font-size: var(--global-font-size-sm); }
2916
2955
  /* .lexbadge.md { default } */
2917
- .lexbadge.lg { padding-inline: 0.8rem; font-size: var(--global-font-size-lg); }
2918
- .lexbadge.xl { padding-inline: 1rem; font-size: var(--global-font-size-xl) }
2956
+ .lexbadge.lg { height: 1.3rem; padding-inline: 0.7rem; font-size: var(--global-font-size-lg); }
2957
+ .lexbadge.xl { height: 1.5rem; padding-inline: 0.85rem; font-size: var(--global-font-size-xl) }
2958
+
2959
+ .lexbadge-parent {
2960
+ position: relative;
2961
+ }
2962
+
2963
+ .lexbadge-parent .lexbadge {
2964
+ border-radius: 0.5rem;
2965
+ padding-inline: 0.25rem;
2966
+ position: absolute;
2967
+ margin-top: -0.25rem;
2968
+ right: 0.25rem;
2969
+ border: none !important;
2970
+ }
2971
+
2972
+ .lexbadge.chip {
2973
+ border-radius: 0.5rem;
2974
+ padding-inline: 0.25rem;
2975
+ border: none !important;
2976
+ }
2919
2977
 
2920
2978
  /* Menu Bar */
2921
2979
 
@@ -3141,7 +3199,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3141
3199
  display: none;
3142
3200
  }
3143
3201
 
3144
- .lexsidebar .lexwidget {
3202
+ .lexsidebar .lexcomponent {
3145
3203
  width: 100% !important;
3146
3204
  padding: 0 !important;
3147
3205
  }
@@ -3183,7 +3241,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3183
3241
  .lexsidebar .lexsidebargrouptitle {
3184
3242
  font-size: var(--global-font-size-sm);
3185
3243
  font-weight: 600;
3186
- color: var(--global-text-secondary);
3244
+ color: var(--global-text-tertiary);
3187
3245
  overflow: hidden;
3188
3246
  display: flex;
3189
3247
  }
@@ -3217,8 +3275,8 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3217
3275
 
3218
3276
  .lexsidebar .lexsidebarentry {
3219
3277
  width: 100%;
3220
- padding-inline: 8px;
3221
- padding-block: 6px;
3278
+ padding-inline: var(--global-padding-md);
3279
+ padding-block: var(--global-padding-sm);
3222
3280
  margin-block: 0.15rem;
3223
3281
  border-radius: 8px;
3224
3282
  cursor: pointer;
@@ -3234,6 +3292,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3234
3292
  white-space: nowrap;
3235
3293
  text-overflow: ellipsis;
3236
3294
  align-self: center;
3295
+ place-content: start;
3237
3296
  }
3238
3297
 
3239
3298
  .lexsidebar .lexsidebarentry:hover {
@@ -3248,7 +3307,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3248
3307
  color: #f4f4f4;
3249
3308
  }
3250
3309
 
3251
- .lexsidebar .lexsidebarentry.selected svg path {
3310
+ .lexsidebar .lexsidebarentry.selected .lexsidebarentryicon svg path {
3252
3311
  color: #f4f4f4;
3253
3312
  }
3254
3313
 
@@ -3356,8 +3415,8 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3356
3415
  width: 100%;
3357
3416
  height: 48px;
3358
3417
  display: flex;
3359
- border-radius: 8px;
3360
- padding: 8px;
3418
+ border-radius: 0.5rem;
3419
+ padding: 0.5rem;
3361
3420
  font-size: var(--global-font-size);
3362
3421
  cursor: pointer;
3363
3422
  align-items: center;
@@ -3466,13 +3525,13 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3466
3525
  border-radius: 12px;
3467
3526
  }
3468
3527
 
3469
- .lexoverlaybuttons .lexwidget {
3528
+ .lexoverlaybuttons .lexcomponent {
3470
3529
  padding: 0px;
3471
3530
  pointer-events: auto;
3472
3531
  min-width: 32px;
3473
3532
  }
3474
3533
 
3475
- .lexoverlaybuttons .lexwidget button {
3534
+ .lexoverlaybuttons .lexcomponent button {
3476
3535
  min-width: 32px;
3477
3536
  }
3478
3537
 
@@ -3485,12 +3544,12 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3485
3544
  display: grid;
3486
3545
  }
3487
3546
 
3488
- .lexoverlaybuttonscontainer.vertical .lexwidget {
3547
+ .lexoverlaybuttonscontainer.vertical .lexcomponent {
3489
3548
  margin-bottom: 6px;
3490
3549
  margin-right: 0px;
3491
3550
  }
3492
3551
 
3493
- .lexoverlaybuttonscontainer.vertical .lexwidget button {
3552
+ .lexoverlaybuttonscontainer.vertical .lexcomponent button {
3494
3553
  min-width: 32px;
3495
3554
  max-height: 32px !important;
3496
3555
  }
@@ -3516,13 +3575,13 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3516
3575
  justify-items: right;
3517
3576
  }
3518
3577
 
3519
- .lexoverlaybuttons .lexwidget:hover {
3578
+ .lexoverlaybuttons .lexcomponent:hover {
3520
3579
  background-color: unset;
3521
3580
  }
3522
3581
 
3523
3582
  .lexoverlaybuttons .lexbutton {
3524
3583
  --button-color: var(--global-color-secondary);
3525
- padding: 6px 6px;
3584
+ padding: var(--global-padding-sm) var(--global-padding-sm);
3526
3585
  font-size: var(--global-font-size-lg);
3527
3586
  border-radius: 10px;
3528
3587
  justify-content: center;
@@ -3557,21 +3616,21 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3557
3616
  margin-bottom: 6px;
3558
3617
  }
3559
3618
 
3560
- .lexoverlaybuttons .lexoverlaygroup .lexwidget {
3619
+ .lexoverlaybuttons .lexoverlaygroup .lexcomponent {
3561
3620
  padding: 0px;
3562
3621
  margin-right: 0px;
3563
3622
  }
3564
3623
 
3565
- .lexoverlaybuttonscontainer.vertical .lexoverlaygroup .lexwidget {
3624
+ .lexoverlaybuttonscontainer.vertical .lexoverlaygroup .lexcomponent {
3566
3625
  margin-right: 0px;
3567
3626
  margin-bottom: 0px;
3568
3627
  }
3569
3628
 
3570
- .lexoverlaybuttonscontainer.vertical .lexoverlaygroup .lexwidget button {
3629
+ .lexoverlaybuttonscontainer.vertical .lexoverlaygroup .lexcomponent button {
3571
3630
  width: 100% !important;
3572
3631
  }
3573
3632
 
3574
- .lexoverlaybuttons .lexwidget:last-child {
3633
+ .lexoverlaybuttons .lexcomponent:last-child {
3575
3634
  margin-right: 0px;
3576
3635
  }
3577
3636
 
@@ -3634,7 +3693,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3634
3693
  }
3635
3694
 
3636
3695
  .lexareatabs.row .lexareatab {
3637
- padding: 0.45em 1.45em;
3696
+ padding: var(--global-padding-md) 1.45em;
3638
3697
  transition: 0.1s;
3639
3698
  background: none;
3640
3699
  border-radius: 6px;
@@ -3691,13 +3750,13 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3691
3750
  max-height: 0px;
3692
3751
  }
3693
3752
 
3694
- /* Curve Widget */
3753
+ /* Curve Component */
3695
3754
 
3696
3755
  .curve canvas {
3697
3756
  border-radius: 2px;
3698
3757
  }
3699
3758
 
3700
- /* Avatar Widget */
3759
+ /* Avatar Component */
3701
3760
 
3702
3761
  .lexavatar {
3703
3762
  width: 48px;
@@ -3715,11 +3774,10 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3715
3774
  height: 100%;
3716
3775
  }
3717
3776
 
3718
- /* Card Widget */
3777
+ /* Card Component */
3719
3778
 
3720
3779
  .lexcard {
3721
3780
  position: relative;
3722
- margin-bottom: 4px;
3723
3781
  }
3724
3782
 
3725
3783
  .lexcard img {
@@ -3727,7 +3785,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3727
3785
  height: 128px;
3728
3786
  object-fit: cover;
3729
3787
  border-radius: 6px;
3730
- outline: 3px solid var(--global-text-tertiary);
3788
+ outline: 2px solid var(--global-text-tertiary);
3731
3789
  }
3732
3790
 
3733
3791
  .lexcard:hover a {
@@ -3735,16 +3793,13 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3735
3793
  }
3736
3794
 
3737
3795
  .lexcard:hover img {
3738
- outline: 3px solid var(--global-color-accent);
3796
+ outline: 2px solid var(--global-color-accent);
3739
3797
  }
3740
3798
 
3741
3799
  .lexcard span {
3742
3800
  font-size: var(--global-font-size-lg);
3743
- font-family: var(--global-title-font);
3744
3801
  font-weight: 500;
3745
- text-transform: uppercase;
3746
3802
  width: 100%;
3747
- height: 32px;
3748
3803
  display: flex;
3749
3804
  background-color: var(--global-blur-background);
3750
3805
  --webkit-backdrop-filter: blur(12px);
@@ -3753,7 +3808,8 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3753
3808
  position: absolute;
3754
3809
  top: 0;
3755
3810
  left: 0;
3756
- padding: 8px;
3811
+ padding: var(--global-padding-xs);
3812
+ padding-inline-start: 8px;
3757
3813
  border-top-left-radius: 6px;
3758
3814
  border-top-right-radius: 6px;
3759
3815
  }
@@ -3767,7 +3823,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3767
3823
  color: var(--global-color-accent);
3768
3824
  }
3769
3825
 
3770
- /* Layers Widget */
3826
+ /* Layers Component */
3771
3827
 
3772
3828
  .lexlayers {
3773
3829
  display: grid;
@@ -3805,7 +3861,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3805
3861
  transform: scale(0.99);
3806
3862
  }
3807
3863
 
3808
- /* List Widget */
3864
+ /* List Component */
3809
3865
 
3810
3866
  .lexlist {
3811
3867
  background: var(--global-color-primary);
@@ -3853,26 +3909,26 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3853
3909
  background-color: var(--global-color-accent);
3854
3910
  }
3855
3911
 
3856
- /* Array Widget */
3912
+ /* Array Component */
3857
3913
 
3858
- .lexwidget:has(.lexarrayitems),
3859
- .lexwidget:has(.lexcheckboxsubmenu),
3860
- .lexwidget:has(.lextogglesubmenu),
3861
- .lexwidget:has(.lexcustomcontainer) {
3914
+ .lexcomponent:has(.lexarrayitems),
3915
+ .lexcomponent:has(.lexcheckboxsubmenu),
3916
+ .lexcomponent:has(.lextogglesubmenu),
3917
+ .lexcomponent:has(.lexcustomcontainer) {
3862
3918
  border-radius: 6px;
3863
3919
  transition: background-color 0.2s ease-out;
3864
3920
  display: flex;
3865
3921
  flex-wrap: wrap;
3866
3922
  }
3867
3923
 
3868
- .lexwidget:has(.lexarrayitems)[data-opened=true],
3869
- .lexwidget:has(.lexcheckboxsubmenu)[data-opened=true],
3870
- .lexwidget:has(.lextogglesubmenu)[data-opened=true],
3871
- .lexwidget:has(.lexcustomcontainer)[data-opened=true] {
3924
+ .lexcomponent:has(.lexarrayitems)[data-opened=true],
3925
+ .lexcomponent:has(.lexcheckboxsubmenu)[data-opened=true],
3926
+ .lexcomponent:has(.lextogglesubmenu)[data-opened=true],
3927
+ .lexcomponent:has(.lexcustomcontainer)[data-opened=true] {
3872
3928
  background-color: light-dark(var(--global-color-tertiary), var(--global-medium-background));
3873
3929
  }
3874
3930
 
3875
- .lexarray .lexwidget {
3931
+ .lexarray .lexcomponent {
3876
3932
  padding: 0px;
3877
3933
  width: 100% !important;
3878
3934
  }
@@ -3886,7 +3942,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3886
3942
  grid-column: span 2;
3887
3943
  }
3888
3944
 
3889
- .lexarrayitems .lexwidgetname {
3945
+ .lexarrayitems .lexcomponentname {
3890
3946
  color: var(--global-text-tertiary);
3891
3947
  font-size: var(--global-font-size-sm);
3892
3948
  justify-content: center;
@@ -3894,7 +3950,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3894
3950
  font-weight: 600;
3895
3951
  }
3896
3952
 
3897
- /* Tags Widget */
3953
+ /* Tags Component */
3898
3954
 
3899
3955
  .lextags {
3900
3956
  display: inline-flex;
@@ -3902,7 +3958,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3902
3958
  line-height: 12px;
3903
3959
  background-color: var(--global-color-tertiary);
3904
3960
  border-radius: 8px;
3905
- padding: 4px;
3961
+ padding: var(--global-padding-xs);
3906
3962
  }
3907
3963
 
3908
3964
  .lextags input {
@@ -3932,7 +3988,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3932
3988
  cursor: pointer;
3933
3989
  }
3934
3990
 
3935
- /* Counter Widget */
3991
+ /* Counter Component */
3936
3992
 
3937
3993
  .lexcounter {
3938
3994
  display: flex;
@@ -3960,7 +4016,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3960
4016
  color: var(--global-text-secondary);
3961
4017
  }
3962
4018
 
3963
- /* Table Widget */
4019
+ /* Table Component */
3964
4020
 
3965
4021
  .lextable {
3966
4022
  overflow-x: scroll;
@@ -4013,7 +4069,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
4013
4069
  }
4014
4070
 
4015
4071
  .lextable th, .lextable td {
4016
- padding: 6px;
4072
+ padding-block: var(--global-padding-sm);
4017
4073
  padding-inline: 12px;
4018
4074
  text-align: left;
4019
4075
  align-content: center;
@@ -4120,7 +4176,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
4120
4176
  box-shadow: none;
4121
4177
  }
4122
4178
 
4123
- /* Custom Widgets Widget */
4179
+ /* Custom Component */
4124
4180
 
4125
4181
  .lexcustomitems {
4126
4182
  width: 100%;
@@ -4137,7 +4193,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
4137
4193
  justify-content: space-between;
4138
4194
  }
4139
4195
 
4140
- /* Knob Widget */
4196
+ /* Knob Component */
4141
4197
 
4142
4198
  .lexknob {
4143
4199
  padding: 8px;
@@ -4359,11 +4415,11 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
4359
4415
  padding: 0 10px;
4360
4416
  }
4361
4417
 
4362
- .lextimeline .lexwidget:has(.lexbutton:not(.array)) {
4418
+ .lextimeline .lexcomponent:has(.lexbutton:not(.array)) {
4363
4419
  padding: 1px;
4364
4420
  }
4365
4421
 
4366
- .lextimeline .lexinlinewidgets {
4422
+ .lextimeline .lexinlinecomponents {
4367
4423
  padding-right: 10px;
4368
4424
  }
4369
4425
 
@@ -4634,7 +4690,10 @@ ul.lexassetscontent {
4634
4690
  .lexassetscontent .asset-file-preview text {
4635
4691
  font-size: 4rem;
4636
4692
  text-anchor: middle;
4637
- font-family: 'Ubuntu', sans-serif;
4693
+ font-family: var(--global-code-font);
4694
+ font-feature-settings: "ss02", 'ss19', "ss20";
4695
+ font-feature-settings: "ss02", 'ss19', "ss20";
4696
+ font-weight: 800;
4638
4697
  color: var(--global-text-tertiary);
4639
4698
  }
4640
4699
 
@@ -4810,7 +4869,52 @@ ul.lexassetscontent {
4810
4869
  background-color: var(--global-text-primary);
4811
4870
  }
4812
4871
 
4872
+ /* Skeleton */
4873
+
4874
+ @keyframes skeletonHide {
4875
+ from {
4876
+ opacity: 1;
4877
+ transform: translate3d(0, 0, 0)
4878
+ scale3d(1, 1, 1);
4879
+ }
4880
+
4881
+ to {
4882
+ opacity: 0;
4883
+ transform: translate3d(0, 12.5%, 0)
4884
+ scale3d(0.75, 0.75, 0.75);
4885
+ }
4886
+ }
4887
+
4888
+ .lexskeleton[data-closed] {
4889
+ animation: skeletonHide 0.2s forwards;
4890
+ }
4891
+
4892
+ /* Shimmer keyframes */
4893
+ @keyframes skeleton-shimmer {
4894
+ 0% {
4895
+ opacity: 1;
4896
+ }
4897
+
4898
+ 50% {
4899
+ opacity: 0.5;
4900
+ }
4901
+
4902
+ 100% {
4903
+ opacity: 1;
4904
+ }
4905
+ }
4906
+
4907
+ .lexskeleton *.lexskeletonpart {
4908
+ position: relative;
4909
+ overflow: hidden;
4910
+ background-color: var(--global-color-tertiary);
4911
+ border-radius: 0.375rem;
4912
+ pointer-events: none;
4913
+ animation: skeleton-shimmer 2.0s ease-in-out infinite;
4914
+ }
4915
+
4813
4916
  /* Code Editor */
4917
+
4814
4918
  .codebasearea {
4815
4919
  display: flex;
4816
4920
  position: relative;
@@ -4904,7 +5008,7 @@ ul.lexassetscontent {
4904
5008
  padding-inline: 1rem;
4905
5009
  }
4906
5010
 
4907
- .lexcodetabinfo .lexinlinewidgets {
5011
+ .lexcodetabinfo .lexinlinecomponents {
4908
5012
  justify-content: end;
4909
5013
  }
4910
5014
 
@@ -4919,7 +5023,7 @@ ul.lexassetscontent {
4919
5023
  }
4920
5024
 
4921
5025
  .lexcodeeditor .codetabsarea {
4922
- height: calc(100% - 76px) !important;
5026
+ height: 100% !important;
4923
5027
  background-color: light-dark(var(--global-color-secondary), var(--global-medium-background));
4924
5028
  overflow: scroll;
4925
5029
  }
@@ -4946,19 +5050,19 @@ ul.lexassetscontent {
4946
5050
 
4947
5051
  .lexcodeeditor .code {
4948
5052
  cursor: text;
4949
- font-family: "CommitMono", monospace;
5053
+ font-family: var(--global-code-font);
5054
+ font-feature-settings: "ss02", 'ss19', "ss20";
4950
5055
  -webkit-font-smoothing: antialiased;
4951
5056
  -moz-osx-font-smoothing: grayscale;
4952
- font-feature-settings: "ss04", "ss05";
4953
5057
  font-size: var(--code-editor-font-size);
4954
5058
  position: relative;
4955
5059
  }
4956
5060
 
4957
5061
  .codechar {
4958
- font-family: "CommitMono", monospace;
5062
+ font-family: var(--global-code-font);
5063
+ font-feature-settings: "ss02", 'ss19', "ss20";
4959
5064
  -webkit-font-smoothing: antialiased;
4960
5065
  -moz-osx-font-smoothing: grayscale;
4961
- font-feature-settings: "ss04", "ss05";
4962
5066
  font-size: var(--code-editor-font-size);
4963
5067
  position: absolute;
4964
5068
  top: 0;
@@ -4969,6 +5073,9 @@ ul.lexassetscontent {
4969
5073
 
4970
5074
  .lexcodeeditor pre {
4971
5075
  -webkit-text-size-adjust: 100%;
5076
+ font-family: var(--global-code-font);
5077
+ font-feature-settings: "ss02", 'ss19', "ss20";
5078
+ font-size: var(--code-editor-font-size);
4972
5079
  cursor: text;
4973
5080
  box-sizing: border-box;
4974
5081
  border-radius: 0;
@@ -5825,7 +5932,7 @@ ul.lexassetscontent {
5825
5932
  height: inherit;
5826
5933
  }
5827
5934
 
5828
- .lexvideoeditor .lexwidget.nobranch {
5935
+ .lexvideoeditor .lexcomponent.nobranch {
5829
5936
  padding: 0;
5830
5937
  width: 100% !important;
5831
5938
  }
@@ -5948,11 +6055,13 @@ ul.lexassetscontent {
5948
6055
  .hover\:scale-xl:hover { transform: scale(1.25); transition: transform 0.3s cubic-bezier(.42,.97,.52,1.19); }
5949
6056
 
5950
6057
  .stroke-none { stroke: none }
6058
+ .fill-current { fill: currentColor }
5951
6059
 
5952
6060
  /* Layout */
5953
6061
 
5954
6062
  .flex { display: flex }
5955
- .inline-flex { display: inline-flex }
6063
+ .inline-flex { display: inline-flex !important }
6064
+ .inline-grid { display: inline-grid !important }
5956
6065
  .flex-fill { flex: 1 0 0% }
5957
6066
  .grid { display: grid }
5958
6067
  .block { display: block }
@@ -6023,6 +6132,15 @@ ul.lexassetscontent {
6023
6132
  .content-center { align-content: center }
6024
6133
  .content-end { align-content: end }
6025
6134
 
6135
+ .place-content-start { place-content: start }
6136
+ .place-content-center { place-content: center }
6137
+ .place-content-end { place-content: end }
6138
+
6139
+ .grid-column-start-1 { grid-column-start: 1 }
6140
+ .grid-column-start-2 { grid-column-start: 2 }
6141
+
6142
+ /* Spacing */
6143
+
6026
6144
  .gap-0 { gap: 0 }
6027
6145
  .gap-0\.5 { gap: 0.125rem }
6028
6146
  .gap-1 { gap: 0.25rem }
@@ -6038,8 +6156,6 @@ ul.lexassetscontent {
6038
6156
  .gap-11 { gap: 2.75rem }
6039
6157
  .gap-12 { gap: 3rem }
6040
6158
 
6041
- /* Spacing */
6042
-
6043
6159
  .mt-auto { margin-top: auto }
6044
6160
  .mb-auto { margin-bottom: auto }
6045
6161
  .ml-auto { margin-left: auto }
@@ -6128,6 +6244,10 @@ ul.lexassetscontent {
6128
6244
  .p-6 { padding: 1.5rem }
6129
6245
  .p-7 { padding: 1.75rem }
6130
6246
  .p-8 { padding: 2rem }
6247
+ .p-9 { padding: 2.25rem }
6248
+ .p-10 { padding: 2.5rem }
6249
+ .p-11 { padding: 2.75rem }
6250
+ .p-12 { padding: 3rem }
6131
6251
 
6132
6252
  .pt-0 { padding-top: 0 }
6133
6253
  .pt-1 { padding-top: 0.25rem }
@@ -6220,13 +6340,59 @@ ul.lexassetscontent {
6220
6340
 
6221
6341
  .uppercase { text-transform: uppercase }
6222
6342
  .capitalize { text-transform: capitalize }
6343
+ .decoration-none { text-decoration: none }
6223
6344
 
6224
6345
  /* Width / Height */
6225
6346
 
6226
6347
  .w-full { width: 100% }
6227
6348
  .w-screen { width: 100vw }
6349
+ .w-auto { width: auto }
6350
+
6351
+ .w-2\/3 { width: 66.666% }
6352
+ .w-1\/2 { width: 50% }
6353
+ .w-1\/3 { width: 33.333% }
6354
+ .w-1\/4 { width: 25% }
6355
+
6356
+ .w-1 { width: 0.25rem }
6357
+ .w-2 { width: 0.5rem }
6358
+ .w-3 { width: 0.75rem }
6359
+ .w-4 { width: 1rem } /* 16px */
6360
+ .w-5 { width: 1.25rem }
6361
+ .w-6 { width: 1.5rem }
6362
+ .w-7 { width: 1.75rem }
6363
+ .w-8 { width: 2rem }
6364
+ .w-9 { width: 2.25rem }
6365
+ .w-10 { width: 2.5rem }
6366
+ .w-11 { width: 2.75rem }
6367
+ .w-12 { width: 3rem }
6368
+ .w-13 { width: 3.25rem }
6369
+ .w-14 { width: 3.5rem }
6370
+ .w-15 { width: 3.75rem }
6371
+ .w-16 { width: 4rem } /* 64px */
6372
+ .w-32 { width: 8rem } /* 128px */
6373
+
6374
+
6228
6375
  .h-full { height: 100% }
6229
6376
  .h-screen { height: 100vh }
6377
+ .h-auto { height: auto }
6378
+
6379
+ .h-1 { height: 0.25rem }
6380
+ .h-2 { height: 0.5rem }
6381
+ .h-3 { height: 0.75rem }
6382
+ .h-4 { height: 1rem }
6383
+ .h-5 { height: 1.25rem }
6384
+ .h-6 { height: 1.5rem }
6385
+ .h-7 { height: 1.75rem }
6386
+ .h-8 { height: 2rem }
6387
+ .h-9 { height: 2.25rem }
6388
+ .h-10 { height: 2.5rem }
6389
+ .h-11 { height: 2.75rem }
6390
+ .h-12 { height: 3rem }
6391
+ .h-13 { height: 3.25rem }
6392
+ .h-14 { height: 3.5rem }
6393
+ .h-15 { height: 3.75rem }
6394
+ .h-16 { height: 4rem }
6395
+ .h-32 { height: 8rem }
6230
6396
 
6231
6397
  .resize-none { resize: none }
6232
6398
 
@@ -6255,6 +6421,7 @@ ul.lexassetscontent {
6255
6421
  /* Borders / Radius / Shadow */
6256
6422
 
6257
6423
  .border { border: 1px solid var(--global-color-tertiary) }
6424
+ .border-none { border: none }
6258
6425
  .border-colored { border: 1px solid currentColor }
6259
6426
 
6260
6427
  .border-solid { border-style: solid }
@@ -6278,16 +6445,16 @@ ul.lexassetscontent {
6278
6445
  .border-l-0 { border-left-width: 0 }
6279
6446
  .border-r-0 { border-right-width: 0 }
6280
6447
 
6281
- .rounded-none { border-radius: 0 }
6282
- .rounded-sm { border-radius: 0.125rem }
6283
- .rounded { border-radius: 0.25rem }
6284
- .rounded-md { border-radius: 0.375rem }
6285
- .rounded-lg { border-radius: 0.5rem }
6286
- .rounded-xl { border-radius: 0.75rem }
6287
- .rounded-2xl { border-radius: 1rem }
6288
- .rounded-3xl { border-radius: 1.5rem }
6289
- .rounded-full { border-radius: 9999px }
6290
- .rounded-inherit { border-radius: inherit }
6448
+ .rounded-none { border-radius: 0 !important }
6449
+ .rounded-sm { border-radius: 0.125rem !important }
6450
+ .rounded { border-radius: 0.25rem !important }
6451
+ .rounded-md { border-radius: 0.375rem !important }
6452
+ .rounded-lg { border-radius: 0.5rem !important }
6453
+ .rounded-xl { border-radius: 0.75rem !important }
6454
+ .rounded-2xl { border-radius: 1rem !important }
6455
+ .rounded-3xl { border-radius: 1.5rem !important }
6456
+ .rounded-full { border-radius: 9999px !important }
6457
+ .rounded-inherit { border-radius: inherit !important }
6291
6458
 
6292
6459
  .rounded-t-none { border-top-left-radius: 0; border-top-right-radius: 0 }
6293
6460
  .rounded-r-none { border-top-right-radius: 0; border-bottom-right-radius: 0 }
@@ -6330,4 +6497,111 @@ ul.lexassetscontent {
6330
6497
 
6331
6498
  .linear { transition-timing-function: linear }
6332
6499
  .ease-in { transition-timing-function: ease-in }
6333
- .ease-out { transition-timing-function: ease-out }
6500
+ .ease-out { transition-timing-function: ease-out }
6501
+
6502
+ /* Media queries for sizes */
6503
+
6504
+ @media (min-width: 768px) {
6505
+ .sm\:hidden { display: none !important }
6506
+ .sm\:block { display: block !important }
6507
+ .sm\:inline { display: inline !important }
6508
+ .sm\:flex { display: flex !important }
6509
+ .sm\:grid { display: grid !important }
6510
+ .sm\:inline-flex { display: inline-flex !important }
6511
+ .sm\:inline-block { display: inline-block !important }
6512
+ .sm\:flex-fill { flex: 1 0 0% !important }
6513
+
6514
+ .sm\:w-full { width: 100% !important }
6515
+ .sm\:w-screen { width: 100vw !important }
6516
+ .sm\:w-auto { width: auto !important }
6517
+ .sm\:h-full { height: 100% !important }
6518
+ .sm\:h-screen { height: 100vh !important }
6519
+ .sm\:h-auto { height: auto !important }
6520
+ .sm\:w-1\/2 { width: 50% !important }
6521
+ .sm\:w-1\/3 { width: 33.333% !important }
6522
+ .sm\:w-1\/4 { width: 25% !important }
6523
+ }
6524
+
6525
+ @media (min-width: 1024px) {
6526
+ .md\:hidden { display: none !important }
6527
+ .md\:block { display: block !important }
6528
+ .md\:inline { display: inline !important }
6529
+ .md\:flex { display: flex !important }
6530
+ .md\:grid { display: grid !important }
6531
+ .md\:inline-flex { display: inline-flex !important }
6532
+ .md\:inline-block { display: inline-block !important }
6533
+ .md\:flex-fill { flex: 1 0 0% !important }
6534
+
6535
+ .md\:w-full { width: 100% !important }
6536
+ .md\:w-screen { width: 100vw !important }
6537
+ .md\:w-auto { width: auto !important }
6538
+ .md\:h-full { height: 100% !important }
6539
+ .md\:h-screen { height: 100vh !important }
6540
+ .md\:h-auto { height: auto !important }
6541
+ .md\:w-1\/2 { width: 50% !important }
6542
+ .md\:w-1\/3 { width: 33.333% !important }
6543
+ .md\:w-1\/4 { width: 25% !important }
6544
+ }
6545
+
6546
+ @media (min-width: 1440px) {
6547
+ .lg\:hidden { display: none !important }
6548
+ .lg\:block { display: block !important }
6549
+ .lg\:inline { display: inline !important }
6550
+ .lg\:flex { display: flex !important }
6551
+ .lg\:grid { display: grid !important }
6552
+ .lg\:inline-flex { display: inline-flex !important }
6553
+ .lg\:inline-block { display: inline-block !important }
6554
+ .lg\:flex-fill { flex: 1 0 0% !important }
6555
+
6556
+ .lg\:w-full { width: 100% !important }
6557
+ .lg\:w-screen { width: 100vw !important }
6558
+ .lg\:w-auto { width: auto !important }
6559
+ .lg\:h-full { height: 100% !important }
6560
+ .lg\:h-screen { height: 100vh !important }
6561
+ .lg\:h-auto { height: auto !important }
6562
+ .lg\:w-1\/2 { width: 50% !important }
6563
+ .lg\:w-1\/3 { width: 33.333% !important }
6564
+ .lg\:w-1\/4 { width: 25% !important }
6565
+ }
6566
+
6567
+ @media (min-width: 1920px) {
6568
+ .xl\:hidden { display: none !important }
6569
+ .xl\:block { display: block !important }
6570
+ .xl\:inline { display: inline !important }
6571
+ .xl\:flex { display: flex !important }
6572
+ .xl\:grid { display: grid !important }
6573
+ .xl\:inline-flex { display: inline-flex !important }
6574
+ .xl\:inline-block { display: inline-block !important }
6575
+ .xl\:flex-fill { flex: 1 0 0% !important }
6576
+
6577
+ .xl\:w-full { width: 100% !important }
6578
+ .xl\:w-screen { width: 100vw !important }
6579
+ .xl\:w-auto { width: auto !important }
6580
+ .xl\:h-full { height: 100% !important }
6581
+ .xl\:h-screen { height: 100vh !important }
6582
+ .xl\:h-auto { height: auto !important }
6583
+ .xl\:w-1\/2 { width: 50% !important }
6584
+ .xl\:w-1\/3 { width: 33.333% !important }
6585
+ .xl\:w-1\/4 { width: 25% !important }
6586
+ }
6587
+
6588
+ @media (min-width: 2560px) {
6589
+ .xxl\:hidden { display: none !important }
6590
+ .xxl\:block { display: block !important }
6591
+ .xxl\:inline { display: inline !important }
6592
+ .xxl\:flex { display: flex !important }
6593
+ .xxl\:grid { display: grid !important }
6594
+ .xxl\:inline-flex { display: inline-flex !important }
6595
+ .xxl\:inline-block { display: inline-block !important }
6596
+ .xxl\:flex-fill { flex: 1 0 0% !important }
6597
+
6598
+ .xxl\:w-full { width: 100% !important }
6599
+ .xxl\:w-screen { width: 100vw !important }
6600
+ .xxl\:w-auto { width: auto !important }
6601
+ .xxl\:h-full { height: 100% !important }
6602
+ .xxl\:h-screen { height: 100vh !important }
6603
+ .xxl\:h-auto { height: auto !important }
6604
+ .xxl\:w-1\/2 { width: 50% !important }
6605
+ .xxl\:w-1\/3 { width: 33.333% !important }
6606
+ .xxl\:w-1\/4 { width: 25% !important }
6607
+ }