lexgui 0.5.1 → 0.5.3

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,8 +1,9 @@
1
1
  /* clean-css ignore:start */
2
+ @import url("utilities.css");
2
3
  @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');
3
4
  @font-face {
4
- font-family: "GoogleSans";
5
- src: url("https://raw.githubusercontent.com/jxarco/lexgui.js/master/data/GoogleSans.ttf");
5
+ font-family: "GeistSans";
6
+ src: url("https://raw.githubusercontent.com/jxarco/lexgui.js/master/data/GeistSans.ttf");
6
7
  }
7
8
  /* clean-css ignore:end */
8
9
 
@@ -10,8 +11,8 @@
10
11
  /* default color scheme */
11
12
  color-scheme: dark;
12
13
 
13
- --global-font: "GoogleSans", sans-serif;
14
- --global-title-font: "GoogleSans", sans-serif;
14
+ --global-font: "GeistSans", sans-serif;
15
+ --global-title-font: "GeistSans", sans-serif;
15
16
  --global-font-size-xs: 0.625rem; /* 10px */
16
17
  --global-font-size-sm: 0.75rem; /* 12px */
17
18
  --global-font-size: 0.875rem; /* 14px */
@@ -19,24 +20,21 @@
19
20
  --global-font-size-xl: 1.125rem; /* 18px */
20
21
  --global-font-size-xxl: 1.375rem; /* 22px */
