lexgui 0.4.1 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/lexgui.css CHANGED
@@ -1,9 +1,10 @@
1
+ /* clean-css ignore:start */
1
2
  @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');
2
-
3
3
  @font-face {
4
4
  font-family: "GoogleSans";
5
5
  src: url("https://raw.githubusercontent.com/jxarco/lexgui.js/master/data/GoogleSans.ttf");
6
6
  }
7
+ /* clean-css ignore:end */
7
8
 
8
9
  :root {
9
10
  /* default color scheme */
@@ -18,27 +19,35 @@
18
19
  --global-font-size-xl: 1.125rem; /* 18px */
19
20
  --global-font-size-xxl: 1.375rem; /* 22px */
20
21
 
21
- --global-color-primary: light-dark(#f3f3f3, #141414);
22
- --global-color-secondary: light-dark(#e4e4e4, #252525);
23
- --global-color-terciary: light-dark(#dcdcde, #3a3a3a);
24
- --global-color-quaternary: light-dark(#c6c6c6, #494949);
25
- --global-color-quinary: light-dark(#b5b5b5, #5c5c5c);
22
+ --global-color-primary: light-dark(#f5f5f6, #0f0f0f); /* Near White / Near Black */
23
+ --global-color-secondary: light-dark(#e8e8ea, #1c1c1c); /* Very Light Gray / Very Dark Gray */
24
+ --global-color-tertiary: light-dark(#d6d6d8, #292929); /* Soft Gray / Deep Gray */
25
+ --global-color-quaternary: light-dark(#bfbfc2, #404040); /* Muted Gray / Medium Dark */
26
+ --global-color-quinary: light-dark(#a5a5a8, #595959); /* Gentle Gray / Soft Dark Gray */
27
+
26
28
  --global-selected: #2d69da;
27
29
  --global-selected-light: #0d99ff;
28
30
  --global-selected-dark: #304b86;
29
31
  --global-color-accent: #ec5377;
30
32
  --global-color-warning: #ffc107;
31
33
  --global-color-error: #f54c4c;
32
- --global-button-color: light-dark(#f9f9f9, #3e3e3e);
33
- --global-button-color-hovered: light-dark(#ececec, #444);
34
- --global-text-primary: light-dark(#202124, #efeff1);
35
- --global-text-secondary: light-dark(#353636, #c8c8ca);
36
- --global-text-terciary: light-dark(#5a5a5af5, #929292);
37
- --global-text-quaternary: light-dark(#6b6a6af5, #777777);
38
- --global-intense-background: light-dark(#fefefe, #121212);
34
+ --global-button-color: light-dark(#f9f9f9, #363636);
35
+ --global-text-primary: light-dark(#0d0d0e, #f0efef);
36
+ --global-text-secondary: light-dark(#262627, #d1d1d3);
37
+ --global-text-tertiary: light-dark(#3c3c3df5, #aaaaaa);
38
+ --global-text-quaternary: light-dark(#515152f5, #807f7f);
39
+ --global-intense-background: light-dark(#fefefe, #09090a);
39
40
  --global-medium-background: #252525;
40
41
  --global-blur-background: light-dark(#f7f7f7d8, #1f1f1fe7);
41
- --global-color-transparent: #7b8ae200;
42
+ --global-color-transparent: #00000000;
43
+
44
+ --svg-size-xs: 0.7rem;
45
+ --svg-size-sm: 0.85rem;
46
+ --svg-size-md: 1rem;
47
+ --svg-size-lg: 1.25rem;
48
+ --svg-size-xl: 1.4rem;
49
+ --svg-size-xxl: 1.6rem;
50
+
42
51
  --code-editor-font-size: 14px;
43
52
  --code-editor-row-height: 20px;
44
53
  --graphnode-background: 17, 17, 17;
@@ -201,13 +210,14 @@ canvas {
201
210
  }
202
211
 
203
212
  .collapsible {
213
+ width: 100%;
204
214
  display: flex;
205
215
  }
206
216
 
207
217
  .collapsible a.collapser {
208
218
  --rotation: 90deg;
209
219
  transform: rotate(var(--rotation, 0deg));
210
- transition: transform 0.2s ease-out;
220
+ transition: transform 0.15s ease-out;
211
221
  }
212
222
 
213
223
  .collapsible a.collapser[data-collapsed] {
@@ -217,9 +227,10 @@ canvas {
217
227
  dialog {
218
228
  transition: display 0.1s allow-discrete, overlay 0.1s allow-discrete;
219
229
  animation: dialogHide 0.1s forwards;
220
- &[open] {
221
- animation: dialogShow 0.1s forwards;
222
- }
230
+ }
231
+
232
+ dialog[open] {
233
+ animation: dialogShow 0.1s forwards;
223
234
  }
224
235
 
225
236
  dialog::backdrop {
@@ -287,6 +298,12 @@ body.noevents * {
287
298
  pointer-events: none;
288
299
  }
289
300
 
301
+ svg.xs { width: var(--svg-size-xs); height: var(--svg-size-xs); }
302
+ svg.sm { width: var(--svg-size-sm); height: var(--svg-size-sm); }
303
+ svg.lg { width: var(--svg-size-lg); height: var(--svg-size-lg); }
304
+ svg.xl { width: var(--svg-size-xl); height: var(--svg-size-xl); }
305
+ svg.xxl { width: var(--svg-size-xxl); height: var(--svg-size-xxl); }
306
+
290
307
  #modal {
291
308
  left: 0;
292
309
  right: 0;
@@ -309,6 +326,7 @@ body.noevents * {
309
326
  width: 100%;
310
327
  height: 100%;
311
328
  position: absolute;
329
+ outline: none;
312
330
  }
313
331
 
314
332
  :root[data-strictVP="false"] {
@@ -328,6 +346,7 @@ body.noevents * {
328
346
  cursor: pointer;
329
347
  line-height: inherit !important;
330
348
  color: var(--global-text-secondary);
349
+ align-content: center;
331
350
  }
332
351
 
333
352
  .lexicon:hover {
@@ -336,6 +355,19 @@ body.noevents * {
336
355
 
337
356
  .lexicon:active {
338
357
  color: var(--global-text-secondary);
358
+ transform: scale(0.99);
359
+ }
360
+
361
+ svg, svg path {
362
+ width: 1rem;
363
+ height: 1rem;
364
+ --color: var(--global-text-secondary);
365
+ stroke: var(--color);
366
+ display: block;
367
+ }
368
+
369
+ svg path {
370
+ pointer-events: none;
339
371
  }
340
372
 
341
373
  .lexicon:hover svg, .lexicon:hover svg path {
@@ -371,7 +403,7 @@ body.noevents * {
371
403
  position: relative;
372
404
  width: calc(100% - 1.6rem);
373
405
  background-color: var(--global-intense-background);
374
- border: 1px solid var(--global-color-terciary);
406
+ border: 1px solid var(--global-color-tertiary);
375
407
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
376
408
  overflow: hidden;
377
409
  -webkit-user-select: none;
@@ -493,7 +525,7 @@ body.noevents * {
493
525
  .commandbar a {
494
526
  color: var(--global-text-secondary);
495
527
  padding: 10px;
496
- background-color: var(--global-color-terciary);
528
+ background-color: var(--global-color-tertiary);
497
529
  border-top-left-radius: 6px;
498
530
  border-bottom-left-radius: 6px;
499
531
  font-size: var(--global-font-size-sm);
@@ -506,7 +538,7 @@ body.noevents * {
506
538
  border-top-right-radius: 6px;
507
539
  border-bottom-right-radius: 6px;
508
540
  color: var(--global-text-secondary);
509
- background-color: var(--global-color-terciary);
541
+ background-color: var(--global-color-tertiary);
510
542
  outline: none;
511
543
  border: none;
512
544
  font-family: var(--global-font);
@@ -651,7 +683,6 @@ body.noevents * {
651
683
  max-width: 28px;
652
684
  max-height: 28px;
653
685
  transition: all .2s ease-in-out;
654
- fill: var(--global-text-secondary);
655
686
  }
656
687
 
657
688
  .lexfooter .social a {
@@ -673,6 +704,7 @@ body.noevents * {
673
704
 
674
705
  .lexfooter svg:hover {
675
706
  fill: var(--global-selected-light);
707
+ stroke: var(--global-selected-light);
676
708
  }
677
709
 
678
710
  .lexfooter hr {
@@ -698,6 +730,10 @@ body.noevents * {
698
730
  background-color: var(--global-color-secondary);
699
731
  }
700
732
 
733
+ .lexdialog:has(.lexselect) {
734
+ overflow: visible;
735
+ }
736
+
701
737
  .lexdialogtitle {
702
738
  outline: none;
703
739
  font-family: var(--global-title-font);
@@ -753,7 +789,7 @@ body.noevents * {
753
789
  }
754
790
 
755
791
  .lexdialogcloser:hover {
756
- color: var(--global-text-terciary);
792
+ color: var(--global-text-tertiary);
757
793
  }
758
794
 
759
795
  .lexdialogcloser:active {
@@ -843,18 +879,12 @@ body.noevents * {
843
879
  background: var(--global-blur-background);
844
880
  }
845
881
 
846
- :root[data-theme="light"] {
847
- .lexdialog {
848
- box-shadow: 0px 2px 6px #30303083;
849
- }
850
-
851
- .lexdialogtitle {
852
- text-shadow: 0px 2px 2px #8d8d8d34;
853
- }
882
+ :root[data-theme="light"] .lexdialog {
883
+ box-shadow: 0px 2px 6px #30303083;
884
+ }
854
885
 
855
- .lexpopup {
856
- background: var(--global-blur-background);
857
- }
886
+ :root[data-theme="light"] .lexdialogtitle {
887
+ text-shadow: 0px 2px 2px #8d8d8d34;
858
888
  }
859
889
 
860
890
  /* Generic */
@@ -868,6 +898,139 @@ body.noevents * {
868
898
  flex-direction: column;
869
899
  }
870
900
 
901
+ /* Dropdown Menu */
902
+
903
+ .lexdropdownmenu {
904
+ background-color: var(--global-color-primary);
905
+ font-size: var(--global-font-size);
906
+ position: fixed;
907
+ left: 0px;
908
+ top: 0px;
909
+ min-width: 172px;
910
+ max-width: 244px;
911
+ z-index: 150;
912
+ display: flex;
913
+ flex-direction: column;
914
+ padding: 0.2rem;
915
+ border-radius: 6px;
916
+ border: 1px solid #7a797c4f;
917
+ animation-duration: 400ms;
918
+ animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
919
+ will-change: transform, opacity;
920
+ }
921
+
922
+ .lexdropdownmenuitem {
923
+ display: flex;
924
+ flex-direction: row;
925
+ padding: 0.5rem;
926
+ border-radius: 6px;
927
+ gap: 0.5rem;
928
+ white-space: nowrap;
929
+ overflow: hidden;
930
+ text-overflow: ellipsis;
931
+ cursor: pointer;
932
+ transition: all 0.1s linear;
933
+ -webkit-user-select: none;
934
+ -moz-user-select: none;
935
+ -ms-user-select: none;
936
+ user-select: none;
937
+ }
938
+
939
+ .lexdropdownmenuitem.disabled {
940
+ color: var(--global-text-tertiary);
941
+ cursor: default;
942
+ }
943
+
944
+ .lexdropdownmenuitem.label {
945
+ font-weight: 600;
946
+ cursor: default;
947
+ }
948
+
949
+ .lexdropdownmenuitem:not(.label, .disabled):hover {
950
+ background-color: var(--global-color-tertiary);
951
+ }
952
+
953
+ .lexdropdownmenuitem:not(.label, .disabled):active {
954
+ transform: scale(0.99);
955
+ }
956
+
957
+ .lexdropdownmenuitem a {
958
+ margin-left: auto;
959
+ margin-right: 4px;
960
+ align-content: center;
961
+ pointer-events: none;
962
+ }
963
+
964
+ .lexdropdownmenuitem a:first-child {
965
+ margin: 0;
966
+ }
967
+
968
+ .lexdropdownmenu .separator {
969
+ width: calc(100% + 0.4rem);
970
+ translate: -0.2rem 0;
971
+ border-bottom: 1px solid;
972
+ border-color: var(--global-text-tertiary);
973
+ opacity: 0.25;
974
+ margin-block: 0.1rem;
975
+ }
976
+
977
+ .lexdropdownmenu[data-side="top"]{
978
+ animation-name: slideDownAndFade;
979
+ }
980
+ .lexdropdownmenu[data-side="right"]{
981
+ animation-name: slideLeftAndFade;
982
+ }
983
+ .lexdropdownmenu[data-side="bottom"]{
984
+ animation-name: slideUpAndFade;
985
+ }
986
+ .lexdropdownmenu[data-side="left"]{
987
+ animation-name: slideRightAndFade;
988
+ }
989
+
990
+ @keyframes slideUpAndFade {
991
+ from {
992
+ opacity: 0;
993
+ transform: translateY(8px);
994
+ }
995
+ to {
996
+ opacity: 1;
997
+ transform: translateY(0);
998
+ }
999
+ }
1000
+
1001
+ @keyframes slideRightAndFade {
1002
+ from {
1003
+ opacity: 0;
1004
+ transform: translateX(-8px);
1005
+ }
1006
+ to {
1007
+ opacity: 1;
1008
+ transform: translateX(0);
1009
+ }
1010
+ }
1011
+
1012
+ @keyframes slideDownAndFade {
1013
+ from {
1014
+ opacity: 0;
1015
+ transform: translateY(-8px);
1016
+ }
1017
+ to {
1018
+ opacity: 1;
1019
+ transform: translateY(0);
1020
+ }
1021
+ }
1022
+
1023
+ @keyframes slideLeftAndFade {
1024
+ from {
1025
+ opacity: 0;
1026
+ transform: translateX(8px);
1027
+ }
1028
+ to {
1029
+ opacity: 1;
1030
+ transform: translateX(0);
1031
+ }
1032
+ }
1033
+
871
1034
  /* Area */
872
1035
 
873
1036
  .lexarea {
@@ -940,8 +1103,10 @@ body.noevents * {
940
1103
  font-size: var(--global-font-size-lg);
941
1104
  color: var(--global-text-primary);
942
1105
  background-color: var(--global-color-secondary);
943
- text-shadow: 0px 1px 6px #5554547c;
1106
+ text-shadow: 0px 1px 6px #42424260;
1107
+ letter-spacing: calc(var(--global-font-size-lg) * 0.025);
944
1108
  padding: 10px;
1109
+ display: flex;
945
1110
  border-top-left-radius: 8px;
946
1111
  border-top-right-radius: 8px;
947
1112
  cursor: pointer;
@@ -963,7 +1128,7 @@ body.noevents * {
963
1128
  display: flex;
964
1129
  padding: 0px;
965
1130
  cursor: default;
966
- background-color: var(--global-color-terciary);
1131
+ background-color: var(--global-color-tertiary);
967
1132
  text-shadow: none;
968
1133
  color: #5f6770;
969
1134
  }
@@ -995,6 +1160,8 @@ body.noevents * {
995
1160
 
996
1161
  .lexbranch .branchicon {
997
1162
  font-size: var(--global-font-size);
1163
+ margin-right: 12px;
1164
+ align-content: center;
998
1165
  }
999
1166
 
1000
1167
  .lexbranch.first .lexbranchtitle {
@@ -1006,26 +1173,26 @@ body.noevents * {
1006
1173
  }
1007
1174
 
1008
1175
  .lexbranch .switch-branch-button {
1009
- float: right;
1010
1176
  font-size: var(--global-font-size-sm);
1011
- margin: 8px 6px -4px 2px;
1012
- transition: 0.1s;
1177
+ transition: transform 0.15s ease-out;
1178
+ margin-left: auto;
1179
+ margin-right: 8px;
1180
+ align-content: center;
1181
+ transform: rotate(90deg);
1013
1182
  }
1014
1183
 
1015
1184
  .lexbranch.closed .switch-branch-button {
1016
- transform: rotate(180deg);
1185
+ transform: rotate(0deg);
1017
1186
  }
1018
1187
 
1019
- :root[data-theme="light"] {
1020
- .lexbranchtitle {
1021
- color: var(--global-text-secondary);
1022
- background-color: var(--global-color-secondary);
1023
- text-shadow: 0px 2px 2px #e0e0e03a;
1024
- }
1188
+ :root[data-theme="light"] .lexbranchtitle {
1189
+ color: var(--global-text-secondary);
1190
+ background-color: var(--global-color-secondary);
1191
+ text-shadow: 0px 2px 2px #e0e0e03a;
1192
+ }
1025
1193
 
1026
- .lexbranch.closed .lexbranchtitle {
1027
- background-color: inherit;
1028
- }
1194
+ :root[data-theme="light"] .lexbranch.closed .lexbranchtitle {
1195
+ background-color: inherit;
1029
1196
  }
1030
1197
 
1031
1198
  /* Widgets */
@@ -1061,7 +1228,7 @@ body.noevents * {
1061
1228
  }
1062
1229
 
1063
1230
  .lexwidget.nobranch {
1064
- padding-left: 12px;
1231
+ width: calc(100% - 10px);
1065
1232
  }
1066
1233
 
1067
1234
  .lexwidget.auto {
@@ -1104,7 +1271,7 @@ body.noevents * {
1104
1271
  height: 2px;
1105
1272
  width: 11px;
1106
1273
  cursor: ew-resize;
1107
- color: var(--global-text-terciary);
1274
+ color: var(--global-text-tertiary);
1108
1275
  }
1109
1276
 
1110
1277
  .lexwidgetseparator div:hover {
@@ -1151,8 +1318,8 @@ body.noevents * {
1151
1318
  background-color: var(--global-button-color);
1152
1319
  }
1153
1320
 
1154
- .lexwidget .lextext:not(:has(div)):hover {
1155
- background-color: var(--global-button-color-hovered);
1321
+ .lexwidget input:not(.lexcheckbox, .lextoggle, .lexrangeslider):hover {
1322
+ background-color: color-mix(in srgb, var(--global-button-color), #000 7%);
1156
1323
  }
1157
1324
 
1158
1325
  .lexwidget .lextext input {
@@ -1218,7 +1385,7 @@ body.noevents * {
1218
1385
  .lexwidget input:disabled:not(.lextoggle) {
1219
1386
  outline: none;
1220
1387
  border: none;
1221
- color: var(--global-text-terciary);
1388
+ color: var(--global-text-tertiary);
1222
1389
  }
1223
1390
 
1224
1391
  .lexseparator {
@@ -1235,15 +1402,13 @@ body.noevents * {
1235
1402
  margin: 5px 0 5px 4px;
1236
1403
  }
1237
1404
 
1238
- :root[data-theme="light"] {
1239
- .lexwidget .lextext {
1240
- border: 1px solid var(--global-color-terciary) !important;
1241
- }
1405
+ :root[data-theme="light"] .lexwidget .lextext {
1406
+ border: 1px solid var(--global-color-tertiary) !important;
1407
+ }
1242
1408
 
1243
- .lexbranch .lexseparator {
1244
- border-top: 1px solid #e7e7e7;
1245
- border-bottom: 1px solid #c1c1c1;
1246
- }
1409
+ :root[data-theme="light"] .lexbranch .lexseparator {
1410
+ border-top: 1px solid #e7e7e7;
1411
+ border-bottom: 1px solid #c1c1c1;
1247
1412
  }
1248
1413
 
1249
1414
  .lextitle {
@@ -1256,6 +1421,7 @@ body.noevents * {
1256
1421
  padding: 2px;
1257
1422
  padding-left: 12px;
1258
1423
  padding-right: 12px;
1424
+ line-height: 1.5;
1259
1425
  display: grid;
1260
1426
  align-content: center;
1261
1427
  border-radius: 12px;
@@ -1301,7 +1467,6 @@ body.noevents * {
1301
1467
  background-color: var(--button-color);
1302
1468
  border-radius: 6px;
1303
1469
  border: 1px solid transparent;
1304
- /* margin-top: 2px; */
1305
1470
  min-height: 22px !important;
1306
1471
  color: var(--global-text-primary);
1307
1472
  font-weight: 500;
@@ -1314,16 +1479,14 @@ body.noevents * {
1314
1479
  padding: 0.35rem;
1315
1480
  }
1316
1481
 
1317
- :root[data-theme="light"] {
1318
- .lexbutton {
1319
- --button-color: var(--global-button-color);
1320
- border: 1px solid var(--global-color-terciary);
1321
- }
1482
+ :root[data-theme="light"] .lexbutton {
1483
+ --button-color: var(--global-button-color);
1484
+ border: 1px solid var(--global-color-tertiary);
1485
+ }
1322
1486
 
1323
- .lexbutton.selected {
1324
- background: #3c4145;
1325
- color: #DDD;
1326
- }
1487
+ :root[data-theme="light"] .lexbutton.selected {
1488
+ background: #3c4145;
1489
+ color: #DDD;
1327
1490
  }
1328
1491
 
1329
1492
  /* Colors */
@@ -1366,11 +1529,11 @@ body.noevents * {
1366
1529
  .lexbutton a {
1367
1530
  margin-left: 0px;
1368
1531
  font-size: var(--global-font-size-sm);
1532
+ pointer-events: none;
1369
1533
  }
1370
1534
 
1371
1535
  .lexbutton.array span {
1372
1536
  display: inline-flex;
1373
- margin-left: 8px;
1374
1537
  }
1375
1538
 
1376
1539
  .lexbutton.array a {
@@ -1391,7 +1554,7 @@ body.noevents * {
1391
1554
  }
1392
1555
 
1393
1556
  .lexbutton:disabled {
1394
- color: var(--global-text-terciary);
1557
+ color: var(--global-text-tertiary);
1395
1558
  }
1396
1559
 
1397
1560
  .lexbutton.selected {
@@ -1408,7 +1571,7 @@ body.noevents * {
1408
1571
 
1409
1572
  .lexcombobuttons .lexcombobuttonsbox {
1410
1573
  display: flex;
1411
- background-color: light-dark(var(--global-color-terciary), var(--global-button-color));
1574
+ background-color: light-dark(var(--global-color-tertiary), var(--global-button-color));
1412
1575
  width: max-content;
1413
1576
  justify-self: center;
1414
1577
  padding: 3px;
@@ -1454,71 +1617,77 @@ body.noevents * {
1454
1617
  font-size: var(--global-font-size-sm);
1455
1618
  }
1456
1619
 
1457
- /* Dropdown (Combo) */
1620
+ /* Select (Combobox) */
1458
1621
 
1459
- .lexdropdown {
1622
+ .lexselect {
1460
1623
  display: grid;
1461
1624
  align-content: center;
1462
1625
  position: relative;
1463
1626
  }
1464
1627
 
1465
- .lexdropdown .lexwidget {
1628
+ .lexselect .lexwidget {
1466
1629
  padding: 0;
1467
1630
  }
1468
1631
 
1469
- .lexdropdown .lexfilter {
1632
+ .lexselect .lexfilter {
1470
1633
  width: calc(100% - 6px) !important;
1471
1634
  padding: 2px 3px;
1472
1635
  background-color: var(--global-color-primary);
1473
1636
  border-bottom: 1px solid;
1474
- border-color: color-mix(in srgb, var(--global-text-terciary), #00000000 75%);
1637
+ border-color: color-mix(in srgb, var(--global-text-tertiary), #00000000 75%);
1638
+ }
1639
+
1640
+ .lexselect .lexfilter input:hover {
1641
+ background-color: var(--global-color-primary);
1475
1642
  }
1476
1643
 
1477
- .lexdropdown .lexfilter a {
1644
+ .lexselect .lexfilter a {
1478
1645
  font-size: var(--global-font-size-sm);
1479
1646
  padding-inline: 4px;
1480
1647
  }
1481
1648
 
1482
- .lexdropdown ul .lexlistitem {
1649
+ .lexselect ul .lexlistitem {
1483
1650
  font-size: var(--global-font-size-sm);
1484
1651
  }
1485
1652
 
1486
- .lexdropdown .option {
1653
+ .lexselect .option {
1487
1654
  display: flex;
1488
- flex-direction: column;
1489
1655
  align-items: center;
1490
1656
  width: 100%;
1491
1657
  position: relative;
1492
1658
  }
1493
1659
 
1494
- .lexdropdown .option:not(.media) {
1495
- padding-left: 12px;
1660
+ .lexselect .option.media {
1661
+ flex-direction: column;
1496
1662
  }
1497
1663
 
1498
- .lexdropdown .lexlistitem {
1664
+ .lexselect .lexlistitem {
1499
1665
  height: fit-content;
1500
1666
  }
1501
1667
 
1502
- .lexdropdown .lexdropdownoptions {
1668
+ .lexselect .lexselectoptions {
1503
1669
  background-color: var(--global-color-primary);
1504
1670
  -webkit-backdrop-filter: blur(10px);
1505
1671
  backdrop-filter: blur(10px);
1506
1672
  margin: 0;
1507
1673
  padding: 0;
1508
- border: none;
1509
1674
  outline: none;
1510
1675
  width: fit-content;
1511
1676
  max-height: -webkit-fill-available;
1512
1677
  position: fixed;
1513
1678
  z-index: 10000;
1514
1679
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.603);
1515
- border-bottom-left-radius: 6px;
1516
- border-bottom-right-radius: 6px;
1680
+ border-radius: 6px;
1681
+ border: 1px solid #7a797c4f;
1517
1682
  overflow-y: auto;
1518
1683
  overflow-x: hidden;
1519
1684
  }
1520
1685
 
1521
- .lexdropdown ul {
1686
+ dialog .lexselect .lexselectoptions {
1687
+ max-height: none;
1688
+ }
1689
+
1690
+ .lexselect ul {
1522
1691
  list-style: none;
1523
1692
  padding: 0px;
1524
1693
  z-index: 10;
@@ -1527,81 +1696,89 @@ body.noevents * {
1527
1696
  height: 100%;
1528
1697
  }
1529
1698
 
1530
- .lexdropdown .lexdropdownoptions.place-above {
1531
- /* max-height: unset; */
1532
- border-bottom-left-radius: 0px;
1533
- border-bottom-right-radius: 0px;
1534
- border-top-left-radius: 6px;
1535
- border-top-right-radius: 6px;
1699
+ .lexselect ul .lexselectinnerlist {
1700
+ width: calc(100% - 0.6rem);
1701
+ height: calc(100% - 25px);
1702
+ padding: 0.3rem;
1703
+ display: grid;
1536
1704
  }
1537
1705
 
1538
- .lexdropdown .lexdropdownitem {
1539
- width: 100%;
1706
+ .lexselect .lexselectitem {
1707
+ width: calc(100% - 0.7rem);
1540
1708
  cursor: pointer;
1541
1709
  color: var(--global-text-primary);
1542
1710
  min-height: 20px;
1543
1711
  line-height: 22px;
1712
+ padding-inline: 0.35rem;
1713
+ padding-block: 0.2rem;
1714
+ border-radius: 6px;
1544
1715
  align-content: center;
1545
1716
  display: flow-root;
1546
- padding: 2px 0px;
1547
- padding-right: 32px;
1548
1717
  -webkit-user-select: none;
1549
1718
  -moz-user-select: none;
1550
1719
  -ms-user-select: none;
1551
1720
  user-select: none;
1552
1721
  }
1553
1722
 
1554
- .lexdropdown .lexdropdownitem.empty {
1723
+ .lexselect .lexselectlabel {
1724
+ width: calc(100% - 1.6rem);
1725
+ color: var(--global-text-primary);
1726
+ padding-inline: 0.8rem;
1727
+ padding-block: 0.2rem;
1728
+ min-height: 20px;
1729
+ line-height: 22px;
1730
+ align-content: center;
1731
+ display: flow-root;
1732
+ font-weight: 600;
1733
+ }
1734
+
1735
+ .lexselect .lexselectitem.empty {
1555
1736
  cursor: default;
1556
1737
  }
1557
1738
 
1558
- .lexdropdown .lexdropdownitem.empty .option {
1739
+ .lexselect .lexselectitem.empty .option {
1559
1740
  padding: 12px;
1560
1741
  }
1561
1742
 
1562
- .lexdropdown .lexdropdownitem:not(.empty):hover {
1563
- background-color: var(--global-selected);
1564
- color: var(--global-text-primary);
1743
+ .lexselect .lexselectitem:not(.empty):hover {
1744
+ background-color: var(--global-color-tertiary);
1565
1745
  }
1566
1746
 
1567
- .lexdropdown .lexdropdownitem:not(.empty):active {
1747
+ .lexselect .lexselectitem:not(.empty):active {
1568
1748
  color: #fff;
1569
1749
  }
1570
1750
 
1571
- .lexdropdown .lexdropdownitem a {
1751
+ .lexselect .lexselectitem a {
1572
1752
  display: none;
1573
- right: 24px;
1574
- position: absolute;
1753
+ margin-left: auto;
1754
+ margin-right: 8px;
1575
1755
  }
1576
1756
 
1577
- .lexdropdown .lexdropdownitem.selected {
1757
+ .lexselect .lexselectitem.selected {
1578
1758
  font-weight: 700;
1579
1759
  }
1580
1760
 
1581
- .lexdropdown .lexdropdownitem.selected a {
1761
+ .lexselect .lexselectitem.selected a {
1582
1762
  display: block;
1583
1763
  }
1584
1764
 
1585
- .lexdropdown img {
1765
+ .lexselect img {
1586
1766
  max-height: 64px;
1587
1767
  margin-top: 8px;
1588
1768
  }
1589
1769
 
1590
- :root[data-theme="light"] {
1591
-
1592
- .lexdropdown .lexfilter {
1593
- background-color: var(--global-color-primary);
1594
- }
1770
+ :root[data-theme="light"] .lexselect .lexfilter {
1771
+ background-color: var(--global-color-primary);
1772
+ }
1595
1773
 
1596
- .lexdropdown ul {
1597
- background-color: var(--global-color-primary);
1598
- box-shadow: 0 0px 6px rgba(175, 175, 175, 0.788);
1599
- }
1774
+ :root[data-theme="light"] .lexselect ul {
1775
+ background-color: var(--global-color-primary);
1776
+ box-shadow: 0 0px 6px rgba(175, 175, 175, 0.788);
1777
+ }
1600
1778
 
1601
- .lexdropdown .lexdropdownitem:hover {
1602
- background-color: var(--global-selected-light);
1603
- color: #fff;
1604
- }
1779
+ :root[data-theme="light"] .lexselect .lexselectitem:hover {
1780
+ background-color: var(--global-selected-light);
1781
+ color: #fff;
1605
1782
  }
1606
1783
 
1607
1784
  /* Check box */
@@ -1661,21 +1838,20 @@ body.noevents * {
1661
1838
  }
1662
1839
 
1663
1840
  .lexcheckboxcont {
1664
- font-weight: bold;
1665
1841
  display: inline-flex;
1666
1842
  gap: 8px;
1667
1843
  margin: 0 auto;
1668
1844
  }
1669
1845
 
1670
- .lexcheckboxcont .checkboxtext {
1671
- font-weight: bold;
1672
- }
1673
-
1674
1846
  .lexcheckboxsubmenu {
1675
1847
  width: 100%;
1676
- padding: 6px;
1848
+ padding: 4px;
1849
+ padding-inline: 8px;
1677
1850
  color: var(--global-text-secondary);
1678
- margin-top: -1px;
1851
+ }
1852
+
1853
+ .lexcheckboxsubmenu .lexwidget {
1854
+ width: 100% !important;
1679
1855
  }
1680
1856
 
1681
1857
  /* Toggle Widget */
@@ -1797,12 +1973,12 @@ body.noevents * {
1797
1973
  }
1798
1974
 
1799
1975
  .lextoggle:disabled {
1800
- border: 1px solid var(--global-text-terciary);
1976
+ border: 1px solid var(--global-text-tertiary);
1801
1977
  cursor: not-allowed;
1802
1978
  }
1803
1979
 
1804
1980
  .lextoggle:disabled:before {
1805
- background-color: var(--global-text-terciary);
1981
+ background-color: var(--global-text-tertiary);
1806
1982
  }
1807
1983
 
1808
1984
  .lextogglecont {
@@ -1829,6 +2005,7 @@ body.noevents * {
1829
2005
  width: 100% !important;
1830
2006
  display: flex;
1831
2007
  flex-direction: column;
2008
+ padding: 0.1em;
1832
2009
  }
1833
2010
 
1834
2011
  .lexradiogroup span {
@@ -1837,7 +2014,8 @@ body.noevents * {
1837
2014
 
1838
2015
  .lexradiogroup .lexradiogroupitem {
1839
2016
  display: flex;
1840
- padding: 2px;
2017
+ padding: 0.1em;
2018
+ padding-inline: 1.4em;
1841
2019
  gap: 0.65em;
1842
2020
  }
1843
2021
 
@@ -1948,16 +2126,12 @@ body.noevents * {
1948
2126
  transition: 0.1s linear;
1949
2127
  }
1950
2128
 
1951
- .lexwidget.nobranch .lexvector .vecbox {
1952
- background: var(--global-button-color-hovered);
1953
- }
1954
-
1955
2129
  .lexvector a.fa-lock {
1956
2130
  min-width: 12px;
1957
2131
  }
1958
2132
 
1959
2133
  .lexvector .vecbox:hover {
1960
- background: var(--global-button-color-hovered);
2134
+ background-color: color-mix(in srgb, var(--global-button-color), #000 7%);
1961
2135
  }
1962
2136
 
1963
2137
  .lexwidget.nobranch .lexvector .vecbox:hover {
@@ -2050,7 +2224,7 @@ input[type=number] {
2050
2224
  }
2051
2225
 
2052
2226
  .lexwidget .numberbox:hover {
2053
- background-color: var(--global-button-color-hovered);
2227
+ background-color: color-mix(in srgb, var(--global-button-color), #000 7%);
2054
2228
  }
2055
2229
 
2056
2230
  .lexwidget .numberbox:has(input:focus) {
@@ -2249,7 +2423,7 @@ input[type=number] {
2249
2423
 
2250
2424
  .lexwidget .lexpad .lexinnerpad {
2251
2425
  border-radius: 4px;
2252
- background-color: light-dark(var(--global-color-terciary), var(--global-intense-background));
2426
+ background-color: light-dark(var(--global-color-tertiary), var(--global-intense-background));
2253
2427
  }
2254
2428
 
2255
2429
  .lexwidget .lexpad .lexinnerpad .lexpadthumb {
@@ -2331,7 +2505,7 @@ input[type=number] {
2331
2505
 
2332
2506
  .lextree {
2333
2507
  border-radius: 6px;
2334
- width: calc(100% - 6px);
2508
+ width: 100%;
2335
2509
  min-height: 12px;
2336
2510
  margin: 0 auto;
2337
2511
  margin-top: 6px;
@@ -2385,6 +2559,9 @@ input[type=number] {
2385
2559
  .lextree ul {
2386
2560
  padding-bottom: 16px;
2387
2561
  padding-inline-start: 0px;
2562
+ display: flex;
2563
+ flex-direction: column;
2564
+ gap: 0.25rem;
2388
2565
  }
2389
2566
 
2390
2567
  .lextree input {
@@ -2401,8 +2578,11 @@ input[type=number] {
2401
2578
  .lextree .lextreeitem {
2402
2579
  list-style-type: none;
2403
2580
  align-items: center;
2404
- margin-bottom: 3px;
2405
2581
  line-height: 25px;
2582
+ display: inline-flex;
2583
+ white-space: nowrap;
2584
+ overflow: hidden;
2585
+ text-overflow: ellipsis;
2406
2586
  cursor: pointer;
2407
2587
  outline: none;
2408
2588
  border-radius: 6px;
@@ -2412,6 +2592,13 @@ input[type=number] {
2412
2592
  user-select: none;
2413
2593
  }
2414
2594
 
2595
+ .lextree .lextreeitem div {
2596
+ display: flex;
2597
+ gap: 0.25rem;
2598
+ margin-left: auto;
2599
+ margin-right: 8px;
2600
+ }
2601
+
2415
2602
  .lextree .lextreeitem img {
2416
2603
  width: 12px;
2417
2604
  height: 12px;
@@ -2424,6 +2611,7 @@ input[type=number] {
2424
2611
  width: 12px;
2425
2612
  height: 12px;
2426
2613
  margin-right: 6px;
2614
+ font-size: var(--global-font-size-sm);
2427
2615
  }
2428
2616
 
2429
2617
  .lextree .lextreeitem.draggingover {
@@ -2432,7 +2620,7 @@ input[type=number] {
2432
2620
 
2433
2621
  .lextree .lextreeitem:hover {
2434
2622
  color: var(--global-text-primary);
2435
- background: rgba(129, 132, 163, 0.191);
2623
+ background: var(--global-color-tertiary);
2436
2624
  }
2437
2625
 
2438
2626
  .lextree .lextreeitem.selected {
@@ -2440,35 +2628,13 @@ input[type=number] {
2440
2628
  background: light-dark(var(--global-selected-light), var(--global-selected));
2441
2629
  }
2442
2630
 
2443
- .lextree .lextreeitem a {
2444
- margin-right: 6px;
2445
- margin-top: 4px;
2446
- font-size: var(--global-font-size-sm);
2447
- }
2448
-
2449
2631
  .lextree .lextreeitem a.hierarchy {
2450
2632
  margin-right: 6px;
2451
2633
  margin-top: 4px;
2452
2634
  }
2453
2635
 
2454
- .lextree .lextreeitem a:hover {
2455
- color: var(--global-text-primary);
2456
- }
2457
-
2458
- .lextree .lextreeitem a:active {
2459
- color: var(--global-button-color);
2460
- margin-top: 6px;
2461
- }
2462
-
2463
- .lextree .lextreeitem.parent a {
2464
- font-size: var(--global-font-size-xs);
2465
- }
2466
-
2467
- .lextree .lextreeitem .itemicon {
2468
- font-size: var(--global-font-size-sm) !important;
2469
- float: right;
2470
- margin-top: 7px;
2471
- margin-right: 8px;
2636
+ .lextree .lextreeitem .lexicon {
2637
+ font-size: var(--global-font-size-sm);
2472
2638
  }
2473
2639
 
2474
2640
  .lextree .lextreeitem .itemicon:hover {
@@ -2503,19 +2669,19 @@ input[type=number] {
2503
2669
  }
2504
2670
 
2505
2671
  .lexfileinput::file-selector-button:hover {
2506
- background-color: var(--global-button-color-hovered);
2672
+ background-color: color-mix(in srgb, var(--global-button-color), #fff 4%);
2507
2673
  color: var(--global-text-primary);
2508
2674
  }
2509
2675
 
2510
- .lexfileinput::file-selector-button:active {
2511
- background-color: var(--global-color-terciary);
2676
+ .lexfileinput::file-selector-button:not(:disabled):active {
2677
+ background-color: var(--global-color-tertiary);
2512
2678
  color: var(--global-text-secondary);
2513
2679
  transform: scale(0.99);
2514
2680
  }
2515
2681
 
2516
2682
  .lexfileinput:disabled::file-selector-button {
2517
- cursor: not-allowed;
2518
- color: var(--global-text-terciary);
2683
+ cursor: default;
2684
+ color: var(--global-text-tertiary);
2519
2685
  }
2520
2686
 
2521
2687
  /* Progress bar */
@@ -2629,6 +2795,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2629
2795
  width: 100%;
2630
2796
  background-color: var(--global-color-primary);
2631
2797
  display: flex;
2798
+ overflow: hidden;
2632
2799
  height: 100%;
2633
2800
  color: var(--global-text-primary);
2634
2801
  font-size: var(--global-font-size);
@@ -2679,11 +2846,9 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2679
2846
  opacity: 0;
2680
2847
  }
2681
2848
 
2682
- :root[data-theme="light"] {
2683
- .lexmenubox {
2684
- background-color: #fffffff3;
2685
- box-shadow: 0px 6px 7px -3px #a7a7a7b7 !important;
2686
- }
2849
+ :root[data-theme="light"] .lexmenubox {
2850
+ background-color: #fffffff3;
2851
+ box-shadow: 0px 6px 7px -3px #a7a7a7b7 !important;
2687
2852
  }
2688
2853
 
2689
2854
  .lexmenubox[data-submenu] {
@@ -2736,7 +2901,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2736
2901
  }
2737
2902
 
2738
2903
  .lexmenubox .lexmenuboxentry.disabled {
2739
- color: var(--global-text-terciary);
2904
+ color: var(--global-text-tertiary);
2740
2905
  cursor: default;
2741
2906
  }
2742
2907
 
@@ -2803,7 +2968,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2803
2968
  width: -moz-calc(100% + 8px);
2804
2969
  width: -webkit-calc(100% + 8px);
2805
2970
  width: calc(100% + 8px);
2806
- border-color: var(--global-text-terciary);
2971
+ border-color: var(--global-text-tertiary);
2807
2972
  opacity: 0.25;
2808
2973
  }
2809
2974
 
@@ -2813,7 +2978,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2813
2978
  text-align: right;
2814
2979
  float: right;
2815
2980
  align-content: center;
2816
- color: var(--global-text-terciary);
2981
+ color: var(--global-text-tertiary);
2817
2982
  margin-right: 12px;
2818
2983
  }
2819
2984
 
@@ -2848,8 +3013,12 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2848
3013
  margin-left: 0px !important;
2849
3014
  }
2850
3015
 
3016
+ .lexmenubar .lexmenubutton.main a {
3017
+ font-size: var(--global-font-size-xxl);
3018
+ }
3019
+
2851
3020
  .lexmenubar .lexmenubutton.disabled a {
2852
- color: light-dark(var(--global-color-terciary), var(--global-button-color));
3021
+ color: light-dark(var(--global-color-tertiary), var(--global-button-color));
2853
3022
  cursor: default;
2854
3023
  }
2855
3024
 
@@ -2903,14 +3072,14 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2903
3072
  }
2904
3073
 
2905
3074
  .lexcontextmenu .lexmenuboxentry.cmtitle {
2906
- background: light-dark(var(--global-color-terciary), var(--global-intense-background));
3075
+ background: light-dark(var(--global-color-tertiary), var(--global-intense-background));
2907
3076
  font-weight: bold;
2908
3077
  cursor: default;
2909
3078
  }
2910
3079
 
2911
3080
  .lexcontextmenu .lexmenuboxentry.cmseparator {
2912
3081
  height: 1px;
2913
- border-bottom: 1px solid var(--global-color-terciary);
3082
+ border-bottom: 1px solid var(--global-color-tertiary);
2914
3083
  padding-bottom: 0;
2915
3084
  padding-top: 0;
2916
3085
  margin-top: -4px;
@@ -2975,13 +3144,8 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2975
3144
  gap: 0.2rem;
2976
3145
  }
2977
3146
 
2978
- .lexsidebar svg, .lexsidebar svg path {
2979
- width: 1rem;
2980
- height: 1rem;
2981
- --color: var(--global-text-secondary);
2982
- fill: var(--color);
2983
- stroke: var(--color);
2984
- display: block;
3147
+ .lexsidebar *::-webkit-scrollbar {
3148
+ display: none;
2985
3149
  }
2986
3150
 
2987
3151
  .lexsidebar .lexwidget {
@@ -3082,6 +3246,10 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3082
3246
  background-color: var(--global-color-secondary);
3083
3247
  }
3084
3248
 
3249
+ .lexsidebar .lexsidebarentry.selected {
3250
+ background-color: var(--global-selected);
3251
+ }
3252
+
3085
3253
  .lexsidebar .lexsidebarentry:active {
3086
3254
  transform: scale(0.99);
3087
3255
  }
@@ -3118,6 +3286,11 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3118
3286
  font-size: var(--global-font-size);
3119
3287
  }
3120
3288
 
3289
+ .lexsidebar .lexcheckbox {
3290
+ width: 1.25em;
3291
+ height: 1.25em;
3292
+ }
3293
+
3121
3294
  .lexsidebar .lexsidebarsubentrycontainer {
3122
3295
  width: calc(100% - 48px);
3123
3296
  margin-block-start: 4px;
@@ -3125,6 +3298,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3125
3298
  margin-left: 16px;
3126
3299
  padding-inline: 16px;
3127
3300
  display: flex;
3301
+ align-self: center;
3128
3302
  flex-direction: column;
3129
3303
  -webkit-user-select: none;
3130
3304
  -moz-user-select: none;
@@ -3134,11 +3308,16 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3134
3308
  border-left: 1px solid #5251514d;
3135
3309
  }
3136
3310
 
3311
+ .lexsidebar .collapsablecontainer {
3312
+ transition: transform 0.3s cubic-bezier(0,0,.2,1), opacity 0.1s cubic-bezier(0,0,.2,1), max-height 0.3s cubic-bezier(0,0,.2,1);
3313
+ padding-inline: 4px;
3314
+ }
3315
+
3137
3316
  .lexsidebar .lexsidebarsubentrycontainer:not(:has(div)) {
3138
3317
  margin: 0px;
3139
3318
  }
3140
3319
 
3141
- .lexsidebar.collapsing .lexsidebarsubentrycontainer {
3320
+ .lexsidebar.collapsing .collapsablecontainer {
3142
3321
  max-height: 0px;
3143
3322
  transform: translate(-8px, -8px);
3144
3323
  opacity: 0;
@@ -3150,34 +3329,19 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3150
3329
  gap: 0.8em;
3151
3330
  }
3152
3331
 
3153
- .lexsidebar.collapsed .lexsidebarsubentrycontainer {
3154
- display: none;
3332
+ .lexsidebar.collapsed .collapsablecontainer {
3333
+ display: none !important;
3155
3334
  }
3156
3335
 
3157
3336
  .lexsidebar.collapsed .lexsidebarcontent div a {
3158
3337
  display: none;
3159
3338
  }
3160
3339
 
3161
- /* .lexsidebar .lexsidebarentry a:hover {
3162
- border: 3px solid var(--global-selected);
3163
- background-color: var(--global-button-color-hovered);
3164
- }
3165
-
3166
- .lexsidebar .lexsidebarentry a:active {
3167
- font-size: 17px;
3168
- }
3169
-
3170
- .lexsidebar .lexsidebarentry.selected a {
3171
- background-color: var(--global-button-color-hovered);
3172
- border: 4px solid var(--global-selected);
3173
- } */
3174
-
3175
3340
  .lexsidebar .lexsidebarentry .lexsidebarentrydesc {
3176
3341
  position: absolute;
3177
- margin-top: -3px;
3178
3342
  margin-left: 32px;
3179
3343
  font-weight: 600;
3180
- background-color: var(--global-text-secondary);
3344
+ background-color: var(--global-text-primary);
3181
3345
  color: var(--global-color-primary);
3182
3346
  font-size: var(--global-font-size);
3183
3347
  border-radius: 6px;
@@ -3201,7 +3365,9 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3201
3365
  display: flex;
3202
3366
  border-radius: 8px;
3203
3367
  padding: 8px;
3368
+ font-size: var(--global-font-size);
3204
3369
  cursor: pointer;
3370
+ align-items: center;
3205
3371
  -webkit-user-select: none;
3206
3372
  -moz-user-select: none;
3207
3373
  -ms-user-select: none;
@@ -3225,18 +3391,21 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3225
3391
  background-color: var(--global-intense-background);
3226
3392
  }
3227
3393
 
3228
- .lexsidebar .lexavatar:has(svg) {
3394
+ .lexsidebar:not(.collapsing) .lexavatar:has(svg) {
3229
3395
  border: 1px solid #ffffff18;
3230
3396
  }
3231
3397
 
3232
3398
  .lexsidebar .lexsidebarfooter div, .lexsidebar .lexsidebarheader div {
3233
- width: calc(100% - 88px);
3234
3399
  height: 100%;
3400
+ transition: width 0.3s cubic-bezier(0,0,.2,1), padding-inline 0.3s cubic-bezier(0,0,.2,1);
3401
+ }
3402
+
3403
+ .lexsidebar .lexsidebarfooter div.infodefault, .lexsidebar .lexsidebarheader div.infodefault {
3404
+ width: calc(100% - 88px);
3235
3405
  padding-inline: 12px;
3236
3406
  justify-content: center;
3237
3407
  display: flex;
3238
3408
  flex-direction: column;
3239
- transition: width 0.3s cubic-bezier(0,0,.2,1), padding-inline 0.3s cubic-bezier(0,0,.2,1);
3240
3409
  }
3241
3410
 
3242
3411
  .lexsidebar .lexsidebarfooter div span, .lexsidebar .lexsidebarheader div span {
@@ -3258,6 +3427,10 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3258
3427
  align-content: center;
3259
3428
  }
3260
3429
 
3430
+ .lexsidebar .lexsidebarheader a.toggler {
3431
+ margin-left: auto;
3432
+ }
3433
+
3261
3434
  .lexsidebar .lexsidebarfooter svg, .lexsidebar .lexsidebarheader svg {
3262
3435
  place-self: center;
3263
3436
  }
@@ -3268,10 +3441,10 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3268
3441
  padding-inline: 0px;
3269
3442
  }
3270
3443
 
3271
- /* .lexsidebar.collapsed .lexsidebarfooter span, .lexsidebar.collapsed .lexsidebarfooter div,
3444
+ .lexsidebar.collapsed .lexsidebarfooter span, .lexsidebar.collapsed .lexsidebarfooter div,
3272
3445
  .lexsidebar.collapsed .lexsidebarheader span, .lexsidebar.collapsed .lexsidebarheader div {
3273
3446
  display: none;
3274
- } */
3447
+ }
3275
3448
 
3276
3449
  /* Overlay Buttons */
3277
3450
 
@@ -3288,17 +3461,16 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3288
3461
  width: auto !important;
3289
3462
  height: auto !important;
3290
3463
  justify-content: start;
3464
+ gap: 0.35em;
3291
3465
  z-index: 100;
3292
3466
  background-color: var(--global-color-secondary);
3293
3467
  margin: 8px;
3294
3468
  padding: 0.25em;
3295
- padding-bottom: 0.3em;
3296
3469
  border-radius: 12px;
3297
3470
  }
3298
3471
 
3299
3472
  .lexoverlaybuttons .lexwidget {
3300
3473
  padding: 0px;
3301
- margin-right: 6px;
3302
3474
  pointer-events: auto;
3303
3475
  min-width: 32px;
3304
3476
  }
@@ -3375,10 +3547,8 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3375
3547
  margin-left: 4px;
3376
3548
  }
3377
3549
 
3378
- :root[data-theme="light"] {
3379
- .lexoverlaybuttons .lexbutton img {
3380
- filter: invert(1);
3381
- }
3550
+ :root[data-theme="light"] .lexoverlaybuttons .lexbutton img {
3551
+ filter: invert(1);
3382
3552
  }
3383
3553
 
3384
3554
  .lexoverlaybuttons .lexbutton.selected {
@@ -3395,7 +3565,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3395
3565
 
3396
3566
  .lexoverlaybuttons .lexbutton:hover {
3397
3567
  color: var(--global-text-primary);
3398
- background: var(--global-button-color-hovered);
3568
+ background-color: color-mix(in srgb, var(--global-button-color), #fff 4%);
3399
3569
  }
3400
3570
 
3401
3571
  .lexoverlaybuttons .lexbutton.selected:hover {
@@ -3409,8 +3579,8 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3409
3579
 
3410
3580
  .lexoverlaybuttons .lexoverlaygroup {
3411
3581
  display: flex;
3412
- margin-right: 6px;
3413
- background-color: var(--global-color-terciary);
3582
+ flex: none;
3583
+ background-color: var(--global-color-tertiary);
3414
3584
  border-radius: 8px;
3415
3585
  }
3416
3586
 
@@ -3444,10 +3614,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3444
3614
  margin-right: 0px;
3445
3615
  }
3446
3616
 
3447
- .lexoverlaybuttons .lexwidget:last-child {
3448
- margin-right: 0px;
3449
- }
3450
-
3451
3617
  /* Area Tabs */
3452
3618
 
3453
3619
  .lexareatabs {
@@ -3458,7 +3624,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3458
3624
  }
3459
3625
 
3460
3626
  .lexareatabs.dockingtab {
3461
- background-color: #7cb9f34e;
3627
+ background-color: #9ebbd65e !important;
3462
3628
  }
3463
3629
 
3464
3630
  .lexareatabs .lexareatab {
@@ -3485,7 +3651,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3485
3651
  }
3486
3652
 
3487
3653
  .lexareatabs.row {
3488
- background-color: light-dark(var(--global-color-terciary), var(--global-button-color));
3654
+ background-color: light-dark(var(--global-color-tertiary), var(--global-button-color));
3489
3655
  border-radius: 8px;
3490
3656
  padding: 3px;
3491
3657
  margin: 6px;
@@ -3551,10 +3717,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3551
3717
  margin: 4px 7px !important;
3552
3718
  }
3553
3719
 
3554
- .lexareatabscontent {
3555
- /* overflow-y: scroll; */
3556
- }
3557
-
3558
3720
  .lexareatabscontent.folded {
3559
3721
  max-height: 0px;
3560
3722
  }
@@ -3572,21 +3734,15 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3572
3734
  height: 32px;
3573
3735
  border-radius: 8px;
3574
3736
  margin: auto 0;
3575
- }
3576
-
3577
- .lexavatar img {
3578
- width: 100%;
3579
- height: 100%;
3580
- }
3581
-
3582
- .lexavatar a svg {
3583
- width: 60%;
3584
- height: 100%;
3737
+ align-content: center;
3585
3738
  }
3586
3739
 
3587
3740
  .lexavatar * {
3588
3741
  border-radius: 8px;
3589
- width: 60%;
3742
+ }
3743
+
3744
+ .lexavatar img {
3745
+ width: 100%;
3590
3746
  height: 100%;
3591
3747
  }
3592
3748
 
@@ -3602,7 +3758,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3602
3758
  height: 128px;
3603
3759
  object-fit: cover;
3604
3760
  border-radius: 6px;
3605
- outline: 3px solid var(--global-text-terciary);
3761
+ outline: 3px solid var(--global-text-tertiary);
3606
3762
  }
3607
3763
 
3608
3764
  .lexcard:hover a {
@@ -3715,8 +3871,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3715
3871
  }
3716
3872
 
3717
3873
  .lexlistitem:hover {
3718
- background-color: var(--global-color-secondary);
3719
- color: var(--global-text-primary);
3874
+ background-color: var(--global-color-tertiary);
3720
3875
  }
3721
3876
 
3722
3877
  .lexlistitem:active {
@@ -3734,7 +3889,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3734
3889
  .lexwidget:has(.lexcheckboxsubmenu),
3735
3890
  .lexwidget:has(.lextogglesubmenu),
3736
3891
  .lexwidget:has(.lexcustomcontainer) {
3737
- background-color: light-dark(var(--global-color-terciary), var(--global-medium-background));
3892
+ background-color: light-dark(var(--global-color-tertiary), var(--global-medium-background));
3738
3893
  border-radius: 6px;
3739
3894
  }
3740
3895
 
@@ -3765,7 +3920,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3765
3920
  display: inline-flex;
3766
3921
  flex-wrap: wrap;
3767
3922
  line-height: 12px;
3768
- background-color: light-dark(var(--global-color-terciary), var(--global-button-color));
3923
+ background-color: light-dark(var(--global-color-tertiary), var(--global-button-color));
3769
3924
  border-radius: 8px;
3770
3925
  padding: 4px;
3771
3926
  }
@@ -3792,7 +3947,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3792
3947
  }
3793
3948
 
3794
3949
  .lextags .lextag a:hover {
3795
- color: light-dark(var(--global-text-terciary), var(--global-text-secondary));
3950
+ color: light-dark(var(--global-text-tertiary), var(--global-text-secondary));
3796
3951
  cursor: pointer;
3797
3952
  }
3798
3953
 
@@ -3820,6 +3975,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3820
3975
  .lexcounterbox .lexcounterlabel {
3821
3976
  width: 100%;
3822
3977
  margin-top: -18px;
3978
+ font-size: var(--global-font-size-sm);
3823
3979
  color: var(--global-text-secondary);
3824
3980
  }
3825
3981
 
@@ -3827,17 +3983,24 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3827
3983
 
3828
3984
  .lextable table {
3829
3985
  width: 100%;
3830
- border: 2px solid;
3831
- border-color: light-dark(#dbd8d8c0, #5c5b5b7a);
3986
+ border: 1px solid;
3987
+ border-color: light-dark(#dbd8d8c0, var(--global-button-color));
3832
3988
  border-collapse: separate;
3833
- /* border-left: 0; */
3834
3989
  border-radius: 8px;
3835
3990
  border-spacing: 0px;
3836
3991
  overflow: hidden;
3837
- background-color: var(--global-button-color);
3992
+ background-color: var(--global-color-primary);
3838
3993
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
3839
3994
  }
3840
3995
 
3996
+ .lextable svg, .lextable svg path {
3997
+ --color: var(--global-text-tertiary);
3998
+ }
3999
+
4000
+ .lextable svg.success, .lextable svg.success path {
4001
+ --color: #42d065 !important;
4002
+ }
4003
+
3841
4004
  thead {
3842
4005
  display: table-header-group;
3843
4006
  border-color: inherit;
@@ -3848,28 +4011,40 @@ tr {
3848
4011
  display: table-row;
3849
4012
  vertical-align: inherit;
3850
4013
  border-color: inherit;
4014
+ transition: transform 0.2s ease-in;
4015
+ }
4016
+
4017
+ tr:has(input:checked) {
4018
+ background-color: var(--global-color-tertiary);
4019
+ }
4020
+
4021
+ tr:hover, tr.dragging {
4022
+ background-color: var(--global-color-secondary);
4023
+ }
4024
+
4025
+ tr.dragging {
4026
+ transition: none !important;
4027
+ pointer-events: none;
3851
4028
  }
3852
4029
 
3853
4030
  th {
3854
- --th-color: light-dark(var(--global-text-quaternary), var(--global-text-primary));
4031
+ --th-color: var(--global-text-secondary);
3855
4032
  color: var(--th-color);
3856
- font-size: calc(var(--global-font-size) + 1px) !important;
4033
+ font-size: var(--global-font-size);
3857
4034
  cursor: pointer;
3858
4035
  transition: all 0.1s linear;
3859
- background-color: color-mix(in srgb, var(--global-button-color), #000 10%);
4036
+ background-color: var(--global-color-tertiary);
3860
4037
  -webkit-user-select: none;
3861
4038
  -moz-user-select: none;
3862
4039
  -ms-user-select: none;
3863
4040
  user-select: none;
3864
4041
  }
3865
4042
 
3866
- tr:hover {
3867
- background-color: color-mix(in srgb, var(--global-button-color), #000 7%);
3868
- }
3869
-
3870
- th a {
3871
- margin-left: 4px;
4043
+ th a, td a {
3872
4044
  font-size: var(--global-font-size-xs) !important;
4045
+ display: flex;
4046
+ margin-left: 0px !important;
4047
+ place-self: center;
3873
4048
  }
3874
4049
 
3875
4050
  th a:active {
@@ -3885,7 +4060,6 @@ th, td {
3885
4060
  padding-inline: 12px;
3886
4061
  text-align: left;
3887
4062
  vertical-align: top;
3888
- /* border-left: 2px solid red; */
3889
4063
  }
3890
4064
 
3891
4065
  th.sm, td.sm {
@@ -3894,9 +4068,12 @@ th.sm, td.sm {
3894
4068
 
3895
4069
  th .lexcheckbox, td .lexcheckbox {
3896
4070
  margin-top: 3px;
4071
+ width: 1.25em;
4072
+ height: 1.25em;
3897
4073
  }
3898
4074
 
3899
4075
  td {
4076
+ align-content: center;
3900
4077
  border-top: 2px solid;
3901
4078
  border-color: light-dark(#dbd8d8c0, #5c5b5b7a);
3902
4079
  }
@@ -3911,13 +4088,15 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
3911
4088
 
3912
4089
  .lextable .lextablebuttons {
3913
4090
  display: inline-flex;
3914
- gap: 8px;
4091
+ gap: 0.8rem;
3915
4092
  }
3916
4093
 
3917
- :root[data-theme="light"] {
3918
- .lextable table {
3919
- box-shadow: none;
3920
- }
4094
+ .lextable .lextablebuttons .lexicon {
4095
+ font-size: var(--global-font-size-sm) !important;
4096
+ }
4097
+
4098
+ :root[data-theme="light"] .lextable table {
4099
+ box-shadow: none;
3921
4100
  }
3922
4101
 
3923
4102
  /* Custom Widgets Widget */
@@ -4040,11 +4219,11 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4040
4219
  }
4041
4220
 
4042
4221
  .lexknob.disabled .knobmarker {
4043
- background-color: var(--global-text-terciary);
4222
+ background-color: var(--global-text-tertiary);
4044
4223
  }
4045
4224
 
4046
4225
  .lexknob.disabled .knobmarker {
4047
- background-color: var(--global-text-terciary);
4226
+ background-color: var(--global-text-tertiary);
4048
4227
  }
4049
4228
 
4050
4229
  .lexknob.sm .knobmarker {
@@ -4058,38 +4237,35 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4058
4237
  margin-top: 8px;
4059
4238
  }
4060
4239
 
4061
- :root[data-theme="light"] {
4062
-
4063
- .lexknob .knobcircle {
4064
- background: rgb(182, 182, 182);
4065
- background: linear-gradient(180deg, rgba(200, 200, 200, 1) 0%, rgba(160, 160, 160, 1) 100%);
4066
- box-shadow: 0px 0px 8px 2px #a3a3a379;
4067
- }
4240
+ :root[data-theme="light"] .lexknob .knobcircle {
4241
+ background: rgb(182, 182, 182);
4242
+ background: linear-gradient(180deg, rgba(200, 200, 200, 1) 0%, rgba(160, 160, 160, 1) 100%);
4243
+ box-shadow: 0px 0px 8px 2px #a3a3a379;
4244
+ }
4068
4245
 
4069
- /* Arc Indicator */
4070
- .lexknob .knobcircle::before {
4071
- border: 2px solid rgba(255, 255, 255, 0.2);
4072
- }
4246
+ /* Arc Indicator */
4247
+ :root[data-theme="light"] .lexknob .knobcircle::before {
4248
+ border: 2px solid rgba(255, 255, 255, 0.2);
4249
+ }
4073
4250
 
4074
- /* Tick Marks */
4075
- .lexknob.show-ticks .knobcircle::after {
4076
- background: repeating-conic-gradient(transparent 0deg,
4077
- rgba(50, 50, 50, 0.493) 1deg 3deg,
4078
- transparent 4deg calc(var(--knob-snap-mark) - 1deg));
4079
- }
4251
+ /* Tick Marks */
4252
+ :root[data-theme="light"] .lexknob.show-ticks .knobcircle::after {
4253
+ background: repeating-conic-gradient(transparent 0deg,
4254
+ rgba(50, 50, 50, 0.493) 1deg 3deg,
4255
+ transparent 4deg calc(var(--knob-snap-mark) - 1deg));
4256
+ }
4080
4257
 
4081
- .lexknob .innerknobcircle {
4082
- background-color: rgb(182, 182, 182);
4083
- }
4258
+ :root[data-theme="light"] .lexknob .innerknobcircle {
4259
+ background-color: rgb(182, 182, 182);
4260
+ }
4084
4261
 
4085
- .lexknob .knobmarker {
4086
- background-color: var(--global-selected-dark);
4087
- filter: brightness(1.5);
4088
- }
4262
+ :root[data-theme="light"] .lexknob .knobmarker {
4263
+ background-color: var(--global-selected-dark);
4264
+ filter: brightness(1.5);
4265
+ }
4089
4266
 
4090
- .lexknob.disabled .knobmarker {
4091
- background-color: var(--global-text-primary);
4092
- }
4267
+ :root[data-theme="light"] .lexknob.disabled .knobmarker {
4268
+ background-color: var(--global-text-primary);
4093
4269
  }
4094
4270
 
4095
4271
  /* Icon swap */
@@ -4185,7 +4361,6 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4185
4361
 
4186
4362
  .lextimeline .lextree {
4187
4363
  margin: 0px !important;
4188
- width: 100%;
4189
4364
  }
4190
4365
 
4191
4366
  .lextimeline .lextree .lextreeitem {
@@ -4210,7 +4385,7 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4210
4385
  }
4211
4386
 
4212
4387
  .lextimeline .lexbutton.accept:hover {
4213
- background-color: var(--global-button-color-hovered);
4388
+ background-color: color-mix(in srgb, var(--global-button-color), #000 7%);
4214
4389
  }
4215
4390
 
4216
4391
  /**/
@@ -4698,7 +4873,7 @@ ul.lexassetscontent {
4698
4873
  }
4699
4874
 
4700
4875
  .lexcodetabinfo {
4701
- background-color: light-dark(var(--global-color-terciary), var(--global-medium-background));
4876
+ background-color: light-dark(var(--global-color-tertiary), var(--global-medium-background));
4702
4877
  position: absolute;
4703
4878
  z-index: 3;
4704
4879
  bottom: 0px;
@@ -4708,7 +4883,7 @@ ul.lexassetscontent {
4708
4883
  .lexcodegutter {
4709
4884
  width: 48px;
4710
4885
  height: calc(100% - 65px);
4711
- background-color: light-dark(var(--global-color-terciary), var(--global-medium-background));
4886
+ background-color: light-dark(var(--global-color-tertiary), var(--global-medium-background));
4712
4887
  margin-top: 28px;
4713
4888
  overflow: hidden;
4714
4889
  position: absolute;
@@ -4717,7 +4892,7 @@ ul.lexassetscontent {
4717
4892
 
4718
4893
  .lexcodeeditor .codetabsarea {
4719
4894
  height: calc(100% - 64px) !important;
4720
- background-color: light-dark(var(--global-color-terciary), var(--global-medium-background));
4895
+ background-color: light-dark(var(--global-color-tertiary), var(--global-medium-background));
4721
4896
  overflow: scroll;
4722
4897
  }
4723
4898
 
@@ -4818,7 +4993,7 @@ ul.lexassetscontent {
4818
4993
  }
4819
4994
 
4820
4995
  .lexcodeeditor pre .line-gutter {
4821
- color: var(--global-text-terciary);
4996
+ color: var(--global-text-tertiary);
4822
4997
  width: 48px;
4823
4998
  height: var(--code-editor-row-height);
4824
4999
  font-size: var(--code-editor-font-size);
@@ -5016,7 +5191,7 @@ ul.lexassetscontent {
5016
5191
  }
5017
5192
 
5018
5193
  .lexcodeeditor .autocomplete pre:hover {
5019
- background-color: var(--global-color-terciary);
5194
+ background-color: var(--global-color-tertiary);
5020
5195
  cursor: pointer;
5021
5196
  }
5022
5197
 
@@ -5131,93 +5306,90 @@ ul.lexassetscontent {
5131
5306
 
5132
5307
  .cm-bln.markdown { color: #a1d2f0; } /* builtin */
5133
5308
 
5134
- :root[data-theme="light"] {
5135
-
5136
- .lexcodeeditor pre.active-line {
5137
- background-color: #c5c4c4ab;
5138
- }
5309
+ :root[data-theme="light"] .lexcodeeditor pre.active-line {
5310
+ background-color: #c5c4c4ab;
5311
+ }
5139
5312
 
5140
- .lexcodeeditor.disabled pre.active-line {
5141
- background: none;
5142
- }
5313
+ :root[data-theme="light"] .lexcodeeditor.disabled pre.active-line {
5314
+ background: none;
5315
+ }
5143
5316
 
5144
- .lexcodescrollbar div {
5145
- /* thumb */
5146
- background-color: #8383839d !important;
5147
- }
5317
+ :root[data-theme="light"] .lexcodescrollbar div {
5318
+ /* thumb */
5319
+ background-color: #8383839d !important;
5320
+ }
5148
5321
 
5149
- .lexcodescrollbar div:hover {
5150
- /* thumb */
5151
- background-color: #5e5e5ea9 !important;
5152
- }
5322
+ :root[data-theme="light"] .lexcodescrollbar div:hover {
5323
+ /* thumb */
5324
+ background-color: #5e5e5ea9 !important;
5325
+ }
5153
5326
 
5154
- .cm-str { color: #a15e3e; } /* string */
5155
- .cm-std { color: #a753c0; } /* statements & declarations */
5156
- .cm-kwd { color: #1967d2; } /* keyword */
5157
- .cm-com { color: #188038; } /* comment */
5327
+ :root[data-theme="light"] .cm-str { color: #a15e3e; } /* string */
5328
+ :root[data-theme="light"] .cm-std { color: #a753c0; } /* statements & declarations */
5329
+ :root[data-theme="light"] .cm-kwd { color: #1967d2; } /* keyword */
5330
+ :root[data-theme="light"] .cm-com { color: #188038; } /* comment */
5158
5331
 
5159
- .cm-typ.javascript { color: #0b9484; } /* type */
5160
- .cm-dec.javascript { color: #c5221f; } /* decimal */
5161
- .cm-sym.javascript { color: #333333; } /* symbol */
5162
- .cm-mtd.javascript { color: #539ac7 } /* method */
5332
+ :root[data-theme="light"] .cm-typ.javascript { color: #0b9484; } /* type */
5333
+ :root[data-theme="light"] .cm-dec.javascript { color: #c5221f; } /* decimal */
5334
+ :root[data-theme="light"] .cm-sym.javascript { color: #333333; } /* symbol */
5335
+ :root[data-theme="light"] .cm-mtd.javascript { color: #539ac7 } /* method */
5163
5336
 
5164
- .cm-typ.c { color: #0b9484; } /* type */
5165
- .cm-bln.c { color: #333333; } /* builtin */
5166
- .cm-dec.c { color: #c5221f; } /* decimal */
5167
- .cm-sym.c { color: #333333; } /* symbol */
5168
- .cm-mtd.c { color: #539ac7 } /* method */
5169
- .cm-ppc.c { color: #626262 } /* preprocessor */
5337
+ :root[data-theme="light"] .cm-typ.c { color: #0b9484; } /* type */
5338
+ :root[data-theme="light"] .cm-bln.c { color: #333333; } /* builtin */
5339
+ :root[data-theme="light"] .cm-dec.c { color: #c5221f; } /* decimal */
5340
+ :root[data-theme="light"] .cm-sym.c { color: #333333; } /* symbol */
5341
+ :root[data-theme="light"] .cm-mtd.c { color: #539ac7 } /* method */
5342
+ :root[data-theme="light"] .cm-ppc.c { color: #626262 } /* preprocessor */
5170
5343
 
5171
- .cm-typ.cpp { color: #0b9484; } /* type */
5172
- .cm-bln.cpp { color: #333333; } /* builtin */
5173
- .cm-dec.cpp { color: #c5221f; } /* decimal */
5174
- .cm-sym.cpp { color: #333333; } /* symbol */
5175
- .cm-mtd.cpp { color: #539ac7 } /* method */
5176
- .cm-ppc.cpp { color: #626262 } /* preprocessor */
5344
+ :root[data-theme="light"] .cm-typ.cpp { color: #0b9484; } /* type */
5345
+ :root[data-theme="light"] .cm-bln.cpp { color: #333333; } /* builtin */
5346
+ :root[data-theme="light"] .cm-dec.cpp { color: #c5221f; } /* decimal */
5347
+ :root[data-theme="light"] .cm-sym.cpp { color: #333333; } /* symbol */
5348
+ :root[data-theme="light"] .cm-mtd.cpp { color: #539ac7 } /* method */
5349
+ :root[data-theme="light"] .cm-ppc.cpp { color: #626262 } /* preprocessor */
5177
5350
 
5178
- .cm-sym.cmake { color: #a753c0; } /* symbol */
5351
+ :root[data-theme="light"] .cm-sym.cmake { color: #a753c0; } /* symbol */
5179
5352
 
5180
- .cm-kwd.css { color: #c49319; } /* keyword */
5181
- .cm-typ.css { color: #539ac7; } /* type */
5182
- .cm-bln.css { color: #2194ce; } /* builtin */
5183
- .cm-dec.css { color: #c5221f; } /* decimal */
5184
- .cm-sym.css { color: #a753c0; } /* symbol */
5353
+ :root[data-theme="light"] .cm-kwd.css { color: #c49319; } /* keyword */
5354
+ :root[data-theme="light"] .cm-typ.css { color: #539ac7; } /* type */
5355
+ :root[data-theme="light"] .cm-bln.css { color: #2194ce; } /* builtin */
5356
+ :root[data-theme="light"] .cm-dec.css { color: #c5221f; } /* decimal */
5357
+ :root[data-theme="light"] .cm-sym.css { color: #a753c0; } /* symbol */
5185
5358
 
5186
- .cm-dec.json { color: #c5221f; } /* decimal */
5187
- .cm-sym.json { color: #a753c0; } /* symbol */
5359
+ :root[data-theme="light"] .cm-dec.json { color: #c5221f; } /* decimal */
5360
+ :root[data-theme="light"] .cm-sym.json { color: #a753c0; } /* symbol */
5188
5361
 
5189
- .cm-typ.glsl { color: #0b9484; } /* type */
5190
- .cm-dec.glsl { color: #c5221f; } /* decimal */
5191
- .cm-mtd.glsl { color: #539ac7; } /* method */
5192
- .cm-sym.glsl { color: #a753c0; } /* symbol */
5362
+ :root[data-theme="light"] .cm-typ.glsl { color: #0b9484; } /* type */
5363
+ :root[data-theme="light"] .cm-dec.glsl { color: #c5221f; } /* decimal */
5364
+ :root[data-theme="light"] .cm-mtd.glsl { color: #539ac7; } /* method */
5365
+ :root[data-theme="light"] .cm-sym.glsl { color: #a753c0; } /* symbol */
5193
5366
 
5194
- .cm-typ.wgsl { color: #0b9484; } /* type */
5195
- .cm-dec.wgsl { color: #c5221f; } /* decimal */
5196
- .cm-mtd.wgsl { color: #539ac7; } /* method */
5197
- .cm-sym.wgsl { color: #a753c0; } /* symbol */
5198
- .cm-ppc.wgsl { color: #626262; } /* preprocessor */
5367
+ :root[data-theme="light"] .cm-typ.wgsl { color: #0b9484; } /* type */
5368
+ :root[data-theme="light"] .cm-dec.wgsl { color: #c5221f; } /* decimal */
5369
+ :root[data-theme="light"] .cm-mtd.wgsl { color: #539ac7; } /* method */
5370
+ :root[data-theme="light"] .cm-sym.wgsl { color: #a753c0; } /* symbol */
5371
+ :root[data-theme="light"] .cm-ppc.wgsl { color: #626262; } /* preprocessor */
5199
5372
 
5200
- .cm-typ.rust { color: #0b9484; } /* type */
5201
- .cm-dec.rust { color: #c5221f; } /* decimal */
5202
- .cm-sym.rust { color: #333333; } /* symbol */
5203
- .cm-mtd.rust { color: #539ac7 } /* method */
5373
+ :root[data-theme="light"] .cm-typ.rust { color: #0b9484; } /* type */
5374
+ :root[data-theme="light"] .cm-dec.rust { color: #c5221f; } /* decimal */
5375
+ :root[data-theme="light"] .cm-sym.rust { color: #333333; } /* symbol */
5376
+ :root[data-theme="light"] .cm-mtd.rust { color: #539ac7 } /* method */
5204
5377
 
5205
- .cm-typ.python { color: #0b9484; } /* type */
5206
- .cm-dec.python { color: #c5221f; } /* decimal */
5207
- .cm-sym.python { color: #333333; } /* symbol */
5208
- .cm-mtd.python { color: #539ac7 } /* method */
5378
+ :root[data-theme="light"] .cm-typ.python { color: #0b9484; } /* type */
5379
+ :root[data-theme="light"] .cm-dec.python { color: #c5221f; } /* decimal */
5380
+ :root[data-theme="light"] .cm-sym.python { color: #333333; } /* symbol */
5381
+ :root[data-theme="light"] .cm-mtd.python { color: #539ac7 } /* method */
5209
5382
 
5210
- .cm-dec.batch { color: #c5221f; } /* decimal */
5211
- .cm-sym.batch { color: #a753c0; } /* symbol */
5383
+ :root[data-theme="light"] .cm-dec.batch { color: #c5221f; } /* decimal */
5384
+ :root[data-theme="light"] .cm-sym.batch { color: #a753c0; } /* symbol */
5212
5385
 
5213
- .cm-bln.html { color: #539ac7; } /* builtin */
5214
- .cm-sym.html { color: #696969; } /* symbol */
5386
+ :root[data-theme="light"] .cm-bln.html { color: #539ac7; } /* builtin */
5387
+ :root[data-theme="light"] .cm-sym.html { color: #696969; } /* symbol */
5215
5388
 
5216
- .cm-bln.xml { color: #a1d2f0; } /* builtin */
5217
- .cm-sym.xml { color: #929292; } /* symbol */
5389
+ :root[data-theme="light"] .cm-bln.xml { color: #a1d2f0; } /* builtin */
5390
+ :root[data-theme="light"] .cm-sym.xml { color: #929292; } /* symbol */
5218
5391
 
5219
- .cm-bln.markdown { color: #a1d2f0; } /* builtin */
5220
- }
5392
+ :root[data-theme="light"] .cm-bln.markdown { color: #a1d2f0; } /* builtin */
5221
5393
 
5222
5394
  /* Node Graph */
5223
5395
 
@@ -5228,7 +5400,7 @@ ul.lexassetscontent {
5228
5400
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAA4lJREFUWEftl1FIk1EUx/9qOGtNU4wkC1RQEc2hD9P5oigqH1PxIQqhgYI+iHtIE0ZQKoZo6BDniFScsIcgCSEILMPhJBRCh6G+qKSopHy2iVnOudniyDdZY3NTJ/rghcvGuPvO7/zP/557Pz+c8/A75/i4cAAERNPGzTMXyFEBfwAB6+vrqoiIiMcA9gFYzhrEEeAKgKC1tbX6nZ2dh3t7e3UJCQnvAJgBWM8KxBkgWKvV3g8KCnoZFxfHZ1l2fHV1tS4vL+8rgD1OFZ+WxREgAMCN0tLSex0dHR9DQkJ4ra2tkMlkFoPBoGppaWlTqVQGrix/fUXhCEDfQwDcMRqNY9nZ2YKpqSkkJydDoVBYExMTN7a3t5vi4+M1AHZ9VRbnbXgdQOTs7OzbtrY2YV9f32GiUqkU7e3tFpPJNL6ystKckZExyvmDzHri4QxwFUDE2NhYvV6vL5HJZIHOT6ay1NTU2FiW7RoYGFBUVVWtnKYszgAU8KZarS5JSkpqEIlEfFepRUdHo7e3dzclJWVrc3NTERMT8/qkZXEGICOGSSQSYX9//yCfz6et6XYUFxdDrVbTNp1YWlpqT01NHTxuWZwB7Ea8y7LsF4ZhgicnJ90C8Hg8ZGZmQiwWo6GhAQaD4VV4ePgTDoK6qcfh6iw4MOL09PSbzs7O1O7u7v8eEhsbC4lEgtzcXLNYLPa32WyW5eXlaaPR+Hlubm64srJyAsAOAK+2qisAMuItnU73fH5+/lF5efmhEaurq9HY2GhZWFhYWlxcnNRqtd9UKtUsgF8AqEf8BLDF+eHEClDA8J6engcikahJKBReIwnS0tIwMjKyL5fLXyiVSqoLBfrDZWsCQJMyt/cIj/LTAlcKkBFDs7KykoaGhoYDAwPpkIJOp9u1Wq0fcnJyOgFscFlTMGrRdFbQpJ7glfR2OlcAjkbUMQwTWlBQgLKystWoqCgpgGVObsqYgh4roLMs7i4kZMTbMzMzGqVSmdbV1UXt+Gltbe17AD8A/PbVweQO4MCIo6OjcoFAIDWbzZ/S09ObAVDX2+Rk96rGnha5AyAjhmk0msL8/PxnDMOU6fX67wBYzmxeOdxTcHcmpN/JiILCwsLIiooKcVFR0TCX+bavpD/KhHYwHt2QAFA7JqfbHe9NYl6vOepWfHBHBECftL1o+kx6Twp4ncFpF16494LTJnTs/18qcKnAPygqQzAAgQjBAAAAAElFTkSuQmCC) 4 4, auto !important;
5229
5401
  }
5230
5402
 
5231
- .lexgraph .lexdropdown ul {
5403
+ .lexgraph .lexselect ul {
5232
5404
  max-height: unset;
5233
5405
  }
5234
5406
 
@@ -5269,6 +5441,7 @@ ul.lexassetscontent {
5269
5441
  left: 0;
5270
5442
  bottom: 0;
5271
5443
  right: 0;
5444
+ stroke: unset;
5272
5445
  }
5273
5446
 
5274
5447
  .lexgraph .box-selection-svg {