21
22
 
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
-
28
- --global-selected: #2d69da;
29
- --global-selected-light: #0d99ff;
30
- --global-selected-dark: #304b86;
31
- --global-color-accent: #ec5377;
23
+ --global-color-primary: light-dark(#ffffff, #0b0b0c); /* Near White / Near Black */
24
+ --global-color-secondary: light-dark(#f4f4f5, #1c1c1d); /* Very Light Gray / Very Dark Gray */
25
+ --global-color-tertiary: light-dark(#e6e6e8, #2e2e2f); /* Soft Gray / Deep Gray */
26
+ --global-color-quaternary: light-dark(#cfcfd2, #363637); /* Muted Gray / Medium Dark */
27
+ --global-color-quinary: light-dark(#b5b5b8, #4e4e4f); /* Gentle Gray / Soft Dark Gray */
28
+ --global-color-accent: #2d69da;
29
+ --global-color-accent-light: #0d99ff;
30
+ --global-color-accent-dark: #304b86;
32
31
  --global-color-warning: #ffc107;
33
32
  --global-color-error: #f54c4c;
34
- --global-button-color: light-dark(#f9f9f9, #363636);
35
33
  --global-text-primary: light-dark(#0d0d0e, #f0efef);
36
34
  --global-text-secondary: light-dark(#262627, #d1d1d3);
37
35
  --global-text-tertiary: light-dark(#3c3c3df5, #aaaaaa);
38
36
  --global-text-quaternary: light-dark(#515152f5, #807f7f);
39
- --global-intense-background: light-dark(#fefefe, #09090a);
37
+ --global-intense-background: light-dark(#fefefe, #030304);
40
38
  --global-medium-background: #252525;
41
39
  --global-blur-background: light-dark(#f7f7f7d8, #1f1f1fe7);
42
40
  --global-color-transparent: #00000000;
@@ -155,13 +153,6 @@
155
153
  }
156
154
  }
157
155
 
158
- /* Some global colors */
159
-
160
- .orange { color: orange }
161
- .gray { color: gray }
162
- .dodgerblue { color: dodgerblue }
163
- .lightblue { color: #5aa8f7 }
164
-
165
156
  ::-webkit-scrollbar {
166
157
  height: 3px;
167
158
  width: 4px;
@@ -193,6 +184,12 @@ body {
193
184
  font-family: var(--global-font);
194
185
  }
195
186
 
187
+ *,
188
+ *::before,
189
+ *::after {
190
+ box-sizing: border-box;
191
+ }
192
+
196
193
  :root[data-strictVP="false"] {
197
194
  overflow-y: auto;
198
195
  }
@@ -202,7 +199,7 @@ blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
202
199
  }
203
200
 
204
201
  a:any-link {
205
- color: var(--global-selected-light);
202
+ color: var(--global-color-accent-light);
206
203
  }
207
204
 
208
205
  canvas {
@@ -284,19 +281,23 @@ body.noevents * {
284
281
  cursor: move;
285
282
  }
286
283
 
287
- .hidden {
288
- display: none !important;
284
+ .hidden-opacity {
285
+ opacity: 0 !important;
286
+ pointer-events: none;
289
287
  }
290
288
 
291
- .sticky {
292
- position: sticky;
293
- top: 0;
289
+ .ellipsis-overflow {
290
+ white-space: nowrap;
291
+ overflow: hidden;
292
+ text-overflow: ellipsis;
294
293
  }
295
294
 
296
- .hiddenOpacity {
297
- opacity: 0 !important;
298
- pointer-events: none;
299
- }
295
+ /* Some global colors */
296
+
297
+ .orange { color: orange }
298
+ .gray { color: gray }
299
+ .dodgerblue { color: dodgerblue }
300
+ .lightblue { color: #5aa8f7 }
300
301
 
301
302
  svg.xs { width: var(--svg-size-xs); height: var(--svg-size-xs); }
302
303
  svg.sm { width: var(--svg-size-sm); height: var(--svg-size-sm); }
@@ -324,7 +325,9 @@ svg.xxl { width: var(--svg-size-xxl); height: var(--svg-size-xxl); }
324
325
  top: 0;
325
326
  bottom: 0;
326
327
  width: 100%;
327
- height: 100%;
328
+ min-height: 100vh;
329
+ display: flex;
330
+ flex-direction: column;
328
331
  position: absolute;
329
332
  outline: none;
330
333
  }
@@ -347,6 +350,8 @@ svg.xxl { width: var(--svg-size-xxl); height: var(--svg-size-xxl); }
347
350
  line-height: inherit !important;
348
351
  color: var(--global-text-secondary);
349
352
  align-content: center;
353
+ border-radius: 4px;
354
+ transition: all 0.15s linear;
350
355
  }
351
356
 
352
357
  .lexicon:hover {
@@ -358,6 +363,10 @@ svg.xxl { width: var(--svg-size-xxl); height: var(--svg-size-xxl); }
358
363
  transform: scale(0.99);
359
364
  }
360
365
 
366
+ .lexicon.triggered {
367
+ background-color: var(--global-color-secondary);
368
+ }
369
+
361
370
  svg, svg path {
362
371
  width: 1rem;
363
372
  height: 1rem;
@@ -401,7 +410,7 @@ a svg, svg path {
401
410
  display: flex;
402
411
  flex-direction: row;
403
412
  position: relative;
404
- width: calc(100% - 1.6rem);
413
+ width: 100%;
405
414
  background-color: var(--global-intense-background);
406
415
  border: 1px solid var(--global-color-tertiary);
407
416
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
@@ -517,7 +526,7 @@ a svg, svg path {
517
526
 
518
527
  .commandbar .gs-header {
519
528
  width: 100%;
520
- height: 32px;
529
+ height: 44px;
521
530
  display: flex;
522
531
  padding: 6px;
523
532
  }
@@ -574,7 +583,7 @@ a svg, svg path {
574
583
  padding: 0px;
575
584
  margin-left: -28px;
576
585
  margin-top: 2px;
577
- color: var(--global-selected-light);
586
+ color: var(--global-color-accent-light);
578
587
  float: left;
579
588
  }
580
589
 
@@ -604,25 +613,20 @@ a svg, svg path {
604
613
  }
605
614
 
606
615
  .commandbar .searchitembox .searchitem.hovered {
607
- background-color: var(--global-selected);
616
+ background-color: var(--global-color-accent);
608
617
  color: #f5f5f5;
609
618
  }
610
619
 
611
620
  /* Footer */
612
621
 
613
622
  .lexfooter {
614
- min-height: 96px;
615
623
  background-color: var(--global-color-primary);
616
- padding: 15px;
624
+ padding: 0.5rem;
617
625
  width: 100%;
618
626
  font-size: var(--global-font-size);
619
627
  line-height: 1.25rem;
620
628
  }
621
629
 
622
- .lexfooter .wrapper {
623
- width: calc(100% - 30px);
624
- }
625
-
626
630
  .lexfooter .columns {
627
631
  display: grid;
628
632
  text-align: center;
@@ -638,11 +642,13 @@ a svg, svg path {
638
642
  .lexfooter h2 {
639
643
  margin-block-start: 0.83em;
640
644
  margin-block-end: 0.83em;
645
+ font-weight: 600;
641
646
  }
642
647
 
643
648
  .lexfooter ul li {
644
649
  margin-bottom: 8px;
645
- font-size: var(--global-font-size-lg);
650
+ font-size: var(--global-font-size);
651
+ color: var(--global-text-secondary);
646
652
  }
647
653
 
648
654
  .lexfooter a {
@@ -652,6 +658,7 @@ a svg, svg path {
652
658
  }
653
659
 
654
660
  .lexfooter .credits-and-socials {
661
+ color: var(--global-text-secondary);
655
662
  display: grid;
656
663
  align-items: center;
657
664
  grid-template-columns: 1fr 1fr;
@@ -699,12 +706,12 @@ a svg, svg path {
699
706
  }
700
707
 
701
708
  .lexfooter a:hover {
702
- color: var(--global-selected-light);
709
+ color: var(--global-color-accent-light);
703
710
  }
704
711
 
705
712
  .lexfooter svg:hover {
706
- fill: var(--global-selected-light);
707
- stroke: var(--global-selected-light);
713
+ fill: var(--global-color-accent-light);
714
+ stroke: var(--global-color-accent-light);
708
715
  }
709
716
 
710
717
  .lexfooter hr {
@@ -735,17 +742,17 @@ a svg, svg path {
735
742
  }
736
743
 
737
744
  .lexdialogtitle {
738
- outline: none;
745
+ width: 100%;
739
746
  font-family: var(--global-title-font);
740
747
  font-weight: 600;
741
748
  font-size: var(--global-font-size-xl);
742
749
  color: var(--global-text-secondary);
743
750
  text-shadow: 0px 1px 6px #22222283;
744
- width: calc(100% - 24px);
745
751
  padding: 12px;
746
752
  padding-left: 16px;
747
753
  border-top-left-radius: 8px;
748
754
  border-top-right-radius: 8px;
755
+ outline: none;
749
756
  display: flex;
750
757
  justify-content: space-between;
751
758
  -webkit-user-select: none;
@@ -756,6 +763,7 @@ a svg, svg path {
756
763
  }
757
764
 
758
765
  .lexdialogcontent {
766
+ width: 100%;
759
767
  padding: 15px;
760
768
  word-break: break-all;
761
769
  color: var(--global-text-primary);
@@ -802,7 +810,6 @@ a svg, svg path {
802
810
 
803
811
  .lexdialog.prompt textarea {
804
812
  color: var(--global-text-secondary);
805
- font-weight: normal;
806
813
  }
807
814
 
808
815
  /* Pocket Dialog */
@@ -816,7 +823,7 @@ a svg, svg path {
816
823
  }
817
824
 
818
825
  .lexdialog.pocket .lexdialogtitle {
819
- width: calc(100% - 28px);
826
+ width: 100%;
820
827
  font-size: var(--global-font-size-lg);
821
828
  background: var(--global-intense-background);
822
829
  }
@@ -954,6 +961,11 @@ a svg, svg path {
954
961
  transform: scale(0.99);
955
962
  }
956
963
 
964
+ .lexdropdownmenuitem .lexcheckbox {
965
+ width: 1.25em;
966
+ height: 1.25em;
967
+ }
968
+
957
969
  .lexdropdownmenuitem a {
958
970
  margin-left: auto;
959
971
  margin-right: 4px;
@@ -1064,14 +1076,14 @@ a svg, svg path {
1064
1076
  }
1065
1077
 
1066
1078
  .lexsplitbar.dragging-split-area {
1067
- background-color: var(--global-button-color);
1079
+ background-color: red;
1068
1080
  }
1069
1081
 
1070
1082
  /* Branches */
1071
1083
 
1072
1084
  .lexpanel {
1073
1085
  margin: 0;
1074
- margin-left: 3px;
1086
+ padding: 4px;
1075
1087
  overflow: hidden;
1076
1088
  overflow-y: scroll;
1077
1089
  }
@@ -1081,6 +1093,7 @@ a svg, svg path {
1081
1093
  }
1082
1094
 
1083
1095
  .lexbranch {
1096
+ width: 100%;
1084
1097
  border-radius: 6px;
1085
1098
  margin-bottom: 4px !important;
1086
1099
  }
@@ -1099,8 +1112,8 @@ a svg, svg path {
1099
1112
 
1100
1113
  .lexbranchtitle {
1101
1114
  font-family: var(--global-title-font);
1102
- font-weight: 600;
1103
1115
  font-size: var(--global-font-size-lg);
1116
+ font-weight: 500;
1104
1117
  color: var(--global-text-primary);
1105
1118
  background-color: var(--global-color-secondary);
1106
1119
  text-shadow: 0px 1px 6px #42424260;
@@ -1152,7 +1165,7 @@ a svg, svg path {
1152
1165
  }
1153
1166
 
1154
1167
  .lexbranchtitle.wtabs span.selected {
1155
- border-top: 2px solid var(--global-selected-light);
1168
+ border-top: 2px solid var(--global-color-accent-light);
1156
1169
  background-color: var(--global-color-secondary);
1157
1170
  color: var(--global-text-primary);
1158
1171
  text-shadow: 0px 1px 2px #000;
@@ -1211,11 +1224,6 @@ a svg, svg path {
1211
1224
  font-size: var(--global-font-size);
1212
1225
  }
1213
1226
 
1214
- .lexinlinewidgets .lexwidget {
1215
- padding-left: 10px;
1216
- padding-right: 10px;
1217
- }
1218
-
1219
1227
  .lexinlinewidgets .lexwidgetname.float-center {
1220
1228
  justify-content: center;
1221
1229
  }
@@ -1227,10 +1235,6 @@ a svg, svg path {
1227
1235
  transform: translateX(-1em);
1228
1236
  }
1229
1237
 
1230
- .lexwidget.nobranch {
1231
- width: calc(100% - 10px);
1232
- }
1233
-
1234
1238
  .lexwidget.auto {
1235
1239
  width: unset !important;
1236
1240
  }
@@ -1247,11 +1251,6 @@ a svg, svg path {
1247
1251
  margin-right: 8px;
1248
1252
  }
1249
1253
 
1250
- .lexwidget.micro button {
1251
- padding-left: 4px;
1252
- padding-right: 4px;
1253
- }
1254
-
1255
1254
  .lexwidget.small {
1256
1255
  width: 5% !important;
1257
1256
  }
@@ -1262,8 +1261,6 @@ a svg, svg path {
1262
1261
 
1263
1262
  .lexinlinewidgets {
1264
1263
  display: flex;
1265
- gap: 0.1rem;
1266
- justify-content: space-around;
1267
1264
  }
1268
1265
 
1269
1266
  .lexwidgetseparator div {
@@ -1298,22 +1295,73 @@ a svg, svg path {
1298
1295
  padding-inline: 0.4rem;
1299
1296
  }
1300
1297
 
1298
+ .lexwidget .inputicon {
1299
+ padding: 6px;
1300
+ font-size: var(--global-font-size-sm);
1301
+ align-self: center;
1302
+ text-align: center;
1303
+ }
1304
+
1305
+ .lexseparator {
1306
+ border-top: 1px solid var(--global-color-secondary);
1307
+ border-bottom: 1px solid var(--global-color-tertiary);
1308
+ margin: 5px 0 5px 0px;
1309
+ }
1310
+
1311
+ .lexbranch .lexseparator {
1312
+ border-top: 1px solid var(--global-color-primary);
1313
+ border-bottom: 1px solid var(--global-color-tertiary);
1314
+ width: -moz-calc(100% - 8px);
1315
+ width: -webkit-calc(100% - 8px);
1316
+ width: calc(100% - 8px);
1317
+ margin: 5px 0 5px 4px;
1318
+ }
1319
+
1320
+ :root[data-theme="light"] .lexbranch .lexseparator {
1321
+ border-top: 1px solid #e7e7e7;
1322
+ border-bottom: 1px solid #c1c1c1;
1323
+ }
1324
+
1301
1325
  .lexwidget input:not(.lexcheckbox, .lextoggle, .lexrangeslider) {
1302
1326
  font-family: var(--global-font);
1303
- background: none;
1304
- padding: 3px;
1327
+ padding: 4px;
1305
1328
  color: var(--global-text-primary);
1306
- font-weight: 500;
1329
+ background-color: var(--global-color-tertiary);
1307
1330
  outline: none;
1308
1331
  border-radius: 6px;
1309
- border: 2px solid var(--global-color-transparent);
1310
- transition: background-color 0.2s linear, border-color 0.15s linear;
1332
+ border: 1px solid var(--global-color-transparent);
1333
+ transition-property: color, background-color, border-color;
1334
+ transition-timing-function: ease-out;
1335
+ transition-duration: .15s;
1336
+ }
1337
+
1338
+ .lexwidget input:not(.lexcheckbox, .lextoggle, .lexrangeslider):hover {
1339
+ background-color: color-mix(in srgb, var(--global-color-tertiary), #000 7%);
1311
1340
  }
1312
1341
 
1313
- .lexwidget .lextext {
1342
+ .lexwidget input.colorinput {
1343
+ border: none;
1344
+ margin-left: -4px;
1345
+ }
1346
+
1347
+ .lexwidget input:disabled:not(.lextoggle) {
1348
+ outline: none;
1349
+ border: none;
1350
+ color: var(--global-text-tertiary);
1351
+ }
1352
+
1353
+ /* Text Widget */
1354
+
1355
+ .lexwidget input.lextext, .lexwidget div.lextext {
1314
1356
  border-radius: 6px;
1315
1357
  position: relative;
1316
- transition: 0.2s linear;
1358
+ border: 1px solid transparent;
1359
+ padding: 4px 12px !important;
1360
+ }
1361
+
1362
+ .lexwidget .lextext:disabled {
1363
+ background-color: var(--global-color-tertiary);
1364
+ color: var(--global-text-tertiary);
1317
1365
  }
1318
1366
 
1319
1367
  .lexwidget .lextext.formlabel {
@@ -1321,34 +1369,36 @@ a svg, svg path {
1321
1369
  margin-bottom: -12px;
1322
1370
  }
1323
1371
 
1324
- .lexwidget .lextext:not(:has(div)) {
1325
- background-color: var(--global-button-color);
1372
+ .lexwidget .lextext.outline {
1373
+ background: var(--global-color-primary);
1374
+ border: 1px solid #7a797c4f;
1326
1375
  }
1327
1376
 
1328
- .lexwidget input:not(.lexcheckbox, .lextoggle, .lexrangeslider):hover {
1329
- background-color: color-mix(in srgb, var(--global-button-color), #000 7%);
1377
+ .lexwidget .lextext.nobg {
1378
+ background: none;
1379
+ border: 1px solid transparent;
1330
1380
  }
1331
1381
 
1332
- .lexwidget .lextext input {
1333
- padding: 5px;
1382
+ .lexwidget .lextext.dashed {
1383
+ background: var(--global-color-primary);
1384
+ border: 1px dashed #7a797c4f;
1334
1385
  }
1335
1386
 
1336
- .lexwidget .lextext input:focus {
1337
- border: 2px solid var(--global-selected);
1387
+ .lexwidget .lextext.outline:hover, .lexwidget .lextext.nobg:hover {
1388
+ background: none;
1338
1389
  }
1339
1390
 
1340
- .lexwidget .lextext input:invalid:focus {
1341
- border: 2px solid var(--global-color-error);
1391
+ .lexwidget .lextext:focus {
1392
+ border: 1px solid var(--global-text-quaternary);
1342
1393
  }
1343
1394
 
1344
- .lexwidget .lextext div {
1345
- color: var(--global-text-secondary);
1346
- padding-left: 6px;
1395
+ .lexwidget .lextext:invalid:focus {
1396
+ border: 1px solid var(--global-color-error);
1347
1397
  }
1348
1398
 
1349
1399
  .lexwidget .lextext.lexwarning div {
1350
1400
  color: var(--global-color-warning);
1351
- font-weight: 700;
1401
+ font-weight: 600;
1352
1402
  }
1353
1403
 
1354
1404
  .lexwidget .lextext.lexwarning i {
@@ -1356,12 +1406,7 @@ a svg, svg path {
1356
1406
  margin-right: 16px;
1357
1407
  }
1358
1408
 
1359
- .lexwidget .inputicon {
1360
- padding: 6px;
1361
- font-size: var(--global-font-size-sm);
1362
- align-self: center;
1363
- text-align: center;
1364
- }
1409
+ /* TextArea Widget */
1365
1410
 
1366
1411
  .lexwidget textarea {
1367
1412
  word-break: break-word;
@@ -1369,10 +1414,9 @@ a svg, svg path {
1369
1414
  background: none;
1370
1415
  padding: 5px;
1371
1416
  color: var(--global-text-primary);
1372
- font-weight: 600;
1373
1417
  outline: none;
1374
1418
  border-radius: 6px;
1375
- border: 2px solid var(--global-color-transparent);
1419
+ border: 1px solid var(--global-color-transparent);
1376
1420
  transition: 0.1s linear;
1377
1421
  }
1378
1422
 
@@ -1381,42 +1425,10 @@ a svg, svg path {
1381
1425
  }
1382
1426
 
1383
1427
  .lexwidget textarea:focus {
1384
- border: 2px solid var(--global-selected);
1428
+ border: 1px solid var(--global-text-quaternary);
1385
1429
  }
1386
1430
 
1387
- .lexwidget input.colorinput {
1388
- border: none;
1389
- margin-left: -4px;
1390
- }
1391
-
1392
- .lexwidget input:disabled:not(.lextoggle) {
1393
- outline: none;
1394
- border: none;
1395
- color: var(--global-text-tertiary);
1396
- }
1397
-
1398
- .lexseparator {
1399
- border-bottom: 1px solid var(--global-button-color);
1400
- margin: 5px 0 5px 10px;
1401
- }
1402
-
1403
- .lexbranch .lexseparator {
1404
- border-top: 1px solid #252525;
1405
- border-bottom: 1px solid rgb(87, 86, 86);
1406
- width: -moz-calc(100% - 8px);
1407
- width: -webkit-calc(100% - 8px);
1408
- width: calc(100% - 8px);
1409
- margin: 5px 0 5px 4px;
1410
- }
1411
-
1412
- :root[data-theme="light"] .lexwidget .lextext {
1413
- border: 1px solid var(--global-color-tertiary) !important;
1414
- }
1415
-
1416
- :root[data-theme="light"] .lexbranch .lexseparator {
1417
- border-top: 1px solid #e7e7e7;
1418
- border-bottom: 1px solid #c1c1c1;
1419
- }
1431
+ /* Title Widget */
1420
1432
 
1421
1433
  .lextitle {
1422
1434
  width: fit-content;
@@ -1432,7 +1444,7 @@ a svg, svg path {
1432
1444
  display: grid;
1433
1445
  align-content: center;
1434
1446
  border-radius: 12px;
1435
- background-color: var(--global-button-color);
1447
+ background-color: var(--global-color-tertiary);
1436
1448
  display: flex;
1437
1449
  -webkit-user-select: none;
1438
1450
  -moz-user-select: none;
@@ -1442,14 +1454,14 @@ a svg, svg path {
1442
1454
 
1443
1455
  .lexinlinewidgets .lextitle {
1444
1456
  margin: 8px;
1445
- height: 20px;
1457
+ height: 24px;
1446
1458
  flex: none;
1447
1459
  }
1448
1460
 
1449
1461
  .lextitle a {
1450
1462
  margin-top: 0.3em;
1451
1463
  margin-right: 0.7em;
1452
- color: var(--global-selected-light);
1464
+ color: var(--global-color-accent-light);
1453
1465
  font-size: var(--global-font-size-sm);
1454
1466
  }
1455
1467
 
@@ -1460,7 +1472,7 @@ a svg, svg path {
1460
1472
  }
1461
1473
 
1462
1474
  .lextitle.link:hover {
1463
- color: #049EF4;
1475
+ color: var(--global-color-accent-light);
1464
1476
  transform: scale(1.02);
1465
1477
  }
1466
1478
 
@@ -1468,113 +1480,96 @@ a svg, svg path {
1468
1480
  /* Buttons */
1469
1481
 
1470
1482
  .lexbutton {
1471
- display: grid;
1472
- align-content: center;
1473
- --button-color: var(--global-button-color);
1483
+ --button-color: var(--global-color-tertiary);
1484
+ --border-color: var(--global-color-quinary);
1474
1485
  background-color: var(--button-color);
1475
- border-radius: 6px;
1476
1486
  border: 1px solid transparent;
1487
+ border-radius: 6px;
1477
1488
  min-height: 22px !important;
1489
+ align-content: center;
1478
1490
  color: var(--global-text-primary);
1479
- font-weight: 500;
1480
1491
  outline: none;
1481
1492
  white-space: nowrap;
1482
1493
  overflow: hidden;
1483
1494
  cursor: pointer;
1484
1495
  font-family: var(--global-font);
1496
+ font-weight: 500;
1497
+ display: grid;
1485
1498
  transition: 0.1s linear;
1486
1499
  padding: 0.35rem;
1487
1500
  }
1488
1501
 
1489
- :root[data-theme="light"] .lexbutton {
1490
- --button-color: var(--global-button-color);
1491
- border: 1px solid var(--global-color-tertiary);
1492
- }
1493
-
1494
- :root[data-theme="light"] .lexbutton.selected {
1495
- background: #3c4145;
1496
- color: #DDD;
1497
- }
1498
-
1499
1502
  /* Colors */
1500
- .lexbutton.primary { --button-color: var(--global-selected) !important; color: #f9f9f9 !important; }
1501
- .lexbutton.secondary { --button-color: var(--global-selected-light) !important; color: #f9f9f9 !important; }
1502
- .lexbutton.accent { --button-color: var(--global-color-accent) !important; color: #f9f9f9 !important; }
1503
- .lexbutton.contrast { --button-color: var(--global-text-primary) !important; color: var(--global-color-primary) !important; }
1504
- .lexbutton.warning { --button-color: var(--global-color-warning) !important; color: #793205 !important; }
1505
- .lexbutton.error { --button-color: var(--global-color-error) !important; color: #52020d !important; }
1503
+ .lexbutton.primary { --button-color: var(--global-color-primary); --border-color: var(--global-color-quaternary); color: var(--global-text-primary); }
1504
+ .lexbutton.secondary { --button-color: var(--global-color-secondary); --border-color: var(--global-color-quaternary); color: var(--global-text-primary); }
1505
+ .lexbutton.accent { --button-color: var(--global-color-accent); --border-color: var(--global-color-quaternary); color: #fefefe; }
1506
+ .lexbutton.contrast { --button-color: var(--global-text-primary); --border-color: var(--global-color-quaternary); color: var(--global-color-primary); }
1507
+ .lexbutton.warning { --button-color: var(--global-color-warning); --border-color: #793205; color: var(--border-color); }
1508
+ .lexbutton.error { --button-color: var(--global-color-error); --border-color: #52020d; color: var(--border-color); }
1509
+
1506
1510
  /* Few Sizes */
1507
- .lexbutton.xs { width: 25% !important; margin: 0 auto; }
1508
- .lexbutton.sm { width: 45% !important; margin: 0 auto; }
1509
- /* Styles */
1510
- .lexbutton.outline { box-shadow: none; --button-color: var(--global-intense-background); border: 1px solid var(--global-color-quaternary) !important; }
1511
+ .lexbutton.xs { width: 35%; margin: 0 auto; }
1512
+ .lexbutton.sm { width: 65%; margin: 0 auto; }
1511
1513
 
1512
- .lexbutton.left {
1513
- text-align: left;
1514
- padding-inline: 12px;
1514
+ /* Styles */
1515
+ .lexbutton.outline {
1516
+ border-color: var(--border-color);
1515
1517
  }
1516
-
1517
- .lexbutton span {
1518
- align-items: center;
1518
+ .lexbutton.dashed {
1519
+ border-style: dashed;
1520
+ border-color: var(--border-color);
1519
1521
  }
1520
1522
 
1521
- .lexbutton span:has(.lexbadge) {
1522
- display: inline-flex;
1523
- flex-wrap: nowrap;
1524
- justify-content: center;
1525
- gap: 0.4rem;
1523
+ .lexbutton:hover {
1524
+ background-color: color-mix(in srgb, var(--button-color), #000 9%) !important;
1526
1525
  }
1527
-
1528
- .lexbutton.foldback {
1529
- padding: 11px 10px;
1530
- padding-bottom: 14px;
1531
- float: right;
1532
- align-items: center;
1533
- margin-right: 4px;
1534
- margin-top: 2px;
1526
+ :root[data-theme="light"] .lexbutton:hover {
1527
+ background-color: color-mix(in srgb, var(--button-color), #fff 18%) !important;
1535
1528
  }
1536
1529
 
1537
- .lexbutton a {
1538
- margin-left: 0px;
1539
- font-size: var(--global-font-size-sm);
1540
- pointer-events: none;
1530
+ .lexbutton:active:not(.lexbutton.combo) {
1531
+ background-color: color-mix(in srgb, var(--button-color), #fff 4%) !important;
1532
+ }
1533
+ :root[data-theme="light"] .lexbutton:active:not(.lexbutton.combo) {
1534
+ background-color: color-mix(in srgb, var(--button-color), #000 4%) !important;
1541
1535
  }
1542
1536
 
1543
- .lexbutton.array span {
1544
- display: inline-flex;
1537
+ .lexbutton:disabled {
1538
+ color: var(--global-text-tertiary);
1545
1539
  }
1546
1540
 
1547
- .lexbutton.array a {
1548
- margin-top: 2px;
1549
- margin-right: 3px;
1550
- margin-left: auto;
1541
+ .lexbutton.selected {
1542
+ --button-color: var(--global-color-accent);
1543
+ --border-color: var(--global-color-quaternary);
1544
+ color: #fefefe;
1551
1545
  }
1552
1546
 
1553
- .lexbutton:hover {
1554
- background-color: color-mix(in srgb, var(--button-color), #000 7%);
1555
- color: var(--global-text-primary);
1547
+ .lexbutton * {
1548
+ pointer-events: none;
1556
1549
  }
1557
1550
 
1558
- .lexbutton:active:not(.lexbutton.combo) {
1559
- background-color: color-mix(in srgb, var(--button-color), #ffffff 4%);
1560
- color: var(--global-text-secondary);
1561
- transform: scale(0.99);
1551
+ .lexbutton span {
1552
+ align-items: center;
1553
+ display: flex;
1554
+ place-content: center;
1555
+ pointer-events: none;
1556
+ gap: 0.4rem;
1562
1557
  }
1563
1558
 
1564
- .lexbutton:disabled {
1565
- color: var(--global-text-tertiary);
1559
+ .lexbutton.left span {
1560
+ place-content: start;
1566
1561
  }
1567
1562
 
1568
- .lexbutton.selected {
1569
- background: #3c4145;
1570
- color: #DDD;
1563
+ .lexbutton.array a {
1564
+ margin-right: 4px;
1565
+ margin-left: auto;
1571
1566
  }
1572
1567
 
1573
1568
  /* Combo Buttons */
1574
1569
 
1575
1570
  .lexcombobuttons .lexcombobuttonsbox {
1576
1571
  display: flex;
1577
- background-color: light-dark(var(--global-color-tertiary), var(--global-button-color));
1572
+ background-color: var(--global-color-tertiary);
1578
1573
  width: max-content;
1579
1574
  justify-self: center;
1580
1575
  padding: 3px;
@@ -1592,9 +1587,9 @@ a svg, svg path {
1592
1587
 
1593
1588
  .lexcombobuttons .lexbutton.combo {
1594
1589
  display: flex;
1595
- padding: 0.7em 1.6em;
1590
+ padding: 0.45em 1.25em;
1596
1591
  transition: 0.2s;
1597
- background: none;
1592
+ --button-color: var(--global-color-tertiary);
1598
1593
  }
1599
1594
 
1600
1595
  .lexcombobuttons .lexbutton.combo:hover {
@@ -1602,24 +1597,15 @@ a svg, svg path {
1602
1597
  }
1603
1598
 
1604
1599
  .lexcombobuttons .lexbutton.combo.selected {
1605
- background-color: var(--global-color-primary);
1606
- outline: none;
1600
+ --button-color: var(--global-color-primary);
1607
1601
  color: var(--global-text-primary);
1608
- }
1609
-
1610
- .lexcombobuttons .lexbutton.combo:active {
1611
1602
  outline: none;
1612
- color: #ccc;
1613
1603
  }
1614
1604
 
1615
1605
  .lexcombobuttons .lexbutton.combo span {
1616
1606
  line-height: 18px;
1617
1607
  }
1618
1608
 
1619
- .lexcombobuttons .lexbutton.combo a {
1620
- font-size: var(--global-font-size-sm);
1621
- }
1622
-
1623
1609
  /* Select (Combobox) */
1624
1610
 
1625
1611
  .lexselect {
@@ -1633,7 +1619,7 @@ a svg, svg path {
1633
1619
  }
1634
1620
 
1635
1621
  .lexselect .lexfilter {
1636
- width: calc(100% - 6px) !important;
1622
+ width: 100%;
1637
1623
  padding: 2px 3px;
1638
1624
  background-color: var(--global-color-primary);
1639
1625
  border-bottom: 1px solid;
@@ -1670,16 +1656,14 @@ a svg, svg path {
1670
1656
 
1671
1657
  .lexselect .lexselectoptions {
1672
1658
  background-color: var(--global-color-primary);
1673
- -webkit-backdrop-filter: blur(10px);
1674
- backdrop-filter: blur(10px);
1675
1659
  margin: 0;
1676
1660
  padding: 0;
1677
1661
  outline: none;
1678
1662
  width: fit-content;
1679
- max-height: -webkit-fill-available;
1663
+ /* max-height: -webkit-fill-available; */
1680
1664
  position: fixed;
1681
1665
  z-index: 10000;
1682
- box-shadow: 0 0px 6px rgba(0, 0, 0, 0.603);
1666
+ box-shadow: 0 0px 4px rgba(0, 0, 0, 0.203);
1683
1667
  border-radius: 6px;
1684
1668
  border: 1px solid #7a797c4f;
1685
1669
  overflow-y: auto;
@@ -1700,14 +1684,14 @@ dialog .lexselect .lexselectoptions {
1700
1684
  }
1701
1685
 
1702
1686
  .lexselect ul .lexselectinnerlist {
1703
- width: calc(100% - 0.6rem);
1687
+ width: 100%;
1704
1688
  height: calc(100% - 25px);
1705
1689
  padding: 0.3rem;
1706
1690
  display: grid;
1707
1691
  }
1708
1692
 
1709
1693
  .lexselect .lexselectitem {
1710
- width: calc(100% - 0.7rem);
1694
+ width: 100%;
1711
1695
  cursor: pointer;
1712
1696
  color: var(--global-text-primary);
1713
1697
  min-height: 20px;
@@ -1724,15 +1708,15 @@ dialog .lexselect .lexselectoptions {
1724
1708
  }
1725
1709
 
1726
1710
  .lexselect .lexselectlabel {
1727
- width: calc(100% - 1.6rem);
1728
- color: var(--global-text-primary);
1729
- padding-inline: 0.8rem;
1711
+ width: 100%;
1712
+ color: var(--global-text-secondary);
1713
+ padding-inline: 0.6rem;
1730
1714
  padding-block: 0.2rem;
1731
1715
  min-height: 20px;
1732
1716
  line-height: 22px;
1733
1717
  align-content: center;
1734
1718
  display: flow-root;
1735
- font-weight: 600;
1719
+ font-weight: 500;
1736
1720
  }
1737
1721
 
1738
1722
  .lexselect .lexselectitem.empty {
@@ -1754,11 +1738,12 @@ dialog .lexselect .lexselectoptions {
1754
1738
  .lexselect .lexselectitem a {
1755
1739
  display: none;
1756
1740
  margin-left: auto;
1757
- margin-right: 8px;
1741
+ margin-right: 0.25rem;
1742
+ padding-left: 1rem;
1758
1743
  }
1759
1744
 
1760
1745
  .lexselect .lexselectitem.selected {
1761
- font-weight: 700;
1746
+ font-weight: 600;
1762
1747
  }
1763
1748
 
1764
1749
  .lexselect .lexselectitem.selected a {
@@ -1766,8 +1751,8 @@ dialog .lexselect .lexselectoptions {
1766
1751
  }
1767
1752
 
1768
1753
  .lexselect img {
1769
- max-height: 64px;
1770
- margin-top: 8px;
1754
+ max-height: 4rem;
1755
+ margin-top: 0.5rem;
1771
1756
  }
1772
1757
 
1773
1758
  :root[data-theme="light"] .lexselect .lexfilter {
@@ -1779,15 +1764,10 @@ dialog .lexselect .lexselectoptions {
1779
1764
  box-shadow: 0 0px 6px rgba(175, 175, 175, 0.788);
1780
1765
  }
1781
1766
 
1782
- :root[data-theme="light"] .lexselect .lexselectitem:hover {
1783
- background-color: var(--global-selected-light);
1784
- color: #fff;
1785
- }
1786
-
1787
1767
  /* Check box */
1788
1768
 
1789
1769
  .lexcheckbox {
1790
- --checkbox-bg-color: var(--global-selected);
1770
+ --checkbox-bg-color: light-dark(var(--global-text-tertiary), var(--global-color-tertiary));
1791
1771
  --checkbox-fg-color: #fff;
1792
1772
  vertical-align: middle;
1793
1773
  flex-shrink: 0;
@@ -1796,6 +1776,7 @@ dialog .lexselect .lexselectoptions {
1796
1776
  width: 1.5em;
1797
1777
  height: 1.5em;
1798
1778
  padding: 0.12rem;
1779
+ padding-left: 0.13rem;
1799
1780
  display: inline-block;
1800
1781
  background-color: var(--global-color-primary);
1801
1782
  color: var(--checkbox-fg-color);
@@ -1812,13 +1793,16 @@ dialog .lexselect .lexselectoptions {
1812
1793
  }
1813
1794
 
1814
1795
  /* Colors */
1815
- .lexcheckbox.primary { --checkbox-bg-color: var(--global-selected); }
1816
- .lexcheckbox.secondary { --checkbox-bg-color: var(--global-selected-light); }
1796
+ .lexcheckbox.primary { --checkbox-bg-color: var(--global-color-primary); }
1797
+ :root[data-theme="light"] .lexcheckbox.primary { --checkbox-fg-color: var(--global-text-primary); }
1798
+ .lexcheckbox.secondary { --checkbox-bg-color: var(--global-color-secondary); }
1799
+ :root[data-theme="light"] .lexcheckbox.secondary { --checkbox-fg-color: var(--global-text-tertiary); }
1817
1800
  .lexcheckbox.accent { --checkbox-bg-color: var(--global-color-accent); }
1818
1801
  .lexcheckbox.contrast { --checkbox-bg-color: var(--global-text-primary); --checkbox-fg-color: var(--global-color-primary); }
1819
1802
  .lexcheckbox.warning { --checkbox-bg-color: var(--global-color-warning); }
1820
1803
  .lexcheckbox.error { --checkbox-bg-color: var(--global-color-error); }
1821
1804
 
1805
+
1822
1806
  .lexcheckbox:before {
1823
1807
  content: "";
1824
1808
  opacity: 0;
@@ -1837,7 +1821,7 @@ dialog .lexselect .lexselectoptions {
1837
1821
  }
1838
1822
 
1839
1823
  .lexcheckbox:checked:before, .lexcheckbox[aria-checked=true]:before {
1840
- clip-path:polygon(20% 100%,20% 80%,50% 80%,50% 0%,70% 0%,70% 100%);
1824
+ clip-path: polygon(20% 100%,20% 80%,50% 80%,50% 0%,70% 0%,70% 100%);
1841
1825
  opacity: 1;
1842
1826
  }
1843
1827
 
@@ -1859,6 +1843,7 @@ dialog .lexselect .lexselectoptions {
1859
1843
  padding: 4px;
1860
1844
  padding-inline: 8px;
1861
1845
  color: var(--global-text-secondary);
1846
+ grid-column: span 2;
1862
1847
  }
1863
1848
 
1864
1849
  .lexcheckboxsubmenu .lexwidget {
@@ -1868,11 +1853,11 @@ dialog .lexselect .lexselectoptions {
1868
1853
  /* Toggle Widget */
1869
1854
 
1870
1855
  .lextoggle {
1871
- --toggle-bg-color: #1a1a1a;
1872
- --toggle-fg-color: #f9f9f9;
1856
+ --toggle-bg-color: var(--global-text-tertiary); /* Color of background CHECKED */
1857
+ --toggle-fg-color: #f4f4f6; /* Color of the thumb */
1873
1858
  border: 1px solid transparent;
1874
1859
  color: var(--toggle-fg-color);
1875
- background-color: var(--global-color-quaternary);
1860
+ background-color: var(--global-color-quaternary); /* Color of background NO check */
1876
1861
  cursor: pointer;
1877
1862
  -webkit-appearance: none;
1878
1863
  -moz-appearance: none;
@@ -1883,9 +1868,8 @@ dialog .lexselect .lexselectoptions {
1883
1868
  -ms-user-select: none;
1884
1869
  user-select: none;
1885
1870
  border-radius: 12px;
1886
- padding: 3px;
1887
- width: 36px;
1888
- height: 22px;
1871
+ width: 40px;
1872
+ height: 21px;
1889
1873
  flex-shrink: 0;
1890
1874
  grid-template-columns: 0fr 1fr 1fr;
1891
1875
  place-content: center;
@@ -1899,11 +1883,11 @@ dialog .lexselect .lexselectoptions {
1899
1883
  }
1900
1884
 
1901
1885
  /* Colors */
1902
- .lextoggle.primary { --toggle-bg-color: var(--global-selected); }
1903
- .lextoggle.secondary { --toggle-bg-color: var(--global-selected-light); }
1904
- .lextoggle.accent { --toggle-bg-color: var(--global-color-accent); }
1905
- .lextoggle.contrast { --toggle-bg-color: var(--global-text-primary); --toggle-fg-color: var(--global-color-primary); }
1906
- .lextoggle.warning { --toggle-bg-color: var(--global-color-warning); }
1886
+ .lextoggle.primary { --toggle-bg-color: var(--global-color-primary);}
1887
+ .lextoggle.secondary { --toggle-bg-color: var(--global-color-tertiary); }
1888
+ .lextoggle.accent { --toggle-bg-color: var(--global-color-accent); }
1889
+ .lextoggle.contrast { --toggle-bg-color: var(--global-text-primary); }
1890
+ .lextoggle.warning { --toggle-bg-color: var(--global-color-warning); }
1907
1891
  .lextoggle.error { --toggle-bg-color: var(--global-color-error); }
1908
1892
 
1909
1893
  .lextoggle > * {
@@ -1917,7 +1901,7 @@ dialog .lexselect .lexselectoptions {
1917
1901
  grid-column: 2/span 1;
1918
1902
  grid-row-start: 1;
1919
1903
  height: 100%;
1920
- padding: .125rem;
1904
+ padding: 0.125rem;
1921
1905
  transition: opacity .2s,rotate .4s
1922
1906
  }
1923
1907
 
@@ -1966,15 +1950,28 @@ dialog .lexselect .lexselectoptions {
1966
1950
  }
1967
1951
 
1968
1952
  .lextoggle:checked, .lextoggle[aria-checked=true], .lextoggle:has(>input:checked) {
1969
- border: 1px solid var(--global-color-secondary);
1970
1953
  background-color: var(--toggle-bg-color);
1971
1954
  grid-template-columns: 1fr 1fr 0fr;
1972
1955
  }
1973
1956
 
1957
+ .lextoggle.contrast:checked, .lextoggle.contrast[aria-checked=true], .lextoggle.contrast:has(>input:checked) {
1958
+ --toggle-fg-color: var(--global-color-primary);
1959
+ }
1960
+
1961
+ .lextoggle.outline.primary, .lextoggle.outline.secondary {
1962
+ /* border: 1px solid var(--global-text-tertiary); */
1963
+ }
1964
+
1974
1965
  .lextoggle.outline:checked, .lextoggle.outline[aria-checked=true], .lextoggle.outline:has(>input:checked) {
1975
- color: var(--toggle-bg-color);
1976
1966
  border: 1px solid currentColor;
1977
- background-color: var(--global-color-primary);
1967
+ color: var(--toggle-bg-color);
1968
+ background-color: var(--global-color-secondary);
1969
+ }
1970
+
1971
+ .lextoggle.outline.primary:checked, .lextoggle.outline.primary[aria-checked=true], .lextoggle.outline.primary:has(>input:checked),
1972
+ .lextoggle.outline.secondary:checked, .lextoggle.outline.secondary[aria-checked=true], .lextoggle.outline.secondary:has(>input:checked) {
1973
+ background-color: var(--global-color-quaternary);
1974
+ border: 1px solid var(--global-text-tertiary);
1978
1975
  }
1979
1976
 
1980
1977
  :is(.lextoggle:checked, .lextoggle[aria-checked=true], .lextoggle:has(>input:checked)):before {
@@ -1995,14 +1992,13 @@ dialog .lexselect .lexselectoptions {
1995
1992
  }
1996
1993
 
1997
1994
  .lextogglecont {
1998
- font-weight: bold;
1999
1995
  display: flex;
2000
1996
  gap: 0.4rem;
2001
1997
  margin: 0 auto;
2002
1998
  }
2003
1999
 
2004
2000
  .lextogglecont .toggletext {
2005
- font-weight: bold;
2001
+ font-weight: 500;
2006
2002
  width: 95%;
2007
2003
  overflow: hidden;
2008
2004
  text-overflow: ellipsis;
@@ -2012,8 +2008,10 @@ dialog .lexselect .lexselectoptions {
2012
2008
  .lextogglesubmenu {
2013
2009
  width: 100%;
2014
2010
  padding: 6px;
2011
+ padding-inline: 8px;
2015
2012
  color: var(--global-text-secondary);
2016
2013
  margin-top: -1px;
2014
+ grid-column: span 2;
2017
2015
  }
2018
2016
 
2019
2017
  /* Radio Group Widget */
@@ -2026,7 +2024,7 @@ dialog .lexselect .lexselectoptions {
2026
2024
  }
2027
2025
 
2028
2026
  .lexradiogroup span {
2029
- font-weight: 600;
2027
+ font-weight: 500;
2030
2028
  }
2031
2029
 
2032
2030
  .lexradiogroup .lexradiogroupitem {
@@ -2070,9 +2068,13 @@ dialog .lexselect .lexselectoptions {
2070
2068
  background-color: var(--global-text-primary);
2071
2069
  }
2072
2070
 
2071
+ .lexradiogroup .lexradiogroupitem button.checked:disabled span {
2072
+ background-color: var(--global-color-tertiary) !important;
2073
+ }
2074
+
2073
2075
  /* Colors */
2074
- .lexradiogroup.primary .lexradiogroupitem button.checked span { background-color: var(--global-selected); }
2075
- .lexradiogroup.secondary .lexradiogroupitem button.checked span { background-color: var(--global-selected-light); }
2076
+ .lexradiogroup.primary .lexradiogroupitem button.checked span { background-color: var(--global-color-accent); }
2077
+ .lexradiogroup.secondary .lexradiogroupitem button.checked span { background-color: var(--global-color-accent-light); }
2076
2078
  .lexradiogroup.accent .lexradiogroupitem button.checked span { background-color: var(--global-color-accent); }
2077
2079
  .lexradiogroup.contrast .lexradiogroupitem button.checked span { background-color: var(--global-text-primary); }
2078
2080
  .lexradiogroup.warning .lexradiogroupitem button.checked span { background-color: var(--global-color-warning); }
@@ -2101,7 +2103,7 @@ dialog .lexselect .lexselectoptions {
2101
2103
  }
2102
2104
 
2103
2105
  .lexcolor:has(input:focus) input[type="color"] {
2104
- outline: 2px solid var(--global-selected);
2106
+ outline: 2px solid var(--global-color-accent);
2105
2107
  border-radius: 4px;
2106
2108
  }
2107
2109
 
@@ -2114,6 +2116,7 @@ dialog .lexselect .lexselectoptions {
2114
2116
 
2115
2117
  .lexcolor input[type="color"] {
2116
2118
  cursor: pointer;
2119
+ background: none;
2117
2120
  }
2118
2121
 
2119
2122
  .lexcolor .lexwidget {
@@ -2127,10 +2130,7 @@ dialog .lexselect .lexselectoptions {
2127
2130
  }
2128
2131
 
2129
2132
  .lexvector a {
2130
- width: 48px;
2131
2133
  font-size: var(--global-font-size-sm);
2132
- margin-left: 6px;
2133
- margin-right: 6px;
2134
2134
  }
2135
2135
 
2136
2136
  .lexvector .vecbox {
@@ -2140,7 +2140,7 @@ dialog .lexselect .lexselectoptions {
2140
2140
  border-radius: 4px;
2141
2141
  border: 2px solid var(--global-color-transparent);
2142
2142
  margin-right: 2px;
2143
- background: var(--global-button-color);
2143
+ background-color: var(--global-color-tertiary);
2144
2144
  transition: 0.1s linear;
2145
2145
  }
2146
2146
 
@@ -2149,11 +2149,7 @@ dialog .lexselect .lexselectoptions {
2149
2149
  }
2150
2150
 
2151
2151
  .lexvector .vecbox:hover {
2152
- background-color: color-mix(in srgb, var(--global-button-color), #000 7%);
2153
- }
2154
-
2155
- .lexwidget.nobranch .lexvector .vecbox:hover {
2156
- background: var(--global-button-color);
2152
+ background-color: color-mix(in srgb, var(--global-color-tertiary), #000 7%);
2157
2153
  }
2158
2154
 
2159
2155
  .lexwidget .numberbox .drag-icon,
@@ -2168,7 +2164,7 @@ dialog .lexselect .lexselectoptions {
2168
2164
  }
2169
2165
 
2170
2166
  .lexvector .vecbox:has(input:focus) {
2171
- border: 2px solid var(--global-selected);
2167
+ border: 2px solid var(--global-color-accent);
2172
2168
  }
2173
2169
 
2174
2170
  .lexvector .vecbox span {
@@ -2194,11 +2190,11 @@ dialog .lexselect .lexselectoptions {
2194
2190
  }
2195
2191
 
2196
2192
  .lexvector .vecbox span.z {
2197
- background-color: #7490eb;
2193
+ background-color: #6081db;
2198
2194
  }
2199
2195
 
2200
2196
  .lexvector .vecbox span.w {
2201
- background-color: #ffffff;
2197
+ background-color: var(--global-text-primary);
2202
2198
  }
2203
2199
 
2204
2200
  /* Chrome, Safari, Edge, Opera */
@@ -2231,10 +2227,10 @@ input[type=number] {
2231
2227
  /* Number Widget */
2232
2228
 
2233
2229
  .lexwidget .numberbox {
2230
+ width: 100%;
2234
2231
  display: grid;
2235
- width: calc(100% - 4px);
2236
- background-color: var(--global-button-color);
2237
- border: 2px solid var(--global-color-transparent);
2232
+ background-color: var(--global-color-tertiary);
2233
+ border: 1px solid var(--global-color-transparent);
2238
2234
  border-radius: 6px;
2239
2235
  margin-right: 2px;
2240
2236
  position: relative;
@@ -2243,20 +2239,21 @@ input[type=number] {
2243
2239
  }
2244
2240
 
2245
2241
  .lexwidget .numberbox:hover {
2246
- background-color: color-mix(in srgb, var(--global-button-color), #000 7%);
2242
+ background-color: color-mix(in srgb, var(--global-color-tertiary), #000 7%);
2247
2243
  }
2248
2244
 
2249
2245
  .lexwidget .numberbox:has(input:focus) {
2250
- border: 2px solid var(--global-selected);
2246
+ border: 1px solid var(--global-text-quaternary);
2251
2247
  }
2252
2248
 
2253
2249
  .lexwidget .numberbox span {
2254
2250
  position: absolute;
2255
2251
  pointer-events: none;
2252
+ align-self: center;
2256
2253
  }
2257
2254
 
2258
- .lexnumber .vecinput {
2259
- width: calc(100% - 12px); /* remove padding, margin, and border */
2255
+ .lexwidget .numberbox:has(input[type=range]) span {
2256
+ margin-top: -12px;
2260
2257
  }
2261
2258
 
2262
2259
  .lexinputmeasure {
@@ -2269,7 +2266,7 @@ input[type=number] {
2269
2266
  -moz-appearance: none;
2270
2267
  -webkit-appearance: none;
2271
2268
  border: none !important;
2272
- width: calc(100% - 12px);
2269
+ width: 100%;
2273
2270
  height: 1px;
2274
2271
  outline: none;
2275
2272
  opacity: 0.7;
@@ -2300,7 +2297,7 @@ input[type=number] {
2300
2297
  height: 12px;
2301
2298
  border: 1px solid #c9c7de;
2302
2299
  border-radius: 6px;
2303
- background: light-dark(var(--global-selected-light), var(--global-selected));
2300
+ background: light-dark(var(--global-color-accent-light), var(--global-color-accent));
2304
2301
  box-shadow: 0px 0px 6px #505050;
2305
2302
  cursor: pointer;
2306
2303
  }
@@ -2335,7 +2332,7 @@ input[type=number] {
2335
2332
  webkit-appearance: none;
2336
2333
  --radius-selector-max: calc(var(--radius-selector) + var(--radius-selector) + var(--radius-selector));
2337
2334
  border-radius: calc(var(--radius-selector) + min(var(--range-thumb-padding),var(--radius-selector-max)));
2338
- width: calc(100% - 4px);
2335
+ width: 100%;
2339
2336
  height: var(--range-thumb-size);
2340
2337
  border: none;
2341
2338
  outline: none;
@@ -2355,8 +2352,8 @@ input[type=number] {
2355
2352
  }
2356
2353
 
2357
2354
  /* Colors */
2358
- .lexrangeslider.primary { color: var(--global-selected); }
2359
- .lexrangeslider.secondary { color: var(--global-selected-light); }
2355
+ .lexrangeslider.primary { color: var(--global-color-primary); --range-thumb-color: var(--global-text-secondary); }
2356
+ .lexrangeslider.secondary { color: var(--global-color-secondary); --range-thumb-color: var(--global-text-secondary); }
2360
2357
  .lexrangeslider.accent { color: var(--global-color-accent); }
2361
2358
  .lexrangeslider.contrast { color: var(--global-text-primary); }
2362
2359
  .lexrangeslider.warning { color: var(--global-color-warning); }
@@ -2427,7 +2424,7 @@ input[type=number] {
2427
2424
  /* Size Widget */
2428
2425
 
2429
2426
  .lexwidget .lexsizecross {
2430
- color: var(--global-selected);
2427
+ color: var(--global-color-accent);
2431
2428
  font-weight: 800;
2432
2429
  }
2433
2430
 
@@ -2450,13 +2447,16 @@ input[type=number] {
2450
2447
  }
2451
2448
 
2452
2449
  .lexwidget .lexpad .lexinnerpad .lexpadthumb {
2453
- background-color: var(--global-selected-light);
2450
+ background-color: var(--global-color-accent);
2454
2451
  width: 10%;
2455
2452
  height: 10%;
2456
2453
  border-radius: 2px;
2457
2454
  transform: translate(0px, 0px);
2458
2455
  }
2459
2456
 
2457
+ .lexwidget .lexpad .lexinnerpad .lexpadthumb.active {
2458
+ background-color: var(--global-color-accent-light);
2459
+ }
2460
2460
 
2461
2461
  /* Tabs Widget */
2462
2462
 
@@ -2531,15 +2531,21 @@ input[type=number] {
2531
2531
  width: 100%;
2532
2532
  min-height: 12px;
2533
2533
  margin: 0 auto;
2534
- margin-top: 6px;
2535
- margin-bottom: -8px;
2536
2534
  color: var(--global-text-secondary);
2537
- font-weight: 600;
2535
+ font-weight: 500;
2538
2536
  font-size: var(--global-font-size);
2539
2537
  }
2540
2538
 
2539
+ .lextree .lexnodetree_filter {
2540
+ background: none !important;
2541
+ }
2542
+
2543
+ .lextree .lexnodetree_filter:hover {
2544
+ background: none;
2545
+ }
2546
+
2541
2547
  .lextree .lextreetools {
2542
- background: var(--global-color-secondary);
2548
+ background: var(--global-color-tertiary);
2543
2549
  padding: 2px;
2544
2550
  padding-left: 6px;
2545
2551
  padding-right: 6px;
@@ -2549,6 +2555,10 @@ input[type=number] {
2549
2555
  margin-top: 4px;
2550
2556
  }
2551
2557
 
2558
+ .lexwidget.nobranch .lextree .lextreetools {
2559
+ background: var(--global-color-secondary);
2560
+ }
2561
+
2552
2562
  .lextree .lextreetools input {
2553
2563
  font-size: var(--global-font-size);
2554
2564
  padding-left: 8px;
@@ -2559,7 +2569,7 @@ input[type=number] {
2559
2569
  }
2560
2570
 
2561
2571
  .lextree .lextreetools.notitle {
2562
- padding-top: 14px;
2572
+ /* padding-top: 14px; */
2563
2573
  border-top-left-radius: 8px;
2564
2574
  border-top-right-radius: 8px;
2565
2575
  }
@@ -2569,7 +2579,6 @@ input[type=number] {
2569
2579
  }
2570
2580
 
2571
2581
  .lextree span {
2572
- /* Tree title */
2573
2582
  padding: 8px;
2574
2583
  display: block;
2575
2584
  border-top-left-radius: 8px;
@@ -2580,11 +2589,10 @@ input[type=number] {
2580
2589
  -ms-user-select: none;
2581
2590
  user-select: none;
2582
2591
  font-size: var(--global-font-size-lg);
2583
- font-weight: 800;
2592
+ font-weight: 500;
2584
2593
  }
2585
2594
 
2586
2595
  .lextree ul {
2587
- padding-bottom: 16px;
2588
2596
  padding-inline-start: 0px;
2589
2597
  display: flex;
2590
2598
  flex-direction: column;
@@ -2656,17 +2664,16 @@ input[type=number] {
2656
2664
 
2657
2665
  .lextree .lextreeitem:hover {
2658
2666
  color: var(--global-text-primary);
2659
- background: var(--global-color-tertiary);
2667
+ background: var(--global-color-secondary);
2660
2668
  }
2661
2669
 
2662
2670
  .lextree .lextreeitem.selected {
2663
2671
  color: var(--global-text-primary);
2664
- background: light-dark(var(--global-selected-light), var(--global-selected));
2672
+ background: light-dark(var(--global-color-accent-light), var(--global-color-accent));
2665
2673
  }
2666
2674
 
2667
2675
  .lextree .lextreeitem a.hierarchy {
2668
2676
  margin-right: 6px;
2669
- margin-top: 4px;
2670
2677
  }
2671
2678
 
2672
2679
  .lextree .lextreeitem .lexicon {
@@ -2674,7 +2681,7 @@ input[type=number] {
2674
2681
  }
2675
2682
 
2676
2683
  .lextree .lextreeitem .itemicon:hover {
2677
- color: var(--global-selected);
2684
+ color: var(--global-color-accent);
2678
2685
  }
2679
2686
 
2680
2687
  .lextree .lextreeitem.selected .itemicon:hover {
@@ -2689,7 +2696,7 @@ input[type=number] {
2689
2696
 
2690
2697
  .lexfileinput::file-selector-button {
2691
2698
  align-content: center;
2692
- background-color: var(--global-button-color);
2699
+ background-color: var(--global-color-tertiary);
2693
2700
  border-radius: 6px;
2694
2701
  border: none;
2695
2702
  margin-top: 2px;
@@ -2705,7 +2712,7 @@ input[type=number] {
2705
2712
  }
2706
2713
 
2707
2714
  .lexfileinput::file-selector-button:hover {
2708
- background-color: color-mix(in srgb, var(--global-button-color), #fff 4%);
2715
+ background-color: color-mix(in srgb, var(--global-color-tertiary), #fff 4%);
2709
2716
  color: var(--global-text-primary);
2710
2717
  }
2711
2718
 
@@ -2750,24 +2757,20 @@ input[type=number] {
2750
2757
  cursor: pointer;
2751
2758
  }
2752
2759
 
2753
- /* .lexprogressbar.editable.grabbing {
2754
- cursor: grabbing;
2755
- } */
2756
-
2757
2760
  /* The gray background in Chrome, etc. */
2758
2761
  .lexprogressbar::-webkit-meter-bar {
2759
2762
  border-radius: 0.25rem;
2760
2763
  height: 12px;
2761
- background: color-mix(in srgb, var(--global-selected) 20%, transparent);
2764
+ background: color-mix(in srgb, var(--global-color-accent) 20%, transparent);
2762
2765
  }
2763
2766
 
2764
2767
  /* (optimum) */
2765
2768
  meter:-moz-meter-optimum::-moz-meter-bar {
2766
- background: var(--global-selected);
2769
+ background: var(--global-color-accent);
2767
2770
  }
2768
2771
 
2769
2772
  .lexprogressbar::-webkit-meter-optimum-value {
2770
- background: var(--global-selected);
2773
+ background: var(--global-color-accent);
2771
2774
  }
2772
2775
 
2773
2776
  /* (high)*/
@@ -2805,8 +2808,8 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2805
2808
  }
2806
2809
 
2807
2810
  /* Colors */
2808
- .lexbadge.primary { --badge-color: var(--global-selected); }
2809
- .lexbadge.secondary { --badge-color: var(--global-selected-light); }
2811
+ .lexbadge.primary { --badge-color: var(--global-color-accent); }
2812
+ .lexbadge.secondary { --badge-color: var(--global-color-accent-light); }
2810
2813
  .lexbadge.accent { --badge-color: var(--global-color-accent); }
2811
2814
  .lexbadge.contrast { --badge-color: var(--global-text-primary); color: var(--global-color-primary); }
2812
2815
  .lexbadge.warning { --badge-color: var(--global-color-warning); }
@@ -2872,7 +2875,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2872
2875
 
2873
2876
  .lexmenubox {
2874
2877
  position: absolute;
2875
- padding-right: 8px;
2876
2878
  z-index: 1001;
2877
2879
  background-color: #111111f3;
2878
2880
  border: 1px solid #aaaaaa48;
@@ -2981,7 +2983,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2981
2983
  }
2982
2984
 
2983
2985
  .lexmenubox .lexmenuboxentry:not(.disabled):hover {
2984
- background-color: var(--global-selected);
2986
+ background-color: var(--global-color-accent);
2985
2987
  color: #f5f5f5;
2986
2988
  }
2987
2989
 
@@ -3001,9 +3003,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3001
3003
 
3002
3004
  .lexmenubox .lexseparator {
3003
3005
  margin: 2px 0 2px;
3004
- width: -moz-calc(100% + 8px);
3005
- width: -webkit-calc(100% + 8px);
3006
- width: calc(100% + 8px);
3006
+ width: 100%;
3007
3007
  border-color: var(--global-text-tertiary);
3008
3008
  opacity: 0.25;
3009
3009
  }
@@ -3045,6 +3045,10 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3045
3045
  user-select: none;
3046
3046
  }
3047
3047
 
3048
+ .lexmenubar .lexmenubutton.main:last-child {
3049
+ margin-right: 8px;
3050
+ }
3051
+
3048
3052
  .lexmenubar .lexmenubutton a {
3049
3053
  margin-left: 0px !important;
3050
3054
  }
@@ -3054,7 +3058,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3054
3058
  }
3055
3059
 
3056
3060
  .lexmenubar .lexmenubutton.disabled a {
3057
- color: light-dark(var(--global-color-tertiary), var(--global-button-color));
3061
+ color: var(--global-color-quaternary);
3058
3062
  cursor: default;
3059
3063
  }
3060
3064
 
@@ -3063,9 +3067,9 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3063
3067
  .lexcontextmenu {
3064
3068
  z-index: 102;
3065
3069
  position: absolute;
3066
- padding-right: 20px;
3070
+ /* padding-right: 20px; */
3067
3071
  border-radius: 6px;
3068
- box-shadow: 0 0 6px rgba(46, 46, 46, 0.596) !important;
3072
+ box-shadow: 0 0 6px rgba(46, 46, 46, 0.2) !important;
3069
3073
  background-color: var(--global-blur-background);
3070
3074
  border: 1px solid #91909036;
3071
3075
  }
@@ -3086,10 +3090,9 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3086
3090
  .lexcontextmenu .lexmenuboxentry {
3087
3091
  width: 100%;
3088
3092
  color: var(--global-text-secondary);
3089
- padding: 3px;
3090
- padding-left: 10px;
3091
- padding-right: 10px;
3092
- padding-bottom: 4px;
3093
+ padding: 4px;
3094
+ padding-inline: 8px;
3095
+ display: flex;
3093
3096
  cursor: pointer;
3094
3097
  -webkit-user-select: none;
3095
3098
  -moz-user-select: none;
@@ -3109,21 +3112,18 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3109
3112
 
3110
3113
  .lexcontextmenu .lexmenuboxentry.cmtitle {
3111
3114
  background: light-dark(var(--global-color-tertiary), var(--global-intense-background));
3112
- font-weight: bold;
3115
+ font-weight: 600;
3113
3116
  cursor: default;
3114
3117
  }
3115
3118
 
3116
3119
  .lexcontextmenu .lexmenuboxentry.cmseparator {
3117
- height: 1px;
3118
3120
  border-bottom: 1px solid var(--global-color-tertiary);
3119
3121
  padding-bottom: 0;
3120
3122
  padding-top: 0;
3121
- margin-top: -4px;
3122
3123
  }
3123
3124
 
3124
3125
  .lexcontextmenu .lexmenuboxentry .lexentryname {
3125
- margin-right: 10px;
3126
- margin-top: 2px;
3126
+ margin-right: 1rem;
3127
3127
  font-size: var(--global-font-size);
3128
3128
  white-space: nowrap;
3129
3129
  overflow: hidden;
@@ -3136,20 +3136,13 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3136
3136
 
3137
3137
  /* normal icons */
3138
3138
  .lexcontextmenu .lexmenuboxentry a {
3139
- float: right;
3140
- margin-right: 0px;
3141
- margin-top: 10px;
3139
+ align-content: center;
3140
+ margin-left: auto;
3142
3141
  font-size: var(--global-font-size-xs);
3143
3142
  }
3144
3143
 
3145
- /* submenu specified arrow */
3146
- .lexcontextmenu .lexmenuboxentry a.fa-xs {
3147
- float: right;
3148
- margin-top: -9px;
3149
- }
3150
-
3151
3144
  .lexcontextmenu .lexmenuboxentry:hover:not(.cmtitle) {
3152
- background-color: var(--global-selected);
3145
+ background-color: var(--global-color-accent);
3153
3146
  color: #f5f5f5;
3154
3147
  }
3155
3148
 
@@ -3172,7 +3165,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3172
3165
  /* Side Bar */
3173
3166
 
3174
3167
  .lexsidebar {
3175
- width: calc(100% - 20px);
3168
+ width: 100%;
3176
3169
  height: 100%;
3177
3170
  padding: 10px;
3178
3171
  display: flex;
@@ -3191,8 +3184,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3191
3184
 
3192
3185
  .lexsidebarcontent {
3193
3186
  width: 100%;
3194
- padding-block-start: 4px;
3195
- padding-block-end: 4px;
3196
3187
  display: flex;
3197
3188
  flex-direction: column;
3198
3189
  overflow-y: scroll;
@@ -3218,10 +3209,11 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3218
3209
  margin-bottom: 0.4rem;
3219
3210
  }
3220
3211
 
3221
- .lexsidebar .lextext {
3212
+ .lexsidebar .lexsidebarfilter {
3222
3213
  transform: translate(0, 0);
3223
3214
  opacity: 1;
3224
- 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);
3215
+ margin-block: 0.5rem;
3216
+ transition: all 0.2s cubic-bezier(0,0,.2,1);
3225
3217
  }
3226
3218
 
3227
3219
  .lexsidebar .lexsidebargrouptitle {
@@ -3236,8 +3228,8 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3236
3228
  transform: translate(0, 0);
3237
3229
  opacity: 1;
3238
3230
  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);
3239
- height: 44px;
3240
- max-height: 44px;
3231
+ height: 32px;
3232
+ max-height: 32px;
3241
3233
  align-content: center;
3242
3234
  }
3243
3235
 
@@ -3248,18 +3240,19 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3248
3240
  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);
3249
3241
  }
3250
3242
 
3251
- .lexsidebar.collapsing .lexsidebargrouptitle *, .lexsidebar.collapsing .lextext {
3243
+ .lexsidebar.collapsing .lexsidebargrouptitle *, .lexsidebar.collapsing .lexsidebarfilter {
3252
3244
  max-height: 0px;
3253
3245
  transform: translate(0, -24px);
3254
3246
  opacity: 0;
3247
+ margin-block: 0;
3255
3248
  }
3256
3249
 
3257
- .lexsidebar.collapsed .lexsidebargrouptitle *, .lexsidebar.collapsed .lextext {
3250
+ .lexsidebar.collapsed .lexsidebargrouptitle * {
3258
3251
  display: none;
3259
3252
  }
3260
3253
 
3261
3254
  .lexsidebar .lexsidebarentry {
3262
- width: calc(100% - 16px);
3255
+ width: 100%;
3263
3256
  padding: 6px;
3264
3257
  padding-inline: 8px;
3265
3258
  border-radius: 8px;
@@ -3283,7 +3276,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3283
3276
  }
3284
3277
 
3285
3278
  .lexsidebar .lexsidebarentry.selected {
3286
- background-color: var(--global-selected);
3279
+ background-color: var(--global-color-accent);
3287
3280
  }
3288
3281
 
3289
3282
  .lexsidebar .lexsidebarentry:active {
@@ -3328,7 +3321,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3328
3321
  }
3329
3322
 
3330
3323
  .lexsidebar .lexsidebarsubentrycontainer {
3331
- width: calc(100% - 48px);
3324
+ width: 100%;
3332
3325
  margin-block-start: 4px;
3333
3326
  margin-block-end: 8px;
3334
3327
  margin-left: 16px;
@@ -3396,8 +3389,8 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3396
3389
  }
3397
3390
 
3398
3391
  .lexsidebar .lexsidebarfooter, .lexsidebar .lexsidebarheader {
3399
- width: calc(100% - 16px);
3400
- height: 36px;
3392
+ width: 100%;
3393
+ height: 48px;
3401
3394
  display: flex;
3402
3395
  border-radius: 8px;
3403
3396
  padding: 8px;
@@ -3416,7 +3409,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3416
3409
  }
3417
3410
 
3418
3411
  .lexsidebar.collapsing .lexsidebarheader {
3419
- background-color: var(--global-selected);
3412
+ background-color: var(--global-color-accent);
3420
3413
  }
3421
3414
 
3422
3415
  .lexsidebar .lexsidebarfooter:active, .lexsidebar .lexsidebarheader:active {
@@ -3437,7 +3430,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3437
3430
  }
3438
3431
 
3439
3432
  .lexsidebar .lexsidebarfooter div.infodefault, .lexsidebar .lexsidebarheader div.infodefault {
3440
- width: calc(100% - 88px);
3433
+ width: 100%;
3441
3434
  padding-inline: 12px;
3442
3435
  justify-content: center;
3443
3436
  display: flex;
@@ -3560,11 +3553,11 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3560
3553
  }
3561
3554
 
3562
3555
  .lexoverlaybuttons .lexbutton {
3556
+ --button-color: var(--global-color-secondary);
3563
3557
  padding: 6px 6px;
3564
3558
  font-size: var(--global-font-size-lg);
3565
3559
  border-radius: 10px;
3566
3560
  justify-content: center;
3567
- background: none;
3568
3561
  color: var(--global-text-secondary);
3569
3562
  height: 100%;
3570
3563
  }
@@ -3573,46 +3566,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3573
3566
  font-size: var(--global-font-size-lg);
3574
3567
  }
3575
3568
 
3576
- .lexoverlaybuttons .lexbutton a {
3577
- line-height: 10px;
3578
- font-size: var(--global-font-size-lg);
3579
- }
3580
-
3581
- .lexoverlaybuttons .lexbutton.array a {
3582
- font-size: var(--global-font-size-sm);
3583
- margin-left: 4px;
3584
- }
3585
-
3586
- :root[data-theme="light"] .lexoverlaybuttons .lexbutton img {
3587
- filter: invert(1);
3588
- }
3589
-
3590
- .lexoverlaybuttons .lexbutton.selected {
3591
- background-color: light-dark(var(--global-selected-light), var(--global-selected)) !important;
3592
- color: #fff;
3593
- outline: none;
3594
- border-radius: 8px;
3595
- }
3596
-
3597
- .lexoverlaybuttons .lexbutton.selected img,
3598
- .lexoverlaybuttons .lexbutton:hover img {
3599
- filter: none;
3600
- }
3601
-
3602
- .lexoverlaybuttons .lexbutton:hover {
3603
- color: var(--global-text-primary);
3604
- background-color: color-mix(in srgb, var(--global-button-color), #fff 4%);
3605
- }
3606
-
3607
- .lexoverlaybuttons .lexbutton.selected:hover {
3608
- color: #f4f4ffe6;
3609
- }
3610
-
3611
- .lexoverlaybuttons .lexbutton:active {
3612
- outline: none !important;
3613
- color: #d5d5d5;
3614
- }
3615
-
3616
3569
  .lexoverlaybuttons .lexoverlaygroup {
3617
3570
  display: flex;
3618
3571
  flex: none;
@@ -3621,11 +3574,15 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3621
3574
  }
3622
3575
 
3623
3576
  .lexoverlaybuttons .lexoverlaygroup .lexbutton {
3624
- background: none;
3577
+ --button-color: var(--global-color-tertiary);
3625
3578
  -webkit-backdrop-filter: none;
3626
3579
  backdrop-filter: none;
3627
3580
  }
3628
3581
 
3582
+ .lexoverlaybuttons .lexbutton.selected {
3583
+ --button-color: var(--global-color-accent);
3584
+ }
3585
+
3629
3586
  .lexoverlaybuttonscontainer.vertical .lexoverlaygroup {
3630
3587
  display: grid;
3631
3588
  margin-right: 0px;
@@ -3681,13 +3638,13 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3681
3638
 
3682
3639
  .lexareatabs .lexareatab.thumb {
3683
3640
  position: absolute;
3684
- background: light-dark(var(--global-selected-light), var(--global-selected));
3641
+ background: var(--global-color-accent);
3685
3642
  z-index: 0;
3686
3643
  transition: linear transform 0.15s;
3687
3644
  }
3688
3645
 
3689
3646
  .lexareatabs.row {
3690
- background-color: light-dark(var(--global-color-tertiary), var(--global-button-color));
3647
+ background-color: var(--global-color-tertiary);
3691
3648
  border-radius: 8px;
3692
3649
  padding: 3px;
3693
3650
  margin: 6px;
@@ -3703,7 +3660,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3703
3660
  }
3704
3661
 
3705
3662
  .lexareatabs.fit {
3706
- width: calc(100% - 12px);
3663
+ width: 100%;
3707
3664
  padding-inline: 6px;
3708
3665
  }
3709
3666
 
@@ -3745,14 +3702,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3745
3702
  transition-timing-function: ease-out;
3746
3703
  }
3747
3704
 
3748
- .lexareatabscontainer .lexpanel:not(.lexoverlaybuttons) {
3749
- margin: 0;
3750
- }
3751
-
3752
- .lexareatabscontainer .lexbranch {
3753
- margin: 4px 7px !important;
3754
- }
3755
-
3756
3705
  .lexareatabscontent.folded {
3757
3706
  max-height: 0px;
3758
3707
  }
@@ -3766,11 +3715,10 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3766
3715
  /* Avatar Widget */
3767
3716
 
3768
3717
  .lexavatar {
3769
- width: 32px;
3770
- height: 32px;
3718
+ width: 48px;
3771
3719
  border-radius: 8px;
3772
- margin: auto 0;
3773
3720
  align-content: center;
3721
+ aspect-ratio: 1;
3774
3722
  }
3775
3723
 
3776
3724
  .lexavatar * {
@@ -3798,25 +3746,25 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3798
3746
  }
3799
3747
 
3800
3748
  .lexcard:hover a {
3801
- color: var(--global-selected);
3749
+ color: var(--global-color-accent);
3802
3750
  }
3803
3751
 
3804
3752
  .lexcard:hover img {
3805
- outline: 3px solid var(--global-selected);
3753
+ outline: 3px solid var(--global-color-accent);
3806
3754
  }
3807
3755
 
3808
3756
  .lexcard span {
3809
3757
  font-size: var(--global-font-size-lg);
3810
3758
  font-family: var(--global-title-font);
3811
- font-weight: 600;
3759
+ font-weight: 500;
3812
3760
  text-transform: uppercase;
3813
- width: calc(100% - 16px);
3761
+ width: 100%;
3762
+ height: 32px;
3814
3763
  display: flex;
3815
3764
  background-color: var(--global-blur-background);
3816
3765
  --webkit-backdrop-filter: blur(12px);
3817
3766
  backdrop-filter: blur(12px);
3818
3767
  align-items: center;
3819
- height: 16px;
3820
3768
  position: absolute;
3821
3769
  top: 0;
3822
3770
  left: 0;
@@ -3831,7 +3779,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3831
3779
  }
3832
3780
 
3833
3781
  .lexcard span a:hover {
3834
- color: var(--global-selected);
3782
+ color: var(--global-color-accent);
3835
3783
  }
3836
3784
 
3837
3785
  /* Layers Widget */
@@ -3840,7 +3788,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3840
3788
  display: grid;
3841
3789
  grid-template-columns: 18px 18px 18px 18px 18px 18px 18px 18px;
3842
3790
  grid-gap: 6px 8px;
3843
- /* Gap between grid cells */
3844
3791
  justify-content: center;
3845
3792
  }
3846
3793
 
@@ -3855,10 +3802,11 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3855
3802
  cursor: pointer;
3856
3803
  border-radius: 4px;
3857
3804
  font-size: var(--global-font-size-sm);
3805
+ transition: background-color 0.15s linear;
3858
3806
  }
3859
3807
 
3860
3808
  .lexlayer.selected {
3861
- --layer-color: light-dark(var(--global-selected-light), var(--global-selected));
3809
+ --layer-color: var(--global-color-accent);
3862
3810
  color: #fff;
3863
3811
  }
3864
3812
 
@@ -3881,7 +3829,8 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3881
3829
  }
3882
3830
 
3883
3831
  .lexlistitem {
3884
- width: calc(100% - 8px);
3832
+ width: 100%;
3833
+ height: 24px;
3885
3834
  cursor: pointer;
3886
3835
  color: var(--global-text-secondary);
3887
3836
  font-size: var(--global-font-size);
@@ -3890,7 +3839,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3890
3839
  padding-right: 4px;
3891
3840
  margin-top: 1px;
3892
3841
  margin-bottom: 1px;
3893
- height: 20px;
3894
3842
  line-height: 22px;
3895
3843
  align-content: center;
3896
3844
  display: flow-root;
@@ -3898,6 +3846,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3898
3846
  -moz-user-select: none;
3899
3847
  -ms-user-select: none;
3900
3848
  user-select: none;
3849
+ transition: background-color 0.15s linear;
3901
3850
  }
3902
3851
 
3903
3852
  .lexlistitem a {
@@ -3916,7 +3865,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3916
3865
 
3917
3866
  .lexlistitem.selected {
3918
3867
  color: #fff;
3919
- background-color: light-dark(var(--global-selected-light), var(--global-selected));
3868
+ background-color: var(--global-color-accent);
3920
3869
  }
3921
3870
 
3922
3871
  /* Array Widget */
@@ -3925,8 +3874,18 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3925
3874
  .lexwidget:has(.lexcheckboxsubmenu),
3926
3875
  .lexwidget:has(.lextogglesubmenu),
3927
3876
  .lexwidget:has(.lexcustomcontainer) {
3928
- background-color: light-dark(var(--global-color-tertiary), var(--global-medium-background));
3929
3877
  border-radius: 6px;
3878
+ display: grid;
3879
+ grid-template-columns: repeat(2, 1fr);
3880
+ grid-template-rows: auto auto;
3881
+ transition: background-color 0.2s ease-out;
3882
+ }
3883
+
3884
+ .lexwidget:has(.lexarrayitems)[data-opened=true],
3885
+ .lexwidget:has(.lexcheckboxsubmenu)[data-opened=true],
3886
+ .lexwidget:has(.lextogglesubmenu)[data-opened=true],
3887
+ .lexwidget:has(.lexcustomcontainer)[data-opened=true] {
3888
+ background-color: light-dark(var(--global-color-tertiary), var(--global-medium-background));
3930
3889
  }
3931
3890
 
3932
3891
  .lexarray .lexwidget {
@@ -3940,10 +3899,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3940
3899
  color: var(--global-text-secondary);
3941
3900
  font-size: var(--global-font-size);
3942
3901
  margin-top: -1px;
3943
- }
3944
-
3945
- .lexarrayitems .small .lexbutton {
3946
- background: none;
3902
+ grid-column: span 2;
3947
3903
  }
3948
3904
 
3949
3905
  .lexarrayitems .lexwidgetname {
@@ -3956,7 +3912,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3956
3912
  display: inline-flex;
3957
3913
  flex-wrap: wrap;
3958
3914
  line-height: 12px;
3959
- background-color: light-dark(var(--global-color-tertiary), var(--global-button-color));
3915
+ background-color: var(--global-color-tertiary);
3960
3916
  border-radius: 8px;
3961
3917
  padding: 4px;
3962
3918
  }
@@ -3991,7 +3947,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3991
3947
 
3992
3948
  .lexcounter {
3993
3949
  display: flex;
3994
- margin: 0 auto;
3950
+ place-content: center;
3995
3951
  }
3996
3952
 
3997
3953
  .lexcounterbox {
@@ -4020,7 +3976,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
4020
3976
  .lextable table {
4021
3977
  width: 100%;
4022
3978
  border: 1px solid;
4023
- border-color: light-dark(#dbd8d8c0, var(--global-button-color));
3979
+ border-color: var(--global-color-tertiary);
4024
3980
  border-collapse: separate;
4025
3981
  border-radius: 8px;
4026
3982
  border-spacing: 0px;
@@ -4063,10 +4019,19 @@ tr.dragging {
4063
4019
  pointer-events: none;
4064
4020
  }
4065
4021
 
4022
+ th, td {
4023
+ padding: 6px;
4024
+ padding-inline: 12px;
4025
+ text-align: left;
4026
+ align-content: center;
4027
+ }
4028
+
4066
4029
  th {
4067
4030
  --th-color: var(--global-text-secondary);
4031
+ font-weight: 600;
4068
4032
  color: var(--th-color);
4069
4033
  font-size: var(--global-font-size);
4034
+ padding-block: 2px;
4070
4035
  cursor: pointer;
4071
4036
  transition: all 0.1s linear;
4072
4037
  background-color: var(--global-color-tertiary);
@@ -4080,6 +4045,15 @@ th a {
4080
4045
  pointer-events: none;
4081
4046
  }
4082
4047
 
4048
+ th span {
4049
+ border-radius: 6px;
4050
+ padding: 0.4rem;
4051
+ }
4052
+
4053
+ th span:hover {
4054
+ background-color: var(--global-color-secondary);
4055
+ }
4056
+
4083
4057
  th a, td a {
4084
4058
  font-size: var(--global-font-size-xs) !important;
4085
4059
  display: flex;
@@ -4095,13 +4069,6 @@ th:hover {
4095
4069
  color: color-mix(in srgb, var(--th-color), #000 10%);
4096
4070
  }
4097
4071
 
4098
- th, td {
4099
- padding: 6px;
4100
- padding-inline: 12px;
4101
- text-align: left;
4102
- align-content: center;
4103
- }
4104
-
4105
4072
  th.centered, td.centered {
4106
4073
  text-align: center;
4107
4074
  }
@@ -4119,6 +4086,11 @@ th .lexcheckbox, td .lexcheckbox {
4119
4086
  height: 1.25em;
4120
4087
  }
4121
4088
 
4089
+ th a {
4090
+ display: inline-block;
4091
+ transform: translate(6px, 3px);
4092
+ }
4093
+
4122
4094
  td {
4123
4095
  justify-items: center;
4124
4096
  border-top: 2px solid;
@@ -4137,11 +4109,12 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4137
4109
 
4138
4110
  .lextable .lextablebuttons {
4139
4111
  display: inline-flex;
4140
- gap: 0.8rem;
4112
+ gap: 0.2rem;
4141
4113
  }
4142
4114
 
4143
4115
  .lextable .lextablebuttons .lexicon {
4144
4116
  font-size: var(--global-font-size-sm) !important;
4117
+ padding: 0.2rem;
4145
4118
  }
4146
4119
 
4147
4120
  :root[data-theme="light"] .lextable table {
@@ -4156,6 +4129,7 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4156
4129
  color: var(--global-text-secondary);
4157
4130
  font-size: var(--global-font-size);
4158
4131
  margin-top: -1px;
4132
+ grid-column: span 2;
4159
4133
  }
4160
4134
 
4161
4135
  .lexcustomcontainer span {
@@ -4164,10 +4138,6 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4164
4138
  justify-content: space-between;
4165
4139
  }
4166
4140
 
4167
- .lexcustomcontainer .lexbutton span:not(:has(.menu)) {
4168
- width: 95%;
4169
- }
4170
-
4171
4141
  /* Knob Widget */
4172
4142
 
4173
4143
  .lexknob {
@@ -4192,8 +4162,8 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4192
4162
  position: absolute;
4193
4163
  width: 125%;
4194
4164
  height: 125%;
4195
- top: -15.5%;
4196
- left: -15.5%;
4165
+ top: -12.5%;
4166
+ left: -12.5%;
4197
4167
  border-radius: 50%;
4198
4168
  border: 2px solid rgba(255, 255, 255, 0.2);
4199
4169
  border-bottom-color: transparent;
@@ -4258,7 +4228,7 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4258
4228
  }
4259
4229
 
4260
4230
  .lexknob .knobmarker {
4261
- background-color: var(--global-selected);
4231
+ background-color: var(--global-color-accent);
4262
4232
  filter: brightness(1.5);
4263
4233
  width: 6px;
4264
4234
  height: 6px;
@@ -4309,7 +4279,7 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4309
4279
  }
4310
4280
 
4311
4281
  :root[data-theme="light"] .lexknob .knobmarker {
4312
- background-color: var(--global-selected-dark);
4282
+ background-color: var(--global-color-accent-dark);
4313
4283
  filter: brightness(1.5);
4314
4284
  }
4315
4285
 
@@ -4375,14 +4345,6 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4375
4345
  height: 100%;
4376
4346
  }
4377
4347
 
4378
- .lextimelinepanel {
4379
- /* overflow: hidden; */
4380
- }
4381
-
4382
- /* .lextimeline .lexarea, .lextimelinepanel {
4383
- background-color: var(--global-intense-background);
4384
- } */
4385
-
4386
4348
  .lextimeline *::-webkit-scrollbar {
4387
4349
  display: none;
4388
4350
  }
@@ -4394,18 +4356,10 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4394
4356
 
4395
4357
  .lextimeline .lexwidget:has(.lexbutton:not(.array)) {
4396
4358
  padding: 1px;
4397
- /* padding-left: 10px;
4398
- padding-right: 10px; */
4399
4359
  }
4400
4360
 
4401
4361
  .lextimeline .lexinlinewidgets {
4402
4362
  padding-right: 10px;
4403
- /* background-color: var(--global-color-secondary); */
4404
- /* height: 100%; */
4405
- }
4406
-
4407
- .lextimeline .lexbutton:hover {
4408
- color: var(--global-selected-light);
4409
4363
  }
4410
4364
 
4411
4365
  .lextimeline .lextree {
@@ -4429,14 +4383,10 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4429
4383
  height: unset;
4430
4384
  }
4431
4385
 
4432
- .lextimeline .lexbutton.accept:hover {
4433
- background-color: color-mix(in srgb, var(--global-button-color), #000 7%);
4434
- }
4435
-
4436
4386
  /**/
4437
4387
  .lexmin {
4438
4388
  display: inline-block;
4439
- color: var(--global-selected-light);
4389
+ color: var(--global-color-accent-light);
4440
4390
  background: var(--global-color-primary);
4441
4391
  border-radius: 8px;
4442
4392
  padding: 4px;
@@ -4568,7 +4518,7 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4568
4518
 
4569
4519
  .lexassetbrowser .lexsplitbar.horizontal {
4570
4520
  position: relative;
4571
- height: calc(100%);
4521
+ height: 100%;
4572
4522
  border-radius: 0px;
4573
4523
  left: 0 !important;
4574
4524
  top: 0;
@@ -4624,7 +4574,7 @@ ul.lexassetscontent {
4624
4574
  margin: 0.5em;
4625
4575
  margin-top: 0.75em;
4626
4576
  padding: 0;
4627
- box-shadow: 0 0 8px black;
4577
+ box-shadow: 0 0 2px rgba(0, 0, 0, .14);
4628
4578
  overflow: hidden;
4629
4579
  background-color: #555;
4630
4580
  cursor: pointer;
@@ -4657,16 +4607,14 @@ ul.lexassetscontent {
4657
4607
  }
4658
4608
 
4659
4609
  .lexassetscontent.list li {
4660
- width: calc(100% - 0.5em);
4610
+ width: 100%;
4661
4611
  height: 1.8em;
4662
4612
  border-top: 0px;
4663
- border-left: 4px solid rgba(0, 0, 0, 0);
4664
- border-bottom-left-radius: 2px;
4665
- border-bottom-right-radius: 2px;
4613
+ border-left: 4px solid transparent;
4614
+ border-radius: 4px;
4666
4615
  margin: 0;
4667
4616
  margin-top: 0.4em;
4668
4617
  margin-bottom: 0.4em;
4669
- box-shadow: 0 0 6px rgba(0, 0, 0, 0.858);
4670
4618
  }
4671
4619
 
4672
4620
  .lexassetscontent .asset-file-preview {
@@ -4709,12 +4657,12 @@ ul.lexassetscontent {
4709
4657
  }
4710
4658
 
4711
4659
  .lexassetscontent li:hover {
4712
- outline: 2px solid var(--global-selected);
4660
+ outline: 2px solid var(--global-color-accent);
4713
4661
  }
4714
4662
 
4715
4663
  .lexassetscontent li.selected {
4716
4664
  transition: none !important;
4717
- outline: 2px solid var(--global-selected);
4665
+ outline: 2px solid var(--global-color-accent);
4718
4666
  font-weight: bold;
4719
4667
  }
4720
4668
 
@@ -4724,7 +4672,7 @@ ul.lexassetscontent {
4724
4672
  bottom: 0px;
4725
4673
  -webkit-text-size-adjust: 100%;
4726
4674
  font-size: var(--global-font-size);
4727
- color: #BBB;
4675
+ color: var(--global-text-primary);
4728
4676
  cursor: pointer;
4729
4677
  text-align: center;
4730
4678
  box-sizing: border-box;
@@ -4735,7 +4683,7 @@ ul.lexassetscontent {
4735
4683
  overflow: hidden;
4736
4684
  text-overflow: ellipsis;
4737
4685
  white-space: nowrap;
4738
- background-color: rgba(12, 12, 12, 0.8);
4686
+ background-color: var(--global-intense-background);
4739
4687
  transition: all 0.1s;
4740
4688
  z-index: 1;
4741
4689
  }
@@ -4792,7 +4740,7 @@ ul.lexassetscontent {
4792
4740
  .lexassetscontent li.selected .lexassettitle {
4793
4741
  color: #f5f5f5;
4794
4742
  text-shadow: 0 0 3px black;
4795
- background-color: var(--global-selected);
4743
+ background-color: var(--global-color-accent);
4796
4744
  }
4797
4745
 
4798
4746
  .lexassetscontent li img {
@@ -4871,7 +4819,7 @@ ul.lexassetscontent {
4871
4819
  .codebasearea .lexareatab.selected {
4872
4820
  background-color: var(--global-color-secondary) !important;
4873
4821
  color: var(--global-text-secondary) !important;
4874
- border-top: 1px solid var(--global-selected);
4822
+ border-top: 1px solid var(--global-color-accent);
4875
4823
  border-bottom: none;
4876
4824
  }
4877
4825
 
@@ -4906,7 +4854,7 @@ ul.lexassetscontent {
4906
4854
  .lexcodeeditor {
4907
4855
  outline: none;
4908
4856
  overflow: hidden;
4909
- width: calc(100%);
4857
+ width: 100%;
4910
4858
  -webkit-user-select: none;
4911
4859
  -moz-user-select: none;
4912
4860
  -ms-user-select: none;
@@ -4922,7 +4870,7 @@ ul.lexassetscontent {
4922
4870
  position: absolute;
4923
4871
  z-index: 3;
4924
4872
  bottom: 0px;
4925
- margin-left: 0px;
4873
+ justify-items: end;
4926
4874
  }
4927
4875
 
4928
4876
  .lexcodegutter {
@@ -4950,7 +4898,7 @@ ul.lexassetscontent {
4950
4898
  }
4951
4899
 
4952
4900
  .lexcodeeditor .codetabsarea.with-vscrollbar {
4953
- width: calc(100% - 10px) !important;
4901
+ width: 100% !important;
4954
4902
  }
4955
4903
 
4956
4904
  .lexcodeeditor .codetabsarea.with-hscrollbar {
@@ -5161,7 +5109,7 @@ ul.lexassetscontent {
5161
5109
  top: 0px;
5162
5110
  width: 100px;
5163
5111
  height: var(--code-editor-row-height);
5164
- background-color: var(--global-selected);
5112
+ background-color: var(--global-color-accent);
5165
5113
  opacity: 0.4;
5166
5114
  }
5167
5115
 
@@ -5178,7 +5126,7 @@ ul.lexassetscontent {
5178
5126
  top: 26px;
5179
5127
  z-index: 100;
5180
5128
  border-radius: 4px;
5181
- border: 1px solid var(--global-button-color);
5129
+ border: 1px solid var(--global-color-tertiary);
5182
5130
  box-shadow: 0 0px 4px #101010;
5183
5131
  overflow-y: scroll;
5184
5132
  transform: translateY(-72px);
@@ -5207,7 +5155,7 @@ ul.lexassetscontent {
5207
5155
  visibility: hidden;
5208
5156
  z-index: 100;
5209
5157
  border-radius: 4px;
5210
- border: 1px solid var(--global-button-color);
5158
+ border: 1px solid var(--global-color-tertiary);
5211
5159
  box-shadow: 0 0px 4px #101010;
5212
5160
  overflow-y: scroll;
5213
5161
  }
@@ -5241,7 +5189,7 @@ ul.lexassetscontent {
5241
5189
  }
5242
5190
 
5243
5191
  .lexcodeeditor .autocomplete pre.selected {
5244
- background-color: var(--global-selected);
5192
+ background-color: var(--global-color-accent);
5245
5193
  }
5246
5194
 
5247
5195
  .lexcodeeditor .autocomplete pre span {
@@ -5249,7 +5197,7 @@ ul.lexassetscontent {
5249
5197
  }
5250
5198
 
5251
5199
  .lexcodeeditor .autocomplete pre span.word-highlight {
5252
- color: var(--global-selected-light);
5200
+ color: var(--global-color-accent-light);
5253
5201
  }
5254
5202
 
5255
5203
  .lexcodeeditor .autocomplete pre.selected span.word-highlight {
@@ -5491,9 +5439,9 @@ ul.lexassetscontent {
5491
5439
 
5492
5440
  .lexgraph .box-selection-svg {
5493
5441
  stroke-width: 3px;
5494
- stroke: var(--global-selected);
5442
+ stroke: var(--global-color-accent);
5495
5443
  border-radius: 8px;
5496
- fill: var(--global-selected);
5444
+ fill: var(--global-color-accent);
5497
5445
  fill-opacity: 0.2;
5498
5446
  }
5499
5447
 
@@ -5562,7 +5510,7 @@ ul.lexassetscontent {
5562
5510
  }
5563
5511
 
5564
5512
  .lexgraphnode.selected {
5565
- border: 3px solid var(--global-selected-dark);
5513
+ border: 3px solid var(--global-color-accent-dark);
5566
5514
  border: 3px solid #ffc107;
5567
5515
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .14);
5568
5516
  }
@@ -5612,8 +5560,10 @@ ul.lexassetscontent {
5612
5560
  font-size: var(--global-font-size-sm);
5613
5561
  color: #d9d9e3;
5614
5562
  text-shadow: 0px 1px 6px #22222283;
5615
- display: flex;
5616
5563
  min-height: 18px;
5564
+ display: flex;
5565
+ gap: 0.3rem;
5566
+ align-items: center;
5617
5567
  }
5618
5568
 
5619
5569
  .lexgraphnode .lexgraphnodeio.iooutput {
@@ -5623,16 +5573,14 @@ ul.lexassetscontent {
5623
5573
  .lexgraphnode .lexgraphnodeio .io__type {
5624
5574
  font-size: calc(var(--global-font-size-xs) - 1px);
5625
5575
  font-weight: 700;
5626
- line-height: 10px;
5576
+ line-height: 1;
5627
5577
  min-width: 11px;
5628
5578
  max-width: 11px;
5629
5579
  min-height: 10px;
5630
5580
  max-height: 10px;
5631
5581
  background-color: #afafaf;
5632
5582
  align-self: center;
5633
- margin-right: 3px;
5634
5583
  border-radius: 3px;
5635
- padding-top: 1px;
5636
5584
  text-align: -webkit-center;
5637
5585
  text-align: center;
5638
5586
  border: 1px solid #afafaf6b;
@@ -5648,7 +5596,6 @@ ul.lexassetscontent {
5648
5596
  position: absolute;
5649
5597
  margin-left: -30px;
5650
5598
  font-weight: 600;
5651
- margin-top: 3px;
5652
5599
  background-color: #afafaf;
5653
5600
  color: var(--global-color-primary);
5654
5601
  font-size: var(--global-font-size-xs);
@@ -5688,10 +5635,6 @@ ul.lexassetscontent {
5688
5635
  background-color: #56a8d8;
5689
5636
  }
5690
5637
 
5691
- .lexgraphnode .lexgraphnodeio .io__name {
5692
- margin-top: 2px;
5693
- }
5694
-
5695
5638
  .lexgraphnode .lexgraphnodeio .io__type.output {
5696
5639
  margin-right: unset;
5697
5640
  margin-left: 3px;
@@ -5818,10 +5761,6 @@ ul.lexassetscontent {
5818
5761
  }
5819
5762
 
5820
5763
  .lexvideoeditor .lexconstrolsarea {
5821
- /* background-color: var(--global-intense-background); */
5822
- /* padding: 5px;
5823
- margin: 10px; */
5824
- /* width: calc(100% - 30px)!important; */
5825
5764
  min-height: 88px !important;
5826
5765
  border-radius: 8px;
5827
5766
  display: flex;
@@ -5865,18 +5804,6 @@ ul.lexassetscontent {
5865
5804
  width: calc(100% - 40px) !important;
5866
5805
  }
5867
5806
 
5868
- /* .lexvideoeditor .lexvideotimebar {
5869
- width: calc(100% - 40px);
5870
- height: 100%;
5871
- background-color: var(--global-intense-background);
5872
- } */
5873
-
5874
- /* .lexvideoeditor .lexvideotimebar canvas {
5875
- width: calc(100%);
5876
- height: calc(100% );
5877
- padding: 5px;
5878
- } */
5879
-
5880
5807
  .resizeable {
5881
5808
  resize: both;
5882
5809
  overflow: auto;
@@ -5884,7 +5811,7 @@ ul.lexassetscontent {
5884
5811
 
5885
5812
  .resize-area {
5886
5813
  position: absolute;
5887
- border: 2px double var(--global-selected-light);
5814
+ border: 2px double var(--global-color-accent-light);
5888
5815
  cursor: move;
5889
5816
  z-index: 100;
5890
5817
  }
@@ -5920,4 +5847,4 @@ ul.lexassetscontent {
5920
5847
  bottom: -5px;
5921
5848
  right: -5px;
5922
5849
  cursor: nwse-resize;
5923
- }
5850
+ }