lexgui 0.5.2 → 0.5.4

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, #040405);
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;
@@ -191,6 +182,13 @@ body {
191
182
  margin: 0;
192
183
  padding: 0;
193
184
  font-family: var(--global-font);
185
+ background-color: var(--global-color-primary);
186
+ }
187
+
188
+ *,
189
+ *::before,
190
+ *::after {
191
+ box-sizing: border-box;
194
192
  }
195
193
 
196
194
  :root[data-strictVP="false"] {
@@ -202,7 +200,7 @@ blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
202
200
  }
203
201
 
204
202
  a:any-link {
205
- color: var(--global-selected-light);
203
+ color: var(--global-color-accent-light);
206
204
  }
207
205
 
208
206
  canvas {
@@ -284,15 +282,6 @@ body.noevents * {
284
282
  cursor: move;
285
283
  }
286
284
 
287
- .hidden {
288
- display: none !important;
289
- }
290
-
291
- .sticky {
292
- position: sticky;
293
- top: 0;
294
- }
295
-
296
285
  .hidden-opacity {
297
286
  opacity: 0 !important;
298
287
  pointer-events: none;
@@ -304,6 +293,13 @@ body.noevents * {
304
293
  text-overflow: ellipsis;
305
294
  }
306
295
 
296
+ /* Some global colors */
297
+
298
+ .orange { color: orange }
299
+ .gray { color: gray }
300
+ .dodgerblue { color: dodgerblue }
301
+ .lightblue { color: #5aa8f7 }
302
+
307
303
  svg.xs { width: var(--svg-size-xs); height: var(--svg-size-xs); }
308
304
  svg.sm { width: var(--svg-size-sm); height: var(--svg-size-sm); }
309
305
  svg.lg { width: var(--svg-size-lg); height: var(--svg-size-lg); }
@@ -330,7 +326,9 @@ svg.xxl { width: var(--svg-size-xxl); height: var(--svg-size-xxl); }
330
326
  top: 0;
331
327
  bottom: 0;
332
328
  width: 100%;
333
- height: 100%;
329
+ min-height: 100vh;
330
+ display: flex;
331
+ flex-direction: column;
334
332
  position: absolute;
335
333
  outline: none;
336
334
  }
@@ -347,8 +345,11 @@ svg.xxl { width: var(--svg-size-xxl); height: var(--svg-size-xxl); }
347
345
  max-width: 256px;
348
346
  }
349
347
 
350
- .lexicon {
348
+ .lock {
351
349
  margin-left: 4px;
350
+ }
351
+
352
+ .lexicon {
352
353
  cursor: pointer;
353
354
  line-height: inherit !important;
354
355
  color: var(--global-text-secondary);
@@ -367,7 +368,7 @@ svg.xxl { width: var(--svg-size-xxl); height: var(--svg-size-xxl); }
367
368
  }
368
369
 
369
370
  .lexicon.triggered {
370
- background-color: var(--global-button-color);
371
+ background-color: var(--global-color-secondary);
371
372
  }
372
373
 
373
374
  svg, svg path {
@@ -413,7 +414,7 @@ a svg, svg path {
413
414
  display: flex;
414
415
  flex-direction: row;
415
416
  position: relative;
416
- width: calc(100% - 1.6rem);
417
+ width: 100%;
417
418
  background-color: var(--global-intense-background);
418
419
  border: 1px solid var(--global-color-tertiary);
419
420
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
@@ -529,7 +530,7 @@ a svg, svg path {
529
530
 
530
531
  .commandbar .gs-header {
531
532
  width: 100%;
532
- height: 32px;
533
+ height: 44px;
533
534
  display: flex;
534
535
  padding: 6px;
535
536
  }
@@ -586,7 +587,7 @@ a svg, svg path {
586
587
  padding: 0px;
587
588
  margin-left: -28px;
588
589
  margin-top: 2px;
589
- color: var(--global-selected-light);
590
+ color: var(--global-color-accent-light);
590
591
  float: left;
591
592
  }
592
593
 
@@ -616,25 +617,20 @@ a svg, svg path {
616
617
  }
617
618
 
618
619
  .commandbar .searchitembox .searchitem.hovered {
619
- background-color: var(--global-selected);
620
+ background-color: var(--global-color-accent);
620
621
  color: #f5f5f5;
621
622
  }
622
623
 
623
624
  /* Footer */
624
625
 
625
626
  .lexfooter {
626
- min-height: 96px;
627
627
  background-color: var(--global-color-primary);
628
- padding: 15px;
628
+ padding: 0.5rem;
629
629
  width: 100%;
630
630
  font-size: var(--global-font-size);
631
631
  line-height: 1.25rem;
632
632
  }
633
633
 
634
- .lexfooter .wrapper {
635
- width: calc(100% - 30px);
636
- }
637
-
638
634
  .lexfooter .columns {
639
635
  display: grid;
640
636
  text-align: center;
@@ -650,11 +646,13 @@ a svg, svg path {
650
646
  .lexfooter h2 {
651
647
  margin-block-start: 0.83em;
652
648
  margin-block-end: 0.83em;
649
+ font-weight: 600;
653
650
  }
654
651
 
655
652
  .lexfooter ul li {
656
653
  margin-bottom: 8px;
657
- font-size: var(--global-font-size-lg);
654
+ font-size: var(--global-font-size);
655
+ color: var(--global-text-secondary);
658
656
  }
659
657
 
660
658
  .lexfooter a {
@@ -664,6 +662,7 @@ a svg, svg path {
664
662
  }
665
663
 
666
664
  .lexfooter .credits-and-socials {
665
+ color: var(--global-text-secondary);
667
666
  display: grid;
668
667
  align-items: center;
669
668
  grid-template-columns: 1fr 1fr;
@@ -711,12 +710,12 @@ a svg, svg path {
711
710
  }
712
711
 
713
712
  .lexfooter a:hover {
714
- color: var(--global-selected-light);
713
+ color: var(--global-color-accent-light);
715
714
  }
716
715
 
717
716
  .lexfooter svg:hover {
718
- fill: var(--global-selected-light);
719
- stroke: var(--global-selected-light);
717
+ fill: var(--global-color-accent-light);
718
+ stroke: var(--global-color-accent-light);
720
719
  }
721
720
 
722
721
  .lexfooter hr {
@@ -747,17 +746,17 @@ a svg, svg path {
747
746
  }
748
747
 
749
748
  .lexdialogtitle {
750
- outline: none;
749
+ width: 100%;
751
750
  font-family: var(--global-title-font);
752
751
  font-weight: 600;
753
752
  font-size: var(--global-font-size-xl);
754
753
  color: var(--global-text-secondary);
755
754
  text-shadow: 0px 1px 6px #22222283;
756
- width: calc(100% - 24px);
757
755
  padding: 12px;
758
756
  padding-left: 16px;
759
757
  border-top-left-radius: 8px;
760
758
  border-top-right-radius: 8px;
759
+ outline: none;
761
760
  display: flex;
762
761
  justify-content: space-between;
763
762
  -webkit-user-select: none;
@@ -768,6 +767,7 @@ a svg, svg path {
768
767
  }
769
768
 
770
769
  .lexdialogcontent {
770
+ width: 100%;
771
771
  padding: 15px;
772
772
  word-break: break-all;
773
773
  color: var(--global-text-primary);
@@ -814,7 +814,6 @@ a svg, svg path {
814
814
 
815
815
  .lexdialog.prompt textarea {
816
816
  color: var(--global-text-secondary);
817
- font-weight: normal;
818
817
  }
819
818
 
820
819
  /* Pocket Dialog */
@@ -828,7 +827,7 @@ a svg, svg path {
828
827
  }
829
828
 
830
829
  .lexdialog.pocket .lexdialogtitle {
831
- width: calc(100% - 28px);
830
+ width: 100%;
832
831
  font-size: var(--global-font-size-lg);
833
832
  background: var(--global-intense-background);
834
833
  }
@@ -901,13 +900,43 @@ a svg, svg path {
901
900
 
902
901
  /* Generic */
903
902
 
904
- .lexcontainer {
905
- display: flex;
906
- flex-direction: row;
903
+ .lexcontainer.wrapper {
904
+ margin-left: auto;
905
+ margin-right: auto;
906
+ max-width: 1400px;
907
+ border: 0px solid var(--global-color-tertiary);
907
908
  }
908
909
 
909
- .lexcontainer.col {
910
- flex-direction: column;
910
+ @media (min-width: 1400px) {
911
+ .lexcontainer.wrapper {
912
+ border-left-width: 1px;
913
+ border-right-width: 1px;
914
+ }
915
+ }
916
+
917
+ @media (min-width: 1800px) {
918
+ .lexcontainer.wrapper {
919
+ max-width: 1536px;
920
+ }
921
+ }
922
+
923
+ .lextooltip {
924
+ position: fixed;
925
+ background-color: var(--global-text-primary);
926
+ color: var(--global-color-primary);
927
+ font-size: var(--global-font-size-sm);
928
+ padding: 0.2rem;
929
+ padding-inline: 0.5rem;
930
+ border-radius: 0.4rem;
931
+ transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
932
+ animation-duration: 400ms;
933
+ animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
934
+ will-change: transform, opacity;
935
+ animation-name: slideUpAndFade;
936
+ }
937
+
938
+ .lextooltip[data-closed] {
939
+ opacity: 0;
911
940
  }
912
941
 
913
942
  /* Dropdown Menu */
@@ -966,6 +995,11 @@ a svg, svg path {
966
995
  transform: scale(0.99);
967
996
  }
968
997
 
998
+ .lexdropdownmenuitem .lexcheckbox {
999
+ width: 1.25em;
1000
+ height: 1.25em;
1001
+ }
1002
+
969
1003
  .lexdropdownmenuitem a {
970
1004
  margin-left: auto;
971
1005
  margin-right: 4px;
@@ -1067,7 +1101,6 @@ a svg, svg path {
1067
1101
 
1068
1102
  .lexsplitbar.vertical {
1069
1103
  cursor: ns-resize;
1070
- transform: translateY(-3px);
1071
1104
  left: calc(50% - 32px);
1072
1105
  }
1073
1106
 
@@ -1076,14 +1109,14 @@ a svg, svg path {
1076
1109
  }
1077
1110
 
1078
1111
  .lexsplitbar.dragging-split-area {
1079
- background-color: var(--global-button-color);
1112
+ background-color: red;
1080
1113
  }
1081
1114
 
1082
1115
  /* Branches */
1083
1116
 
1084
1117
  .lexpanel {
1085
1118
  margin: 0;
1086
- margin-left: 3px;
1119
+ padding: 4px;
1087
1120
  overflow: hidden;
1088
1121
  overflow-y: scroll;
1089
1122
  }
@@ -1093,7 +1126,11 @@ a svg, svg path {
1093
1126
  }
1094
1127
 
1095
1128
  .lexbranch {
1129
+ width: 100%;
1096
1130
  border-radius: 6px;
1131
+ }
1132
+
1133
+ .lexpanel .lexbranch:not(:last-of-type) {
1097
1134
  margin-bottom: 4px !important;
1098
1135
  }
1099
1136
 
@@ -1106,13 +1143,12 @@ a svg, svg path {
1106
1143
 
1107
1144
  .lexbranch.last .lexbranchcontent {
1108
1145
  overflow: hidden;
1109
- margin-bottom: 6px;
1110
1146
  }
1111
1147
 
1112
1148
  .lexbranchtitle {
1113
1149
  font-family: var(--global-title-font);
1114
- font-weight: 600;
1115
1150
  font-size: var(--global-font-size-lg);
1151
+ font-weight: 500;
1116
1152
  color: var(--global-text-primary);
1117
1153
  background-color: var(--global-color-secondary);
1118
1154
  text-shadow: 0px 1px 6px #42424260;
@@ -1164,7 +1200,7 @@ a svg, svg path {
1164
1200
  }
1165
1201
 
1166
1202
  .lexbranchtitle.wtabs span.selected {
1167
- border-top: 2px solid var(--global-selected-light);
1203
+ border-top: 2px solid var(--global-color-accent-light);
1168
1204
  background-color: var(--global-color-secondary);
1169
1205
  color: var(--global-text-primary);
1170
1206
  text-shadow: 0px 1px 2px #000;
@@ -1176,10 +1212,6 @@ a svg, svg path {
1176
1212
  align-content: center;
1177
1213
  }
1178
1214
 
1179
- .lexbranch.first .lexbranchtitle {
1180
- margin-top: 4px;
1181
- }
1182
-
1183
1215
  .lexbranch.last.closed .lexbranchtitle {
1184
1216
  margin-bottom: 6px;
1185
1217
  }
@@ -1223,11 +1255,6 @@ a svg, svg path {
1223
1255
  font-size: var(--global-font-size);
1224
1256
  }
1225
1257
 
1226
- .lexinlinewidgets .lexwidget {
1227
- padding-left: 10px;
1228
- padding-right: 10px;
1229
- }
1230
-
1231
1258
  .lexinlinewidgets .lexwidgetname.float-center {
1232
1259
  justify-content: center;
1233
1260
  }
@@ -1239,10 +1266,6 @@ a svg, svg path {
1239
1266
  transform: translateX(-1em);
1240
1267
  }
1241
1268
 
1242
- .lexwidget.nobranch {
1243
- width: calc(100% - 10px);
1244
- }
1245
-
1246
1269
  .lexwidget.auto {
1247
1270
  width: unset !important;
1248
1271
  }
@@ -1269,7 +1292,6 @@ a svg, svg path {
1269
1292
 
1270
1293
  .lexinlinewidgets {
1271
1294
  display: flex;
1272
- gap: 0.1rem;
1273
1295
  }
1274
1296
 
1275
1297
  .lexwidgetseparator div {
@@ -1304,23 +1326,76 @@ a svg, svg path {
1304
1326
  padding-inline: 0.4rem;
1305
1327
  }
1306
1328
 
1329
+ .lexwidget .inputicon {
1330
+ padding: 6px;
1331
+ font-size: var(--global-font-size-xs);
1332
+ align-self: center;
1333
+ text-align: center;
1334
+ margin-left: 4px;
1335
+ position: absolute;
1336
+ z-index: 1;
1337
+ }
1338
+
1339
+ .lexseparator {
1340
+ border-top: 1px solid var(--global-color-secondary);
1341
+ border-bottom: 1px solid var(--global-color-tertiary);
1342
+ margin: 5px 0 5px 0px;
1343
+ }
1344
+
1345
+ .lexbranch .lexseparator {
1346
+ border-top: 1px solid var(--global-color-primary);
1347
+ border-bottom: 1px solid var(--global-color-tertiary);
1348
+ width: -moz-calc(100% - 8px);
1349
+ width: -webkit-calc(100% - 8px);
1350
+ width: calc(100% - 8px);
1351
+ margin: 5px 0 5px 4px;
1352
+ }
1353
+
1354
+ :root[data-theme="light"] .lexbranch .lexseparator {
1355
+ border-top: 1px solid #e7e7e7;
1356
+ border-bottom: 1px solid #c1c1c1;
1357
+ }
1358
+
1307
1359
  .lexwidget input:not(.lexcheckbox, .lextoggle, .lexrangeslider) {
1308
1360
  font-family: var(--global-font);
1309
- background: none;
1310
- padding: 3px;
1361
+ padding: 4px;
1311
1362
  color: var(--global-text-primary);
1312
- font-weight: 500;
1363
+ background-color: var(--global-color-tertiary);
1313
1364
  outline: none;
1314
1365
  border-radius: 6px;
1315
- border: 2px solid var(--global-color-transparent);
1316
- transition: background-color 0.2s linear, border-color 0.15s linear;
1366
+ border: 1px solid var(--global-color-transparent);
1367
+ transition-property: color, background-color, border-color;
1368
+ transition-timing-function: ease-out;
1369
+ transition-duration: .15s;
1370
+ }
1371
+
1372
+ .lexwidget input:not(.lexcheckbox, .lextoggle, .lexrangeslider):hover {
1373
+ background-color: color-mix(in srgb, var(--global-color-tertiary), #000 7%);
1374
+ }
1375
+
1376
+ .lexwidget input.colorinput {
1377
+ border: none;
1378
+ margin-left: -4px;
1317
1379
  }
1318
1380
 
1319
- .lexwidget .lextext {
1381
+ .lexwidget input:disabled:not(.lextoggle) {
1382
+ outline: none;
1383
+ border: none;
1384
+ color: var(--global-text-tertiary);
1385
+ }
1386
+
1387
+ /* Text Widget */
1388
+
1389
+ .lexwidget input.lextext, .lexwidget div.lextext {
1320
1390
  border-radius: 6px;
1321
1391
  position: relative;
1322
- transition: border 0.2s linear;
1323
1392
  border: 1px solid transparent;
1393
+ padding: 6px 12px;
1394
+ }
1395
+
1396
+ .lexwidget .lextext:disabled {
1397
+ background-color: var(--global-color-tertiary);
1398
+ color: var(--global-text-tertiary);
1324
1399
  }
1325
1400
 
1326
1401
  .lexwidget .lextext.formlabel {
@@ -1328,48 +1403,36 @@ a svg, svg path {
1328
1403
  margin-bottom: -12px;
1329
1404
  }
1330
1405
 
1331
- .lexwidget .lextext:not(:has(div)) {
1332
- background-color: var(--global-button-color);
1333
- }
1334
-
1335
1406
  .lexwidget .lextext.outline {
1336
1407
  background: var(--global-color-primary);
1337
1408
  border: 1px solid #7a797c4f;
1338
1409
  }
1339
1410
 
1411
+ .lexwidget .lextext.nobg {
1412
+ background: none;
1413
+ border: 1px solid transparent;
1414
+ }
1415
+
1340
1416
  .lexwidget .lextext.dashed {
1341
1417
  background: var(--global-color-primary);
1342
1418
  border: 1px dashed #7a797c4f;
1343
1419
  }
1344
1420
 
1345
- .lexwidget input:not(.lexcheckbox, .lextoggle, .lexrangeslider):hover {
1346
- background-color: color-mix(in srgb, var(--global-button-color), #000 7%);
1347
- }
1348
-
1349
- .lexwidget .lextext.outline input:hover {
1421
+ .lexwidget .lextext.outline:hover, .lexwidget .lextext.nobg:hover {
1350
1422
  background: none;
1351
1423
  }
1352
1424
 
1353
- .lexwidget .lextext input {
1354
- padding: 5px;
1355
- }
1356
-
1357
- .lexwidget .lextext input:focus {
1358
- border: 2px solid var(--global-selected);
1359
- }
1360
-
1361
- .lexwidget .lextext input:invalid:focus {
1362
- border: 2px solid var(--global-color-error);
1425
+ .lexwidget .lextext:focus {
1426
+ border: 1px solid var(--global-text-quaternary);
1363
1427
  }
1364
1428
 
1365
- .lexwidget .lextext div {
1366
- color: var(--global-text-secondary);
1367
- padding-left: 6px;
1429
+ .lexwidget .lextext:invalid:focus {
1430
+ border: 1px solid var(--global-color-error);
1368
1431
  }
1369
1432
 
1370
1433
  .lexwidget .lextext.lexwarning div {
1371
1434
  color: var(--global-color-warning);
1372
- font-weight: 700;
1435
+ font-weight: 600;
1373
1436
  }
1374
1437
 
1375
1438
  .lexwidget .lextext.lexwarning i {
@@ -1377,12 +1440,7 @@ a svg, svg path {
1377
1440
  margin-right: 16px;
1378
1441
  }
1379
1442
 
1380
- .lexwidget .inputicon {
1381
- padding: 6px;
1382
- font-size: var(--global-font-size-sm);
1383
- align-self: center;
1384
- text-align: center;
1385
- }
1443
+ /* TextArea Widget */
1386
1444
 
1387
1445
  .lexwidget textarea {
1388
1446
  word-break: break-word;
@@ -1390,54 +1448,40 @@ a svg, svg path {
1390
1448
  background: none;
1391
1449
  padding: 5px;
1392
1450
  color: var(--global-text-primary);
1393
- font-weight: 600;
1394
1451
  outline: none;
1395
1452
  border-radius: 6px;
1396
- border: 2px solid var(--global-color-transparent);
1453
+ border: 1px solid var(--global-color-transparent);
1397
1454
  transition: 0.1s linear;
1398
1455
  }
1399
1456
 
1400
- .lexwidget textarea:disabled {
1401
- resize: none;
1402
- }
1403
-
1404
- .lexwidget textarea:focus {
1405
- border: 2px solid var(--global-selected);
1457
+ .lexwidget textarea.outline {
1458
+ background: var(--global-color-primary);
1459
+ border: 1px solid #7a797c4f;
1406
1460
  }
1407
1461
 
1408
- .lexwidget input.colorinput {
1409
- border: none;
1410
- margin-left: -4px;
1462
+ .lexwidget textarea.nobg {
1463
+ background: none;
1464
+ border: 1px solid transparent;
1411
1465
  }
1412
1466
 
1413
- .lexwidget input:disabled:not(.lextoggle) {
1414
- outline: none;
1415
- border: none;
1416
- color: var(--global-text-tertiary);
1467
+ .lexwidget textarea.dashed {
1468
+ background: var(--global-color-primary);
1469
+ border: 1px dashed #7a797c4f;
1417
1470
  }
1418
1471
 
1419
- .lexseparator {
1420
- border-bottom: 1px solid var(--global-button-color);
1421
- margin: 5px 0 5px 10px;
1472
+ .lexwidget textarea.outline:hover, .lexwidget .lextext.nobg:hover {
1473
+ background: none;
1422
1474
  }
1423
1475
 
1424
- .lexbranch .lexseparator {
1425
- border-top: 1px solid #252525;
1426
- border-bottom: 1px solid rgb(87, 86, 86);
1427
- width: -moz-calc(100% - 8px);
1428
- width: -webkit-calc(100% - 8px);
1429
- width: calc(100% - 8px);
1430
- margin: 5px 0 5px 4px;
1476
+ .lexwidget textarea:disabled {
1477
+ resize: none;
1431
1478
  }
1432
1479
 
1433
- :root[data-theme="light"] .lexwidget .lextext {
1434
- border: 1px solid var(--global-color-tertiary);
1480
+ .lexwidget textarea:focus {
1481
+ border: 1px solid var(--global-text-quaternary);
1435
1482
  }
1436
1483
 
1437
- :root[data-theme="light"] .lexbranch .lexseparator {
1438
- border-top: 1px solid #e7e7e7;
1439
- border-bottom: 1px solid #c1c1c1;
1440
- }
1484
+ /* Title Widget */
1441
1485
 
1442
1486
  .lextitle {
1443
1487
  width: fit-content;
@@ -1453,7 +1497,7 @@ a svg, svg path {
1453
1497
  display: grid;
1454
1498
  align-content: center;
1455
1499
  border-radius: 12px;
1456
- background-color: var(--global-button-color);
1500
+ background-color: var(--global-color-tertiary);
1457
1501
  display: flex;
1458
1502
  -webkit-user-select: none;
1459
1503
  -moz-user-select: none;
@@ -1463,14 +1507,14 @@ a svg, svg path {
1463
1507
 
1464
1508
  .lexinlinewidgets .lextitle {
1465
1509
  margin: 8px;
1466
- height: 20px;
1510
+ height: 24px;
1467
1511
  flex: none;
1468
1512
  }
1469
1513
 
1470
1514
  .lextitle a {
1471
1515
  margin-top: 0.3em;
1472
1516
  margin-right: 0.7em;
1473
- color: var(--global-selected-light);
1517
+ color: var(--global-color-accent-light);
1474
1518
  font-size: var(--global-font-size-sm);
1475
1519
  }
1476
1520
 
@@ -1481,7 +1525,7 @@ a svg, svg path {
1481
1525
  }
1482
1526
 
1483
1527
  .lextitle.link:hover {
1484
- color: #049EF4;
1528
+ color: var(--global-color-accent-light);
1485
1529
  transform: scale(1.02);
1486
1530
  }
1487
1531
 
@@ -1489,123 +1533,96 @@ a svg, svg path {
1489
1533
  /* Buttons */
1490
1534
 
1491
1535
  .lexbutton {
1492
- display: grid;
1493
- align-content: center;
1494
- --button-color: var(--global-button-color);
1536
+ --button-color: var(--global-color-tertiary);
1537
+ --border-color: var(--global-color-quinary);
1495
1538
  background-color: var(--button-color);
1496
- border-radius: 6px;
1497
1539
  border: 1px solid transparent;
1540
+ border-radius: 6px;
1498
1541
  min-height: 22px !important;
1542
+ align-content: center;
1499
1543
  color: var(--global-text-primary);
1500
- font-weight: 500;
1501
1544
  outline: none;
1502
1545
  white-space: nowrap;
1503
1546
  overflow: hidden;
1504
1547
  cursor: pointer;
1505
1548
  font-family: var(--global-font);
1549
+ font-weight: 500;
1550
+ display: grid;
1506
1551
  transition: 0.1s linear;
1507
1552
  padding: 0.35rem;
1508
1553
  }
1509
1554
 
1510
- :root[data-theme="light"] .lexbutton {
1511
- --button-color: var(--global-button-color);
1512
- border: 1px solid var(--global-color-tertiary);
1513
- }
1514
-
1515
- :root[data-theme="light"] .lexbutton.selected {
1516
- background: #3c4145;
1517
- color: #DDD;
1518
- }
1519
-
1520
1555
  /* Colors */
1521
- .lexbutton.primary { --button-color: var(--global-selected) !important; color: #f9f9f9 !important; }
1522
- .lexbutton.secondary { --button-color: var(--global-selected-light) !important; color: #f9f9f9 !important; }
1523
- .lexbutton.accent { --button-color: var(--global-color-accent) !important; color: #f9f9f9 !important; }
1524
- .lexbutton.contrast { --button-color: var(--global-text-primary) !important; color: var(--global-color-primary) !important; }
1525
- .lexbutton.warning { --button-color: var(--global-color-warning) !important; color: #793205 !important; }
1526
- .lexbutton.error { --button-color: var(--global-color-error) !important; color: #52020d !important; }
1556
+ .lexbutton.primary { --button-color: var(--global-color-primary); --border-color: var(--global-color-quaternary); color: var(--global-text-primary); }
1557
+ .lexbutton.secondary { --button-color: var(--global-color-secondary); --border-color: var(--global-color-quaternary); color: var(--global-text-primary); }
1558
+ .lexbutton.accent { --button-color: var(--global-color-accent); --border-color: var(--global-color-quaternary); color: #fefefe; }
1559
+ .lexbutton.contrast { --button-color: var(--global-text-primary); --border-color: var(--global-color-quaternary); color: var(--global-color-primary); }
1560
+ .lexbutton.warning { --button-color: var(--global-color-warning); --border-color: #793205; color: var(--border-color); }
1561
+ .lexbutton.error { --button-color: var(--global-color-error); --border-color: #52020d; color: var(--border-color); }
1562
+
1527
1563
  /* Few Sizes */
1528
- .lexbutton.xs { width: 25% !important; margin: 0 auto; }
1529
- .lexbutton.sm { width: 45% !important; margin: 0 auto; }
1530
- /* Styles */
1531
- .lexbutton.outline { box-shadow: none; color: var(--global-text-primary) !important; background-color: var(--global-color-primary) !important; border: 1px solid var(--button-color) !important; }
1532
- .lexbutton.dashed { box-shadow: none; color: var(--global-text-primary) !important; background-color: var(--global-color-primary) !important; border: 1px dashed var(--button-color) !important; }
1564
+ .lexbutton.xs { width: 35%; margin: 0 auto; }
1565
+ .lexbutton.sm { width: 65%; margin: 0 auto; }
1533
1566
 
1534
- .lexbutton.left {
1535
- text-align: left;
1536
- padding-inline: 12px;
1567
+ /* Styles */
1568
+ .lexbutton.outline {
1569
+ border-color: var(--border-color);
1537
1570
  }
1538
-
1539
- .lexbutton span {
1540
- align-items: center;
1541
- display: flex;
1542
- flex-wrap: wrap;
1543
- place-content: center;
1544
- pointer-events: none;
1545
- gap: 0.4rem;
1571
+ .lexbutton.dashed {
1572
+ border-style: dashed;
1573
+ border-color: var(--border-color);
1546
1574
  }
1547
1575
 
1548
- .lexbutton span:has(.lexbadge) {
1549
- display: inline-flex;
1550
- flex-wrap: nowrap;
1551
- justify-content: center;
1552
- gap: 0.4rem;
1576
+ .lexbutton:hover {
1577
+ background-color: color-mix(in srgb, var(--button-color), #000 9%) !important;
1553
1578
  }
1554
-
1555
- .lexbutton.foldback {
1556
- padding: 11px 10px;
1557
- padding-bottom: 14px;
1558
- float: right;
1559
- align-items: center;
1560
- margin-right: 4px;
1561
- margin-top: 2px;
1579
+ :root[data-theme="light"] .lexbutton:hover {
1580
+ background-color: color-mix(in srgb, var(--button-color), #fff 18%) !important;
1562
1581
  }
1563
1582
 
1564
- .lexbutton a {
1565
- margin-left: 0px;
1566
- font-size: var(--global-font-size-sm);
1567
- pointer-events: none;
1583
+ .lexbutton:active:not(.lexbutton.combo) {
1584
+ background-color: color-mix(in srgb, var(--button-color), #fff 4%) !important;
1568
1585
  }
1569
-
1570
- .lexbutton svg {
1571
- pointer-events: none;
1586
+ :root[data-theme="light"] .lexbutton:active:not(.lexbutton.combo) {
1587
+ background-color: color-mix(in srgb, var(--button-color), #000 4%) !important;
1572
1588
  }
1573
1589
 
1574
- .lexbutton.array span {
1575
- display: inline-flex;
1590
+ .lexbutton:disabled {
1591
+ color: var(--global-text-tertiary);
1576
1592
  }
1577
1593
 
1578
- .lexbutton.array a {
1579
- margin-top: 2px;
1580
- margin-right: 3px;
1581
- margin-left: auto;
1594
+ .lexbutton.selected {
1595
+ --button-color: var(--global-color-accent);
1596
+ --border-color: var(--global-color-quaternary);
1597
+ color: #fefefe;
1582
1598
  }
1583
1599
 
1584
- .lexbutton:hover {
1585
- background-color: color-mix(in srgb, var(--button-color), #000 7%);
1586
- color: var(--global-text-primary);
1600
+ .lexbutton * {
1601
+ pointer-events: none;
1587
1602
  }
1588
1603
 
1589
- .lexbutton:active:not(.lexbutton.combo) {
1590
- background-color: color-mix(in srgb, var(--button-color), #ffffff 4%);
1591
- color: var(--global-text-secondary);
1592
- transform: scale(0.99);
1604
+ .lexbutton span {
1605
+ align-items: center;
1606
+ display: flex;
1607
+ place-content: center;
1608
+ pointer-events: none;
1609
+ gap: 0.4rem;
1593
1610
  }
1594
1611
 
1595
- .lexbutton:disabled {
1596
- color: var(--global-text-tertiary);
1612
+ .lexbutton.left span {
1613
+ place-content: start;
1597
1614
  }
1598
1615
 
1599
- .lexbutton.selected {
1600
- background: #3c4145;
1601
- color: #DDD;
1616
+ .lexbutton.array a {
1617
+ margin-right: 4px;
1618
+ margin-left: auto;
1602
1619
  }
1603
1620
 
1604
1621
  /* Combo Buttons */
1605
1622
 
1606
1623
  .lexcombobuttons .lexcombobuttonsbox {
1607
1624
  display: flex;
1608
- background-color: light-dark(var(--global-color-tertiary), var(--global-button-color));
1625
+ background-color: var(--global-color-tertiary);
1609
1626
  width: max-content;
1610
1627
  justify-self: center;
1611
1628
  padding: 3px;
@@ -1623,9 +1640,9 @@ a svg, svg path {
1623
1640
 
1624
1641
  .lexcombobuttons .lexbutton.combo {
1625
1642
  display: flex;
1626
- padding: 0.7em 1.6em;
1643
+ padding: 0.45em 1.25em;
1627
1644
  transition: 0.2s;
1628
- background: none;
1645
+ --button-color: var(--global-color-tertiary);
1629
1646
  }
1630
1647
 
1631
1648
  .lexcombobuttons .lexbutton.combo:hover {
@@ -1633,24 +1650,15 @@ a svg, svg path {
1633
1650
  }
1634
1651
 
1635
1652
  .lexcombobuttons .lexbutton.combo.selected {
1636
- background-color: var(--global-color-primary);
1637
- outline: none;
1653
+ --button-color: var(--global-color-primary);
1638
1654
  color: var(--global-text-primary);
1639
- }
1640
-
1641
- .lexcombobuttons .lexbutton.combo:active {
1642
1655
  outline: none;
1643
- color: #ccc;
1644
1656
  }
1645
1657
 
1646
1658
  .lexcombobuttons .lexbutton.combo span {
1647
1659
  line-height: 18px;
1648
1660
  }
1649
1661
 
1650
- .lexcombobuttons .lexbutton.combo a {
1651
- font-size: var(--global-font-size-sm);
1652
- }
1653
-
1654
1662
  /* Select (Combobox) */
1655
1663
 
1656
1664
  .lexselect {
@@ -1664,7 +1672,7 @@ a svg, svg path {
1664
1672
  }
1665
1673
 
1666
1674
  .lexselect .lexfilter {
1667
- width: calc(100% - 6px) !important;
1675
+ width: 100%;
1668
1676
  padding: 2px 3px;
1669
1677
  background-color: var(--global-color-primary);
1670
1678
  border-bottom: 1px solid;
@@ -1701,16 +1709,14 @@ a svg, svg path {
1701
1709
 
1702
1710
  .lexselect .lexselectoptions {
1703
1711
  background-color: var(--global-color-primary);
1704
- -webkit-backdrop-filter: blur(10px);
1705
- backdrop-filter: blur(10px);
1706
1712
  margin: 0;
1707
1713
  padding: 0;
1708
1714
  outline: none;
1709
1715
  width: fit-content;
1710
- max-height: -webkit-fill-available;
1716
+ /* max-height: -webkit-fill-available; */
1711
1717
  position: fixed;
1712
1718
  z-index: 10000;
1713
- box-shadow: 0 0px 6px rgba(0, 0, 0, 0.603);
1719
+ box-shadow: 0 0px 4px rgba(0, 0, 0, 0.203);
1714
1720
  border-radius: 6px;
1715
1721
  border: 1px solid #7a797c4f;
1716
1722
  overflow-y: auto;
@@ -1731,14 +1737,14 @@ dialog .lexselect .lexselectoptions {
1731
1737
  }
1732
1738
 
1733
1739
  .lexselect ul .lexselectinnerlist {
1734
- width: calc(100% - 0.6rem);
1740
+ width: 100%;
1735
1741
  height: calc(100% - 25px);
1736
1742
  padding: 0.3rem;
1737
1743
  display: grid;
1738
1744
  }
1739
1745
 
1740
1746
  .lexselect .lexselectitem {
1741
- width: calc(100% - 0.7rem);
1747
+ width: 100%;
1742
1748
  cursor: pointer;
1743
1749
  color: var(--global-text-primary);
1744
1750
  min-height: 20px;
@@ -1755,15 +1761,15 @@ dialog .lexselect .lexselectoptions {
1755
1761
  }
1756
1762
 
1757
1763
  .lexselect .lexselectlabel {
1758
- width: calc(100% - 1.6rem);
1759
- color: var(--global-text-primary);
1760
- padding-inline: 0.8rem;
1764
+ width: 100%;
1765
+ color: var(--global-text-secondary);
1766
+ padding-inline: 0.6rem;
1761
1767
  padding-block: 0.2rem;
1762
1768
  min-height: 20px;
1763
1769
  line-height: 22px;
1764
1770
  align-content: center;
1765
1771
  display: flow-root;
1766
- font-weight: 600;
1772
+ font-weight: 500;
1767
1773
  }
1768
1774
 
1769
1775
  .lexselect .lexselectitem.empty {
@@ -1785,11 +1791,12 @@ dialog .lexselect .lexselectoptions {
1785
1791
  .lexselect .lexselectitem a {
1786
1792
  display: none;
1787
1793
  margin-left: auto;
1788
- margin-right: 8px;
1794
+ margin-right: 0.25rem;
1795
+ padding-left: 1rem;
1789
1796
  }
1790
1797
 
1791
1798
  .lexselect .lexselectitem.selected {
1792
- font-weight: 700;
1799
+ font-weight: 600;
1793
1800
  }
1794
1801
 
1795
1802
  .lexselect .lexselectitem.selected a {
@@ -1797,8 +1804,8 @@ dialog .lexselect .lexselectoptions {
1797
1804
  }
1798
1805
 
1799
1806
  .lexselect img {
1800
- max-height: 64px;
1801
- margin-top: 8px;
1807
+ max-height: 4rem;
1808
+ margin-top: 0.5rem;
1802
1809
  }
1803
1810
 
1804
1811
  :root[data-theme="light"] .lexselect .lexfilter {
@@ -1810,15 +1817,10 @@ dialog .lexselect .lexselectoptions {
1810
1817
  box-shadow: 0 0px 6px rgba(175, 175, 175, 0.788);
1811
1818
  }
1812
1819
 
1813
- :root[data-theme="light"] .lexselect .lexselectitem:hover {
1814
- background-color: var(--global-selected-light);
1815
- color: #fff;
1816
- }
1817
-
1818
1820
  /* Check box */
1819
1821
 
1820
1822
  .lexcheckbox {
1821
- --checkbox-bg-color: var(--global-selected);
1823
+ --checkbox-bg-color: light-dark(var(--global-text-tertiary), var(--global-color-tertiary));
1822
1824
  --checkbox-fg-color: #fff;
1823
1825
  vertical-align: middle;
1824
1826
  flex-shrink: 0;
@@ -1844,13 +1846,16 @@ dialog .lexselect .lexselectoptions {
1844
1846
  }
1845
1847
 
1846
1848
  /* Colors */
1847
- .lexcheckbox.primary { --checkbox-bg-color: var(--global-selected); }
1848
- .lexcheckbox.secondary { --checkbox-bg-color: var(--global-selected-light); }
1849
+ .lexcheckbox.primary { --checkbox-bg-color: var(--global-color-primary); }
1850
+ :root[data-theme="light"] .lexcheckbox.primary { --checkbox-fg-color: var(--global-text-primary); }
1851
+ .lexcheckbox.secondary { --checkbox-bg-color: var(--global-color-secondary); }
1852
+ :root[data-theme="light"] .lexcheckbox.secondary { --checkbox-fg-color: var(--global-text-tertiary); }
1849
1853
  .lexcheckbox.accent { --checkbox-bg-color: var(--global-color-accent); }
1850
1854
  .lexcheckbox.contrast { --checkbox-bg-color: var(--global-text-primary); --checkbox-fg-color: var(--global-color-primary); }
1851
1855
  .lexcheckbox.warning { --checkbox-bg-color: var(--global-color-warning); }
1852
1856
  .lexcheckbox.error { --checkbox-bg-color: var(--global-color-error); }
1853
1857
 
1858
+
1854
1859
  .lexcheckbox:before {
1855
1860
  content: "";
1856
1861
  opacity: 0;
@@ -1869,7 +1874,7 @@ dialog .lexselect .lexselectoptions {
1869
1874
  }
1870
1875
 
1871
1876
  .lexcheckbox:checked:before, .lexcheckbox[aria-checked=true]:before {
1872
- clip-path:polygon(20% 100%,20% 80%,50% 80%,50% 0%,70% 0%,70% 100%);
1877
+ clip-path: polygon(20% 100%,20% 80%,50% 80%,50% 0%,70% 0%,70% 100%);
1873
1878
  opacity: 1;
1874
1879
  }
1875
1880
 
@@ -1887,7 +1892,7 @@ dialog .lexselect .lexselectoptions {
1887
1892
  }
1888
1893
 
1889
1894
  .lexcheckboxsubmenu {
1890
- width: calc(100% - 16px);
1895
+ width: 100%;
1891
1896
  padding: 4px;
1892
1897
  padding-inline: 8px;
1893
1898
  color: var(--global-text-secondary);
@@ -1901,11 +1906,11 @@ dialog .lexselect .lexselectoptions {
1901
1906
  /* Toggle Widget */
1902
1907
 
1903
1908
  .lextoggle {
1904
- --toggle-bg-color: #1a1a1a;
1905
- --toggle-fg-color: #f9f9f9;
1909
+ --toggle-bg-color: var(--global-text-tertiary); /* Color of background CHECKED */
1910
+ --toggle-fg-color: #f4f4f6; /* Color of the thumb */
1906
1911
  border: 1px solid transparent;
1907
1912
  color: var(--toggle-fg-color);
1908
- background-color: var(--global-color-quaternary);
1913
+ background-color: var(--global-color-quaternary); /* Color of background NO check */
1909
1914
  cursor: pointer;
1910
1915
  -webkit-appearance: none;
1911
1916
  -moz-appearance: none;
@@ -1916,9 +1921,8 @@ dialog .lexselect .lexselectoptions {
1916
1921
  -ms-user-select: none;
1917
1922
  user-select: none;
1918
1923
  border-radius: 12px;
1919
- padding: 3px;
1920
- width: 36px;
1921
- height: 22px;
1924
+ width: 40px;
1925
+ height: 21px;
1922
1926
  flex-shrink: 0;
1923
1927
  grid-template-columns: 0fr 1fr 1fr;
1924
1928
  place-content: center;
@@ -1932,11 +1936,11 @@ dialog .lexselect .lexselectoptions {
1932
1936
  }
1933
1937
 
1934
1938
  /* Colors */
1935
- .lextoggle.primary { --toggle-bg-color: var(--global-selected); }
1936
- .lextoggle.secondary { --toggle-bg-color: var(--global-selected-light); }
1937
- .lextoggle.accent { --toggle-bg-color: var(--global-color-accent); }
1938
- .lextoggle.contrast { --toggle-bg-color: var(--global-text-primary); --toggle-fg-color: var(--global-color-primary); }
1939
- .lextoggle.warning { --toggle-bg-color: var(--global-color-warning); }
1939
+ .lextoggle.primary { --toggle-bg-color: var(--global-color-primary);}
1940
+ .lextoggle.secondary { --toggle-bg-color: var(--global-color-tertiary); }
1941
+ .lextoggle.accent { --toggle-bg-color: var(--global-color-accent); }
1942
+ .lextoggle.contrast { --toggle-bg-color: var(--global-text-primary); }
1943
+ .lextoggle.warning { --toggle-bg-color: var(--global-color-warning); }
1940
1944
  .lextoggle.error { --toggle-bg-color: var(--global-color-error); }
1941
1945
 
1942
1946
  .lextoggle > * {
@@ -1950,7 +1954,7 @@ dialog .lexselect .lexselectoptions {
1950
1954
  grid-column: 2/span 1;
1951
1955
  grid-row-start: 1;
1952
1956
  height: 100%;
1953
- padding: .125rem;
1957
+ padding: 0.125rem;
1954
1958
  transition: opacity .2s,rotate .4s
1955
1959
  }
1956
1960
 
@@ -1999,15 +2003,28 @@ dialog .lexselect .lexselectoptions {
1999
2003
  }
2000
2004
 
2001
2005
  .lextoggle:checked, .lextoggle[aria-checked=true], .lextoggle:has(>input:checked) {
2002
- border: 1px solid var(--global-color-secondary);
2003
2006
  background-color: var(--toggle-bg-color);
2004
2007
  grid-template-columns: 1fr 1fr 0fr;
2005
2008
  }
2006
2009
 
2010
+ .lextoggle.contrast:checked, .lextoggle.contrast[aria-checked=true], .lextoggle.contrast:has(>input:checked) {
2011
+ --toggle-fg-color: var(--global-color-primary);
2012
+ }
2013
+
2014
+ .lextoggle.outline.primary, .lextoggle.outline.secondary {
2015
+ /* border: 1px solid var(--global-text-tertiary); */
2016
+ }
2017
+
2007
2018
  .lextoggle.outline:checked, .lextoggle.outline[aria-checked=true], .lextoggle.outline:has(>input:checked) {
2008
- color: var(--toggle-bg-color);
2009
2019
  border: 1px solid currentColor;
2010
- background-color: var(--global-color-primary);
2020
+ color: var(--toggle-bg-color);
2021
+ background-color: var(--global-color-secondary);
2022
+ }
2023
+
2024
+ .lextoggle.outline.primary:checked, .lextoggle.outline.primary[aria-checked=true], .lextoggle.outline.primary:has(>input:checked),
2025
+ .lextoggle.outline.secondary:checked, .lextoggle.outline.secondary[aria-checked=true], .lextoggle.outline.secondary:has(>input:checked) {
2026
+ background-color: var(--global-color-quaternary);
2027
+ border: 1px solid var(--global-text-tertiary);
2011
2028
  }
2012
2029
 
2013
2030
  :is(.lextoggle:checked, .lextoggle[aria-checked=true], .lextoggle:has(>input:checked)):before {
@@ -2028,14 +2045,13 @@ dialog .lexselect .lexselectoptions {
2028
2045
  }
2029
2046
 
2030
2047
  .lextogglecont {
2031
- font-weight: bold;
2032
2048
  display: flex;
2033
2049
  gap: 0.4rem;
2034
2050
  margin: 0 auto;
2035
2051
  }
2036
2052
 
2037
2053
  .lextogglecont .toggletext {
2038
- font-weight: bold;
2054
+ font-weight: 500;
2039
2055
  width: 95%;
2040
2056
  overflow: hidden;
2041
2057
  text-overflow: ellipsis;
@@ -2043,7 +2059,7 @@ dialog .lexselect .lexselectoptions {
2043
2059
  }
2044
2060
 
2045
2061
  .lextogglesubmenu {
2046
- width: calc(100% - 16px);
2062
+ width: 100%;
2047
2063
  padding: 6px;
2048
2064
  padding-inline: 8px;
2049
2065
  color: var(--global-text-secondary);
@@ -2061,7 +2077,7 @@ dialog .lexselect .lexselectoptions {
2061
2077
  }
2062
2078
 
2063
2079
  .lexradiogroup span {
2064
- font-weight: 600;
2080
+ font-weight: 500;
2065
2081
  }
2066
2082
 
2067
2083
  .lexradiogroup .lexradiogroupitem {
@@ -2105,9 +2121,13 @@ dialog .lexselect .lexselectoptions {
2105
2121
  background-color: var(--global-text-primary);
2106
2122
  }
2107
2123
 
2124
+ .lexradiogroup .lexradiogroupitem button.checked:disabled span {
2125
+ background-color: var(--global-color-tertiary) !important;
2126
+ }
2127
+
2108
2128
  /* Colors */
2109
- .lexradiogroup.primary .lexradiogroupitem button.checked span { background-color: var(--global-selected); }
2110
- .lexradiogroup.secondary .lexradiogroupitem button.checked span { background-color: var(--global-selected-light); }
2129
+ .lexradiogroup.primary .lexradiogroupitem button.checked span { background-color: var(--global-color-accent); }
2130
+ .lexradiogroup.secondary .lexradiogroupitem button.checked span { background-color: var(--global-color-accent-light); }
2111
2131
  .lexradiogroup.accent .lexradiogroupitem button.checked span { background-color: var(--global-color-accent); }
2112
2132
  .lexradiogroup.contrast .lexradiogroupitem button.checked span { background-color: var(--global-text-primary); }
2113
2133
  .lexradiogroup.warning .lexradiogroupitem button.checked span { background-color: var(--global-color-warning); }
@@ -2136,7 +2156,7 @@ dialog .lexselect .lexselectoptions {
2136
2156
  }
2137
2157
 
2138
2158
  .lexcolor:has(input:focus) input[type="color"] {
2139
- outline: 2px solid var(--global-selected);
2159
+ outline: 2px solid var(--global-color-accent);
2140
2160
  border-radius: 4px;
2141
2161
  }
2142
2162
 
@@ -2149,6 +2169,7 @@ dialog .lexselect .lexselectoptions {
2149
2169
 
2150
2170
  .lexcolor input[type="color"] {
2151
2171
  cursor: pointer;
2172
+ background: none;
2152
2173
  }
2153
2174
 
2154
2175
  .lexcolor .lexwidget {
@@ -2162,10 +2183,7 @@ dialog .lexselect .lexselectoptions {
2162
2183
  }
2163
2184
 
2164
2185
  .lexvector a {
2165
- width: 48px;
2166
2186
  font-size: var(--global-font-size-sm);
2167
- margin-left: 6px;
2168
- margin-right: 6px;
2169
2187
  }
2170
2188
 
2171
2189
  .lexvector .vecbox {
@@ -2175,7 +2193,7 @@ dialog .lexselect .lexselectoptions {
2175
2193
  border-radius: 4px;
2176
2194
  border: 2px solid var(--global-color-transparent);
2177
2195
  margin-right: 2px;
2178
- background: var(--global-button-color);
2196
+ background-color: var(--global-color-tertiary);
2179
2197
  transition: 0.1s linear;
2180
2198
  }
2181
2199
 
@@ -2184,11 +2202,7 @@ dialog .lexselect .lexselectoptions {
2184
2202
  }
2185
2203
 
2186
2204
  .lexvector .vecbox:hover {
2187
- background-color: color-mix(in srgb, var(--global-button-color), #000 7%);
2188
- }
2189
-
2190
- .lexwidget.nobranch .lexvector .vecbox:hover {
2191
- background: var(--global-button-color);
2205
+ background-color: color-mix(in srgb, var(--global-color-tertiary), #000 7%);
2192
2206
  }
2193
2207
 
2194
2208
  .lexwidget .numberbox .drag-icon,
@@ -2203,7 +2217,7 @@ dialog .lexselect .lexselectoptions {
2203
2217
  }
2204
2218
 
2205
2219
  .lexvector .vecbox:has(input:focus) {
2206
- border: 2px solid var(--global-selected);
2220
+ border: 2px solid var(--global-color-accent);
2207
2221
  }
2208
2222
 
2209
2223
  .lexvector .vecbox span {
@@ -2229,11 +2243,11 @@ dialog .lexselect .lexselectoptions {
2229
2243
  }
2230
2244
 
2231
2245
  .lexvector .vecbox span.z {
2232
- background-color: #7490eb;
2246
+ background-color: #6081db;
2233
2247
  }
2234
2248
 
2235
2249
  .lexvector .vecbox span.w {
2236
- background-color: #ffffff;
2250
+ background-color: var(--global-text-primary);
2237
2251
  }
2238
2252
 
2239
2253
  /* Chrome, Safari, Edge, Opera */
@@ -2266,10 +2280,10 @@ input[type=number] {
2266
2280
  /* Number Widget */
2267
2281
 
2268
2282
  .lexwidget .numberbox {
2283
+ width: 100%;
2269
2284
  display: grid;
2270
- width: calc(100% - 4px);
2271
- background-color: var(--global-button-color);
2272
- border: 2px solid var(--global-color-transparent);
2285
+ background-color: var(--global-color-tertiary);
2286
+ border: 1px solid var(--global-color-transparent);
2273
2287
  border-radius: 6px;
2274
2288
  margin-right: 2px;
2275
2289
  position: relative;
@@ -2278,20 +2292,21 @@ input[type=number] {
2278
2292
  }
2279
2293
 
2280
2294
  .lexwidget .numberbox:hover {
2281
- background-color: color-mix(in srgb, var(--global-button-color), #000 7%);
2295
+ background-color: color-mix(in srgb, var(--global-color-tertiary), #000 7%);
2282
2296
  }
2283
2297
 
2284
2298
  .lexwidget .numberbox:has(input:focus) {
2285
- border: 2px solid var(--global-selected);
2299
+ border: 1px solid var(--global-text-quaternary);
2286
2300
  }
2287
2301
 
2288
2302
  .lexwidget .numberbox span {
2289
2303
  position: absolute;
2290
2304
  pointer-events: none;
2305
+ align-self: center;
2291
2306
  }
2292
2307
 
2293
- .lexnumber .vecinput {
2294
- width: calc(100% - 12px); /* remove padding, margin, and border */
2308
+ .lexwidget .numberbox:has(input[type=range]) span {
2309
+ margin-top: -12px;
2295
2310
  }
2296
2311
 
2297
2312
  .lexinputmeasure {
@@ -2304,7 +2319,7 @@ input[type=number] {
2304
2319
  -moz-appearance: none;
2305
2320
  -webkit-appearance: none;
2306
2321
  border: none !important;
2307
- width: calc(100% - 12px);
2322
+ width: 100%;
2308
2323
  height: 1px;
2309
2324
  outline: none;
2310
2325
  opacity: 0.7;
@@ -2335,7 +2350,7 @@ input[type=number] {
2335
2350
  height: 12px;
2336
2351
  border: 1px solid #c9c7de;
2337
2352
  border-radius: 6px;
2338
- background: light-dark(var(--global-selected-light), var(--global-selected));
2353
+ background: light-dark(var(--global-color-accent-light), var(--global-color-accent));
2339
2354
  box-shadow: 0px 0px 6px #505050;
2340
2355
  cursor: pointer;
2341
2356
  }
@@ -2370,7 +2385,7 @@ input[type=number] {
2370
2385
  webkit-appearance: none;
2371
2386
  --radius-selector-max: calc(var(--radius-selector) + var(--radius-selector) + var(--radius-selector));
2372
2387
  border-radius: calc(var(--radius-selector) + min(var(--range-thumb-padding),var(--radius-selector-max)));
2373
- width: calc(100% - 4px);
2388
+ width: 100%;
2374
2389
  height: var(--range-thumb-size);
2375
2390
  border: none;
2376
2391
  outline: none;
@@ -2390,8 +2405,8 @@ input[type=number] {
2390
2405
  }
2391
2406
 
2392
2407
  /* Colors */
2393
- .lexrangeslider.primary { color: var(--global-selected); }
2394
- .lexrangeslider.secondary { color: var(--global-selected-light); }
2408
+ .lexrangeslider.primary { color: var(--global-color-primary); --range-thumb-color: var(--global-text-secondary); }
2409
+ .lexrangeslider.secondary { color: var(--global-color-secondary); --range-thumb-color: var(--global-text-secondary); }
2395
2410
  .lexrangeslider.accent { color: var(--global-color-accent); }
2396
2411
  .lexrangeslider.contrast { color: var(--global-text-primary); }
2397
2412
  .lexrangeslider.warning { color: var(--global-color-warning); }
@@ -2462,7 +2477,7 @@ input[type=number] {
2462
2477
  /* Size Widget */
2463
2478
 
2464
2479
  .lexwidget .lexsizecross {
2465
- color: var(--global-selected);
2480
+ color: var(--global-color-accent);
2466
2481
  font-weight: 800;
2467
2482
  }
2468
2483
 
@@ -2485,7 +2500,7 @@ input[type=number] {
2485
2500
  }
2486
2501
 
2487
2502
  .lexwidget .lexpad .lexinnerpad .lexpadthumb {
2488
- background-color: var(--global-selected);
2503
+ background-color: var(--global-color-accent);
2489
2504
  width: 10%;
2490
2505
  height: 10%;
2491
2506
  border-radius: 2px;
@@ -2493,7 +2508,7 @@ input[type=number] {
2493
2508
  }
2494
2509
 
2495
2510
  .lexwidget .lexpad .lexinnerpad .lexpadthumb.active {
2496
- background-color: var(--global-selected-light);
2511
+ background-color: var(--global-color-accent-light);
2497
2512
  }
2498
2513
 
2499
2514
  /* Tabs Widget */
@@ -2570,19 +2585,30 @@ input[type=number] {
2570
2585
  min-height: 12px;
2571
2586
  margin: 0 auto;
2572
2587
  color: var(--global-text-secondary);
2573
- font-weight: 600;
2588
+ font-weight: 500;
2574
2589
  font-size: var(--global-font-size);
2575
2590
  }
2576
2591
 
2592
+ .lextree .lexnodetree_filter {
2593
+ background: none !important;
2594
+ }
2595
+
2596
+ .lextree .lexnodetree_filter:hover {
2597
+ background: none;
2598
+ }
2599
+
2577
2600
  .lextree .lextreetools {
2578
- background: var(--global-color-secondary);
2601
+ background: var(--global-color-tertiary);
2579
2602
  padding: 2px;
2580
- padding-left: 6px;
2581
- padding-right: 6px;
2603
+ padding-inline: 8px;
2582
2604
  display: flex;
2583
2605
  align-items: center;
2584
2606
  border-radius: 10px;
2585
- margin-top: 4px;
2607
+ gap: 0.5rem;
2608
+ }
2609
+
2610
+ .lexwidget.nobranch .lextree .lextreetools {
2611
+ background: var(--global-color-secondary);
2586
2612
  }
2587
2613
 
2588
2614
  .lextree .lextreetools input {
@@ -2595,17 +2621,12 @@ input[type=number] {
2595
2621
  }
2596
2622
 
2597
2623
  .lextree .lextreetools.notitle {
2598
- padding-top: 14px;
2624
+ /* padding-top: 14px; */
2599
2625
  border-top-left-radius: 8px;
2600
2626
  border-top-right-radius: 8px;
2601
2627
  }
2602
2628
 
2603
- .lextree .lextreetools a {
2604
- margin-right: 8px;
2605
- }
2606
-
2607
2629
  .lextree span {
2608
- /* Tree title */
2609
2630
  padding: 8px;
2610
2631
  display: block;
2611
2632
  border-top-left-radius: 8px;
@@ -2616,11 +2637,10 @@ input[type=number] {
2616
2637
  -ms-user-select: none;
2617
2638
  user-select: none;
2618
2639
  font-size: var(--global-font-size-lg);
2619
- font-weight: 800;
2640
+ font-weight: 500;
2620
2641
  }
2621
2642
 
2622
2643
  .lextree ul {
2623
- padding-bottom: 16px;
2624
2644
  padding-inline-start: 0px;
2625
2645
  display: flex;
2626
2646
  flex-direction: column;
@@ -2692,17 +2712,16 @@ input[type=number] {
2692
2712
 
2693
2713
  .lextree .lextreeitem:hover {
2694
2714
  color: var(--global-text-primary);
2695
- background: var(--global-color-tertiary);
2715
+ background: var(--global-color-secondary);
2696
2716
  }
2697
2717
 
2698
2718
  .lextree .lextreeitem.selected {
2699
2719
  color: var(--global-text-primary);
2700
- background: light-dark(var(--global-selected-light), var(--global-selected));
2720
+ background: light-dark(var(--global-color-accent-light), var(--global-color-accent));
2701
2721
  }
2702
2722
 
2703
2723
  .lextree .lextreeitem a.hierarchy {
2704
2724
  margin-right: 6px;
2705
- margin-top: 4px;
2706
2725
  }
2707
2726
 
2708
2727
  .lextree .lextreeitem .lexicon {
@@ -2710,7 +2729,7 @@ input[type=number] {
2710
2729
  }
2711
2730
 
2712
2731
  .lextree .lextreeitem .itemicon:hover {
2713
- color: var(--global-selected);
2732
+ color: var(--global-color-accent);
2714
2733
  }
2715
2734
 
2716
2735
  .lextree .lextreeitem.selected .itemicon:hover {
@@ -2725,7 +2744,7 @@ input[type=number] {
2725
2744
 
2726
2745
  .lexfileinput::file-selector-button {
2727
2746
  align-content: center;
2728
- background-color: var(--global-button-color);
2747
+ background-color: var(--global-color-tertiary);
2729
2748
  border-radius: 6px;
2730
2749
  border: none;
2731
2750
  margin-top: 2px;
@@ -2741,7 +2760,7 @@ input[type=number] {
2741
2760
  }
2742
2761
 
2743
2762
  .lexfileinput::file-selector-button:hover {
2744
- background-color: color-mix(in srgb, var(--global-button-color), #fff 4%);
2763
+ background-color: color-mix(in srgb, var(--global-color-tertiary), #fff 4%);
2745
2764
  color: var(--global-text-primary);
2746
2765
  }
2747
2766
 
@@ -2786,24 +2805,20 @@ input[type=number] {
2786
2805
  cursor: pointer;
2787
2806
  }
2788
2807
 
2789
- /* .lexprogressbar.editable.grabbing {
2790
- cursor: grabbing;
2791
- } */
2792
-
2793
2808
  /* The gray background in Chrome, etc. */
2794
2809
  .lexprogressbar::-webkit-meter-bar {
2795
2810
  border-radius: 0.25rem;
2796
2811
  height: 12px;
2797
- background: color-mix(in srgb, var(--global-selected) 20%, transparent);
2812
+ background: color-mix(in srgb, var(--global-color-accent) 20%, transparent);
2798
2813
  }
2799
2814
 
2800
2815
  /* (optimum) */
2801
2816
  meter:-moz-meter-optimum::-moz-meter-bar {
2802
- background: var(--global-selected);
2817
+ background: var(--global-color-accent);
2803
2818
  }
2804
2819
 
2805
2820
  .lexprogressbar::-webkit-meter-optimum-value {
2806
- background: var(--global-selected);
2821
+ background: var(--global-color-accent);
2807
2822
  }
2808
2823
 
2809
2824
  /* (high)*/
@@ -2828,7 +2843,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2828
2843
 
2829
2844
  .lexbadge {
2830
2845
  border-radius: 0.35rem;
2831
- color: #fff;
2846
+ color: var(--global-text-primary);
2832
2847
  border: 1px solid var(--badge-color, #14171a);
2833
2848
  width: fit-content;
2834
2849
  justify-content: center;
@@ -2841,8 +2856,8 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2841
2856
  }
2842
2857
 
2843
2858
  /* Colors */
2844
- .lexbadge.primary { --badge-color: var(--global-selected); }
2845
- .lexbadge.secondary { --badge-color: var(--global-selected-light); }
2859
+ .lexbadge.primary { --badge-color: var(--global-color-accent); }
2860
+ .lexbadge.secondary { --badge-color: var(--global-color-accent-light); }
2846
2861
  .lexbadge.accent { --badge-color: var(--global-color-accent); }
2847
2862
  .lexbadge.contrast { --badge-color: var(--global-text-primary); color: var(--global-color-primary); }
2848
2863
  .lexbadge.warning { --badge-color: var(--global-color-warning); }
@@ -2854,6 +2869,10 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2854
2869
  background-color: #0000;
2855
2870
  background-image: none;
2856
2871
  }
2872
+ .lexbadge.no-bg {
2873
+ background: none;
2874
+ border: none;
2875
+ }
2857
2876
  /* Sizes */
2858
2877
  .lexbadge.xs { padding-inline: 0.4rem; font-size: var(--global-font-size-xs); }
2859
2878
  .lexbadge.sm { padding-inline: 0.5rem; font-size: var(--global-font-size-sm); }
@@ -2907,8 +2926,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
2907
2926
  }
2908
2927
 
2909
2928
  .lexmenubox {
2910
- position: absolute;
2911
- padding-right: 8px;
2929
+ position: fixed;
2912
2930
  z-index: 1001;
2913
2931
  background-color: #111111f3;
2914
2932
  border: 1px solid #aaaaaa48;
@@ -3017,7 +3035,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3017
3035
  }
3018
3036
 
3019
3037
  .lexmenubox .lexmenuboxentry:not(.disabled):hover {
3020
- background-color: var(--global-selected);
3038
+ background-color: var(--global-color-accent);
3021
3039
  color: #f5f5f5;
3022
3040
  }
3023
3041
 
@@ -3037,9 +3055,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3037
3055
 
3038
3056
  .lexmenubox .lexseparator {
3039
3057
  margin: 2px 0 2px;
3040
- width: -moz-calc(100% + 8px);
3041
- width: -webkit-calc(100% + 8px);
3042
- width: calc(100% + 8px);
3058
+ width: 100%;
3043
3059
  border-color: var(--global-text-tertiary);
3044
3060
  opacity: 0.25;
3045
3061
  }
@@ -3081,7 +3097,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3081
3097
  user-select: none;
3082
3098
  }
3083
3099
 
3084
- .lexmenubar .lexmenubutton:last-child {
3100
+ .lexmenubar .lexmenubutton.main:last-child {
3085
3101
  margin-right: 8px;
3086
3102
  }
3087
3103
 
@@ -3094,7 +3110,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3094
3110
  }
3095
3111
 
3096
3112
  .lexmenubar .lexmenubutton.disabled a {
3097
- color: light-dark(var(--global-color-tertiary), var(--global-button-color));
3113
+ color: var(--global-color-quaternary);
3098
3114
  cursor: default;
3099
3115
  }
3100
3116
 
@@ -3102,10 +3118,9 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3102
3118
 
3103
3119
  .lexcontextmenu {
3104
3120
  z-index: 102;
3105
- position: absolute;
3106
- padding-right: 20px;
3121
+ position: fixed;
3107
3122
  border-radius: 6px;
3108
- box-shadow: 0 0 6px rgba(46, 46, 46, 0.596) !important;
3123
+ box-shadow: 0 0 6px rgba(46, 46, 46, 0.2) !important;
3109
3124
  background-color: var(--global-blur-background);
3110
3125
  border: 1px solid #91909036;
3111
3126
  }
@@ -3126,10 +3141,9 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3126
3141
  .lexcontextmenu .lexmenuboxentry {
3127
3142
  width: 100%;
3128
3143
  color: var(--global-text-secondary);
3129
- padding: 3px;
3130
- padding-left: 10px;
3131
- padding-right: 10px;
3132
- padding-bottom: 4px;
3144
+ padding: 4px;
3145
+ padding-inline: 8px;
3146
+ display: flex;
3133
3147
  cursor: pointer;
3134
3148
  -webkit-user-select: none;
3135
3149
  -moz-user-select: none;
@@ -3149,21 +3163,18 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3149
3163
 
3150
3164
  .lexcontextmenu .lexmenuboxentry.cmtitle {
3151
3165
  background: light-dark(var(--global-color-tertiary), var(--global-intense-background));
3152
- font-weight: bold;
3166
+ font-weight: 600;
3153
3167
  cursor: default;
3154
3168
  }
3155
3169
 
3156
3170
  .lexcontextmenu .lexmenuboxentry.cmseparator {
3157
- height: 1px;
3158
3171
  border-bottom: 1px solid var(--global-color-tertiary);
3159
3172
  padding-bottom: 0;
3160
3173
  padding-top: 0;
3161
- margin-top: -4px;
3162
3174
  }
3163
3175
 
3164
3176
  .lexcontextmenu .lexmenuboxentry .lexentryname {
3165
- margin-right: 10px;
3166
- margin-top: 2px;
3177
+ margin-right: 1rem;
3167
3178
  font-size: var(--global-font-size);
3168
3179
  white-space: nowrap;
3169
3180
  overflow: hidden;
@@ -3176,20 +3187,13 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3176
3187
 
3177
3188
  /* normal icons */
3178
3189
  .lexcontextmenu .lexmenuboxentry a {
3179
- float: right;
3180
- margin-right: 0px;
3181
- margin-top: 10px;
3190
+ align-content: center;
3191
+ margin-left: auto;
3182
3192
  font-size: var(--global-font-size-xs);
3183
3193
  }
3184
3194
 
3185
- /* submenu specified arrow */
3186
- .lexcontextmenu .lexmenuboxentry a.fa-xs {
3187
- float: right;
3188
- margin-top: -9px;
3189
- }
3190
-
3191
3195
  .lexcontextmenu .lexmenuboxentry:hover:not(.cmtitle) {
3192
- background-color: var(--global-selected);
3196
+ background-color: var(--global-color-accent);
3193
3197
  color: #f5f5f5;
3194
3198
  }
3195
3199
 
@@ -3212,12 +3216,12 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3212
3216
  /* Side Bar */
3213
3217
 
3214
3218
  .lexsidebar {
3215
- width: calc(100% - 20px);
3219
+ width: 100%;
3216
3220
  height: 100%;
3217
3221
  padding: 10px;
3218
3222
  display: flex;
3219
3223
  flex-direction: column;
3220
- gap: 0.2rem;
3224
+ /* gap: 0.2rem; */
3221
3225
  }
3222
3226
 
3223
3227
  .lexsidebar *::-webkit-scrollbar {
@@ -3231,8 +3235,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3231
3235
 
3232
3236
  .lexsidebarcontent {
3233
3237
  width: 100%;
3234
- padding-block-start: 4px;
3235
- padding-block-end: 4px;
3236
3238
  display: flex;
3237
3239
  flex-direction: column;
3238
3240
  overflow-y: scroll;
@@ -3250,18 +3252,19 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3250
3252
  }
3251
3253
 
3252
3254
  .lexsidebar .lexsidebarseparator {
3253
- background-color: #5251514d;
3254
- width: 100%;
3255
+ background-color: var(--global-color-tertiary);
3256
+ width: calc(100% + 20px);
3255
3257
  height: 1px;
3256
3258
  margin: 0 auto;
3257
3259
  margin-top: 0.4rem;
3258
3260
  margin-bottom: 0.4rem;
3259
3261
  }
3260
3262
 
3261
- .lexsidebar .lextext {
3263
+ .lexsidebar .lexsidebarfilter {
3262
3264
  transform: translate(0, 0);
3263
3265
  opacity: 1;
3264
- 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);
3266
+ margin-bottom: 0.5rem;
3267
+ transition: all 0.2s cubic-bezier(0,0,.2,1);
3265
3268
  }
3266
3269
 
3267
3270
  .lexsidebar .lexsidebargrouptitle {
@@ -3276,8 +3279,8 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3276
3279
  transform: translate(0, 0);
3277
3280
  opacity: 1;
3278
3281
  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);
3279
- height: 44px;
3280
- max-height: 44px;
3282
+ height: 32px;
3283
+ max-height: 32px;
3281
3284
  align-content: center;
3282
3285
  }
3283
3286
 
@@ -3288,20 +3291,22 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3288
3291
  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);
3289
3292
  }
3290
3293
 
3291
- .lexsidebar.collapsing .lexsidebargrouptitle *, .lexsidebar.collapsing .lextext {
3294
+ .lexsidebar.collapsing .lexsidebargrouptitle *, .lexsidebar.collapsing .lexsidebarfilter {
3292
3295
  max-height: 0px;
3293
3296
  transform: translate(0, -24px);
3294
3297
  opacity: 0;
3298
+ margin-block: 0;
3295
3299
  }
3296
3300
 
3297
- .lexsidebar.collapsed .lexsidebargrouptitle *, .lexsidebar.collapsed .lextext {
3301
+ .lexsidebar.collapsed .lexsidebargrouptitle * {
3298
3302
  display: none;
3299
3303
  }
3300
3304
 
3301
3305
  .lexsidebar .lexsidebarentry {
3302
- width: calc(100% - 16px);
3303
- padding: 6px;
3306
+ width: 100%;
3304
3307
  padding-inline: 8px;
3308
+ padding-block: 6px;
3309
+ margin-block: 0.15rem;
3305
3310
  border-radius: 8px;
3306
3311
  cursor: pointer;
3307
3312
  -webkit-user-select: none;
@@ -3323,14 +3328,15 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3323
3328
  }
3324
3329
 
3325
3330
  .lexsidebar .lexsidebarentry.selected {
3326
- background-color: var(--global-selected);
3331
+ background-color: var(--global-color-accent);
3327
3332
  }
3328
3333
 
3329
3334
  .lexsidebar .lexsidebarentry:active {
3330
3335
  transform: scale(0.99);
3331
3336
  }
3332
3337
 
3333
- .lexsidebar .lexsidebarentry div {
3338
+ .lexsidebar .lexsidebarentry .lexsidebarentrycontent {
3339
+ font-weight: 500;
3334
3340
  display: flex;
3335
3341
  gap: 0.8em;
3336
3342
  margin: 0;
@@ -3338,22 +3344,26 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3338
3344
  opacity: 0.95;
3339
3345
  }
3340
3346
 
3341
- .lexsidebar .lexsidebarentry div i {
3347
+ .lexsidebar .lexsidebarentry .lexsidebarentrycontent i {
3342
3348
  min-width: 22px;
3343
3349
  max-width: 22px;
3344
3350
  margin: auto 0;
3345
3351
  text-align: center;
3346
- margin-left: -2px;
3352
+ font-size: var(--global-font-size-lg);
3347
3353
  }
3348
3354
 
3349
- .lexsidebar .lexsidebarentry div a:not(.lexicon) {
3355
+ .lexsidebar .lexsidebarentry .lexsidebarentrycontent a:not(.lexicon) {
3350
3356
  overflow: hidden;
3351
3357
  white-space: nowrap;
3352
3358
  text-overflow: ellipsis;
3353
3359
  align-content: center;
3354
3360
  }
3355
3361
 
3356
- .lexsidebar .lexsidebarentry a.lexicon {
3362
+ .lexsidebar .lexsidebarentry .lexsidebarentryicon {
3363
+ margin-left: 2px;
3364
+ }
3365
+
3366
+ .lexsidebar .lexsidebarentry a.lexicon:not(.lexsidebarentryicon) {
3357
3367
  margin-left: auto;
3358
3368
  }
3359
3369
 
@@ -3368,7 +3378,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3368
3378
  }
3369
3379
 
3370
3380
  .lexsidebar .lexsidebarsubentrycontainer {
3371
- width: calc(100% - 48px);
3381
+ width: 100%;
3372
3382
  margin-block-start: 4px;
3373
3383
  margin-block-end: 8px;
3374
3384
  margin-left: 16px;
@@ -3409,7 +3419,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3409
3419
  display: none !important;
3410
3420
  }
3411
3421
 
3412
- .lexsidebar.collapsed .lexsidebarcontent div a {
3422
+ .lexsidebar.collapsed .lexsidebarcontent div a:not(.lexsidebarentryicon) {
3413
3423
  display: none;
3414
3424
  }
3415
3425
 
@@ -3419,7 +3429,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3419
3429
  font-weight: 600;
3420
3430
  background-color: var(--global-text-primary);
3421
3431
  color: var(--global-color-primary);
3422
- font-size: var(--global-font-size);
3432
+ font-size: var(--global-font-size-sm);
3423
3433
  border-radius: 6px;
3424
3434
  text-align: center;
3425
3435
  opacity: 0;
@@ -3432,12 +3442,20 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3432
3442
 
3433
3443
  .lexsidebar.collapsed .lexsidebarentry:hover .lexsidebarentrydesc {
3434
3444
  opacity: 1;
3435
- transform: translate(0, 0);
3445
+ transform: translate(2px, 0);
3446
+ }
3447
+
3448
+ .lexsidebar.collapsed .lexsidebarentry:hover {
3449
+ display: flex;
3450
+ }
3451
+
3452
+ .lexsidebar .lexsidebarheader {
3453
+ margin-bottom: 0.5rem;
3436
3454
  }
3437
3455
 
3438
3456
  .lexsidebar .lexsidebarfooter, .lexsidebar .lexsidebarheader {
3439
- width: calc(100% - 16px);
3440
- height: 36px;
3457
+ width: 100%;
3458
+ height: 48px;
3441
3459
  display: flex;
3442
3460
  border-radius: 8px;
3443
3461
  padding: 8px;
@@ -3456,7 +3474,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3456
3474
  }
3457
3475
 
3458
3476
  .lexsidebar.collapsing .lexsidebarheader {
3459
- background-color: var(--global-selected);
3477
+ background-color: var(--global-color-accent);
3460
3478
  }
3461
3479
 
3462
3480
  .lexsidebar .lexsidebarfooter:active, .lexsidebar .lexsidebarheader:active {
@@ -3477,7 +3495,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3477
3495
  }
3478
3496
 
3479
3497
  .lexsidebar .lexsidebarfooter div.infodefault, .lexsidebar .lexsidebarheader div.infodefault {
3480
- width: calc(100% - 88px);
3498
+ width: 100%;
3481
3499
  padding-inline: 12px;
3482
3500
  justify-content: center;
3483
3501
  display: flex;
@@ -3600,11 +3618,11 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3600
3618
  }
3601
3619
 
3602
3620
  .lexoverlaybuttons .lexbutton {
3621
+ --button-color: var(--global-color-secondary);
3603
3622
  padding: 6px 6px;
3604
3623
  font-size: var(--global-font-size-lg);
3605
3624
  border-radius: 10px;
3606
3625
  justify-content: center;
3607
- background: none;
3608
3626
  color: var(--global-text-secondary);
3609
3627
  height: 100%;
3610
3628
  }
@@ -3613,46 +3631,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3613
3631
  font-size: var(--global-font-size-lg);
3614
3632
  }
3615
3633
 
3616
- .lexoverlaybuttons .lexbutton a {
3617
- line-height: 10px;
3618
- font-size: var(--global-font-size-lg);
3619
- }
3620
-
3621
- .lexoverlaybuttons .lexbutton.array a {
3622
- font-size: var(--global-font-size-sm);
3623
- margin-left: 4px;
3624
- }
3625
-
3626
- :root[data-theme="light"] .lexoverlaybuttons .lexbutton img {
3627
- filter: invert(1);
3628
- }
3629
-
3630
- .lexoverlaybuttons .lexbutton.selected {
3631
- background-color: light-dark(var(--global-selected-light), var(--global-selected)) !important;
3632
- color: #fff;
3633
- outline: none;
3634
- border-radius: 8px;
3635
- }
3636
-
3637
- .lexoverlaybuttons .lexbutton.selected img,
3638
- .lexoverlaybuttons .lexbutton:hover img {
3639
- filter: none;
3640
- }
3641
-
3642
- .lexoverlaybuttons .lexbutton:hover {
3643
- color: var(--global-text-primary);
3644
- background-color: color-mix(in srgb, var(--global-button-color), #fff 4%);
3645
- }
3646
-
3647
- .lexoverlaybuttons .lexbutton.selected:hover {
3648
- color: #f4f4ffe6;
3649
- }
3650
-
3651
- .lexoverlaybuttons .lexbutton:active {
3652
- outline: none !important;
3653
- color: #d5d5d5;
3654
- }
3655
-
3656
3634
  .lexoverlaybuttons .lexoverlaygroup {
3657
3635
  display: flex;
3658
3636
  flex: none;
@@ -3661,11 +3639,15 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3661
3639
  }
3662
3640
 
3663
3641
  .lexoverlaybuttons .lexoverlaygroup .lexbutton {
3664
- background: none;
3642
+ --button-color: var(--global-color-tertiary);
3665
3643
  -webkit-backdrop-filter: none;
3666
3644
  backdrop-filter: none;
3667
3645
  }
3668
3646
 
3647
+ .lexoverlaybuttons .lexbutton.selected {
3648
+ --button-color: var(--global-color-accent);
3649
+ }
3650
+
3669
3651
  .lexoverlaybuttonscontainer.vertical .lexoverlaygroup {
3670
3652
  display: grid;
3671
3653
  margin-right: 0px;
@@ -3710,7 +3692,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3710
3692
  text-align: center;
3711
3693
  align-items: center;
3712
3694
  padding: 3px;
3713
- color: var(--global-text-secondary);
3695
+ color: var(--global-text-tertiary);
3714
3696
  cursor: pointer;
3715
3697
  -webkit-user-select: none;
3716
3698
  -moz-user-select: none;
@@ -3720,17 +3702,17 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3720
3702
  }
3721
3703
 
3722
3704
  .lexareatabs .lexareatab.thumb {
3723
- position: absolute;
3724
- background: var(--global-selected);
3705
+ background: var(--global-color-accent);
3725
3706
  z-index: 0;
3707
+ height: 22px;
3708
+ position: absolute;
3726
3709
  transition: linear transform 0.15s;
3727
3710
  }
3728
3711
 
3729
3712
  .lexareatabs.row {
3730
- background-color: light-dark(var(--global-color-tertiary), var(--global-button-color));
3713
+ background-color: var(--global-color-tertiary);
3731
3714
  border-radius: 8px;
3732
3715
  padding: 3px;
3733
- margin: 6px;
3734
3716
  gap: 0.1em;
3735
3717
  }
3736
3718
 
@@ -3739,11 +3721,10 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3739
3721
  transition: 0.1s;
3740
3722
  background: none;
3741
3723
  border-radius: 6px;
3742
- color: var(--global-text-secondary);
3743
3724
  }
3744
3725
 
3745
3726
  .lexareatabs.fit {
3746
- width: calc(100% - 12px);
3727
+ width: 100%;
3747
3728
  padding-inline: 6px;
3748
3729
  }
3749
3730
 
@@ -3785,14 +3766,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3785
3766
  transition-timing-function: ease-out;
3786
3767
  }
3787
3768
 
3788
- .lexareatabscontainer .lexpanel:not(.lexoverlaybuttons) {
3789
- margin: 0;
3790
- }
3791
-
3792
- .lexareatabscontainer .lexbranch {
3793
- margin: 4px 7px !important;
3794
- }
3795
-
3796
3769
  .lexareatabscontent.folded {
3797
3770
  max-height: 0px;
3798
3771
  }
@@ -3806,11 +3779,10 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3806
3779
  /* Avatar Widget */
3807
3780
 
3808
3781
  .lexavatar {
3809
- width: 32px;
3810
- height: 32px;
3782
+ width: 48px;
3811
3783
  border-radius: 8px;
3812
- margin: auto 0;
3813
3784
  align-content: center;
3785
+ aspect-ratio: 1;
3814
3786
  }
3815
3787
 
3816
3788
  .lexavatar * {
@@ -3838,25 +3810,25 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3838
3810
  }
3839
3811
 
3840
3812
  .lexcard:hover a {
3841
- color: var(--global-selected);
3813
+ color: var(--global-color-accent);
3842
3814
  }
3843
3815
 
3844
3816
  .lexcard:hover img {
3845
- outline: 3px solid var(--global-selected);
3817
+ outline: 3px solid var(--global-color-accent);
3846
3818
  }
3847
3819
 
3848
3820
  .lexcard span {
3849
3821
  font-size: var(--global-font-size-lg);
3850
3822
  font-family: var(--global-title-font);
3851
- font-weight: 600;
3823
+ font-weight: 500;
3852
3824
  text-transform: uppercase;
3853
- width: calc(100% - 16px);
3825
+ width: 100%;
3826
+ height: 32px;
3854
3827
  display: flex;
3855
3828
  background-color: var(--global-blur-background);
3856
3829
  --webkit-backdrop-filter: blur(12px);
3857
3830
  backdrop-filter: blur(12px);
3858
3831
  align-items: center;
3859
- height: 16px;
3860
3832
  position: absolute;
3861
3833
  top: 0;
3862
3834
  left: 0;
@@ -3871,7 +3843,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3871
3843
  }
3872
3844
 
3873
3845
  .lexcard span a:hover {
3874
- color: var(--global-selected);
3846
+ color: var(--global-color-accent);
3875
3847
  }
3876
3848
 
3877
3849
  /* Layers Widget */
@@ -3880,7 +3852,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3880
3852
  display: grid;
3881
3853
  grid-template-columns: 18px 18px 18px 18px 18px 18px 18px 18px;
3882
3854
  grid-gap: 6px 8px;
3883
- /* Gap between grid cells */
3884
3855
  justify-content: center;
3885
3856
  }
3886
3857
 
@@ -3899,7 +3870,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3899
3870
  }
3900
3871
 
3901
3872
  .lexlayer.selected {
3902
- --layer-color: var(--global-selected);
3873
+ --layer-color: var(--global-color-accent);
3903
3874
  color: #fff;
3904
3875
  }
3905
3876
 
@@ -3922,7 +3893,8 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3922
3893
  }
3923
3894
 
3924
3895
  .lexlistitem {
3925
- width: calc(100% - 8px);
3896
+ width: 100%;
3897
+ height: 24px;
3926
3898
  cursor: pointer;
3927
3899
  color: var(--global-text-secondary);
3928
3900
  font-size: var(--global-font-size);
@@ -3931,7 +3903,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3931
3903
  padding-right: 4px;
3932
3904
  margin-top: 1px;
3933
3905
  margin-bottom: 1px;
3934
- height: 20px;
3935
3906
  line-height: 22px;
3936
3907
  align-content: center;
3937
3908
  display: flow-root;
@@ -3958,7 +3929,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3958
3929
 
3959
3930
  .lexlistitem.selected {
3960
3931
  color: #fff;
3961
- background-color: var(--global-selected);
3932
+ background-color: var(--global-color-accent);
3962
3933
  }
3963
3934
 
3964
3935
  /* Array Widget */
@@ -3967,11 +3938,18 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3967
3938
  .lexwidget:has(.lexcheckboxsubmenu),
3968
3939
  .lexwidget:has(.lextogglesubmenu),
3969
3940
  .lexwidget:has(.lexcustomcontainer) {
3970
- background-color: light-dark(var(--global-color-tertiary), var(--global-medium-background));
3971
3941
  border-radius: 6px;
3972
3942
  display: grid;
3973
3943
  grid-template-columns: repeat(2, 1fr);
3974
3944
  grid-template-rows: auto auto;
3945
+ transition: background-color 0.2s ease-out;
3946
+ }
3947
+
3948
+ .lexwidget:has(.lexarrayitems)[data-opened=true],
3949
+ .lexwidget:has(.lexcheckboxsubmenu)[data-opened=true],
3950
+ .lexwidget:has(.lextogglesubmenu)[data-opened=true],
3951
+ .lexwidget:has(.lexcustomcontainer)[data-opened=true] {
3952
+ background-color: light-dark(var(--global-color-tertiary), var(--global-medium-background));
3975
3953
  }
3976
3954
 
3977
3955
  .lexarray .lexwidget {
@@ -3988,10 +3966,6 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
3988
3966
  grid-column: span 2;
3989
3967
  }
3990
3968
 
3991
- .lexarrayitems .small .lexbutton {
3992
- background: none;
3993
- }
3994
-
3995
3969
  .lexarrayitems .lexwidgetname {
3996
3970
  color: var(--global-text-secondary);
3997
3971
  }
@@ -4002,7 +3976,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
4002
3976
  display: inline-flex;
4003
3977
  flex-wrap: wrap;
4004
3978
  line-height: 12px;
4005
- background-color: light-dark(var(--global-color-tertiary), var(--global-button-color));
3979
+ background-color: var(--global-color-tertiary);
4006
3980
  border-radius: 8px;
4007
3981
  padding: 4px;
4008
3982
  }
@@ -4066,7 +4040,7 @@ meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
4066
4040
  .lextable table {
4067
4041
  width: 100%;
4068
4042
  border: 1px solid;
4069
- border-color: light-dark(#dbd8d8c0, var(--global-button-color));
4043
+ border-color: var(--global-color-tertiary);
4070
4044
  border-collapse: separate;
4071
4045
  border-radius: 8px;
4072
4046
  border-spacing: 0px;
@@ -4118,6 +4092,7 @@ th, td {
4118
4092
 
4119
4093
  th {
4120
4094
  --th-color: var(--global-text-secondary);
4095
+ font-weight: 600;
4121
4096
  color: var(--th-color);
4122
4097
  font-size: var(--global-font-size);
4123
4098
  padding-block: 2px;
@@ -4227,10 +4202,6 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4227
4202
  justify-content: space-between;
4228
4203
  }
4229
4204
 
4230
- .lexcustomcontainer .lexbutton span:not(:has(.menu)) {
4231
- width: 95%;
4232
- }
4233
-
4234
4205
  /* Knob Widget */
4235
4206
 
4236
4207
  .lexknob {
@@ -4255,8 +4226,8 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4255
4226
  position: absolute;
4256
4227
  width: 125%;
4257
4228
  height: 125%;
4258
- top: -15.5%;
4259
- left: -15.5%;
4229
+ top: -12.5%;
4230
+ left: -12.5%;
4260
4231
  border-radius: 50%;
4261
4232
  border: 2px solid rgba(255, 255, 255, 0.2);
4262
4233
  border-bottom-color: transparent;
@@ -4321,7 +4292,7 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4321
4292
  }
4322
4293
 
4323
4294
  .lexknob .knobmarker {
4324
- background-color: var(--global-selected);
4295
+ background-color: var(--global-color-accent);
4325
4296
  filter: brightness(1.5);
4326
4297
  width: 6px;
4327
4298
  height: 6px;
@@ -4372,7 +4343,7 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4372
4343
  }
4373
4344
 
4374
4345
  :root[data-theme="light"] .lexknob .knobmarker {
4375
- background-color: var(--global-selected-dark);
4346
+ background-color: var(--global-color-accent-dark);
4376
4347
  filter: brightness(1.5);
4377
4348
  }
4378
4349
 
@@ -4438,14 +4409,6 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4438
4409
  height: 100%;
4439
4410
  }
4440
4411
 
4441
- .lextimelinepanel {
4442
- /* overflow: hidden; */
4443
- }
4444
-
4445
- /* .lextimeline .lexarea, .lextimelinepanel {
4446
- background-color: var(--global-intense-background);
4447
- } */
4448
-
4449
4412
  .lextimeline *::-webkit-scrollbar {
4450
4413
  display: none;
4451
4414
  }
@@ -4463,10 +4426,6 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4463
4426
  padding-right: 10px;
4464
4427
  }
4465
4428
 
4466
- .lextimeline .lexbutton:hover {
4467
- color: var(--global-selected-light);
4468
- }
4469
-
4470
4429
  .lextimeline .lextree {
4471
4430
  margin: 0px !important;
4472
4431
  }
@@ -4488,14 +4447,10 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4488
4447
  height: unset;
4489
4448
  }
4490
4449
 
4491
- .lextimeline .lexbutton.accept:hover {
4492
- background-color: color-mix(in srgb, var(--global-button-color), #000 7%);
4493
- }
4494
-
4495
4450
  /**/
4496
4451
  .lexmin {
4497
4452
  display: inline-block;
4498
- color: var(--global-selected-light);
4453
+ color: var(--global-color-accent-light);
4499
4454
  background: var(--global-color-primary);
4500
4455
  border-radius: 8px;
4501
4456
  padding: 4px;
@@ -4627,7 +4582,7 @@ thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td
4627
4582
 
4628
4583
  .lexassetbrowser .lexsplitbar.horizontal {
4629
4584
  position: relative;
4630
- height: calc(100%);
4585
+ height: 100%;
4631
4586
  border-radius: 0px;
4632
4587
  left: 0 !important;
4633
4588
  top: 0;
@@ -4683,7 +4638,7 @@ ul.lexassetscontent {
4683
4638
  margin: 0.5em;
4684
4639
  margin-top: 0.75em;
4685
4640
  padding: 0;
4686
- box-shadow: 0 0 8px black;
4641
+ box-shadow: 0 0 2px rgba(0, 0, 0, .14);
4687
4642
  overflow: hidden;
4688
4643
  background-color: #555;
4689
4644
  cursor: pointer;
@@ -4716,16 +4671,14 @@ ul.lexassetscontent {
4716
4671
  }
4717
4672
 
4718
4673
  .lexassetscontent.list li {
4719
- width: calc(100% - 0.5em);
4674
+ width: 100%;
4720
4675
  height: 1.8em;
4721
4676
  border-top: 0px;
4722
- border-left: 4px solid rgba(0, 0, 0, 0);
4723
- border-bottom-left-radius: 2px;
4724
- border-bottom-right-radius: 2px;
4677
+ border-left: 4px solid transparent;
4678
+ border-radius: 4px;
4725
4679
  margin: 0;
4726
4680
  margin-top: 0.4em;
4727
4681
  margin-bottom: 0.4em;
4728
- box-shadow: 0 0 6px rgba(0, 0, 0, 0.858);
4729
4682
  }
4730
4683
 
4731
4684
  .lexassetscontent .asset-file-preview {
@@ -4768,12 +4721,12 @@ ul.lexassetscontent {
4768
4721
  }
4769
4722
 
4770
4723
  .lexassetscontent li:hover {
4771
- outline: 2px solid var(--global-selected);
4724
+ outline: 2px solid var(--global-color-accent);
4772
4725
  }
4773
4726
 
4774
4727
  .lexassetscontent li.selected {
4775
4728
  transition: none !important;
4776
- outline: 2px solid var(--global-selected);
4729
+ outline: 2px solid var(--global-color-accent);
4777
4730
  font-weight: bold;
4778
4731
  }
4779
4732
 
@@ -4783,7 +4736,7 @@ ul.lexassetscontent {
4783
4736
  bottom: 0px;
4784
4737
  -webkit-text-size-adjust: 100%;
4785
4738
  font-size: var(--global-font-size);
4786
- color: #BBB;
4739
+ color: var(--global-text-primary);
4787
4740
  cursor: pointer;
4788
4741
  text-align: center;
4789
4742
  box-sizing: border-box;
@@ -4794,7 +4747,7 @@ ul.lexassetscontent {
4794
4747
  overflow: hidden;
4795
4748
  text-overflow: ellipsis;
4796
4749
  white-space: nowrap;
4797
- background-color: rgba(12, 12, 12, 0.8);
4750
+ background-color: var(--global-intense-background);
4798
4751
  transition: all 0.1s;
4799
4752
  z-index: 1;
4800
4753
  }
@@ -4851,7 +4804,7 @@ ul.lexassetscontent {
4851
4804
  .lexassetscontent li.selected .lexassettitle {
4852
4805
  color: #f5f5f5;
4853
4806
  text-shadow: 0 0 3px black;
4854
- background-color: var(--global-selected);
4807
+ background-color: var(--global-color-accent);
4855
4808
  }
4856
4809
 
4857
4810
  .lexassetscontent li img {
@@ -4930,7 +4883,7 @@ ul.lexassetscontent {
4930
4883
  .codebasearea .lexareatab.selected {
4931
4884
  background-color: var(--global-color-secondary) !important;
4932
4885
  color: var(--global-text-secondary) !important;
4933
- border-top: 1px solid var(--global-selected);
4886
+ border-top: 1px solid var(--global-color-accent);
4934
4887
  border-bottom: none;
4935
4888
  }
4936
4889
 
@@ -4965,7 +4918,7 @@ ul.lexassetscontent {
4965
4918
  .lexcodeeditor {
4966
4919
  outline: none;
4967
4920
  overflow: hidden;
4968
- width: calc(100%);
4921
+ width: 100%;
4969
4922
  -webkit-user-select: none;
4970
4923
  -moz-user-select: none;
4971
4924
  -ms-user-select: none;
@@ -5009,7 +4962,7 @@ ul.lexassetscontent {
5009
4962
  }
5010
4963
 
5011
4964
  .lexcodeeditor .codetabsarea.with-vscrollbar {
5012
- width: calc(100% - 10px) !important;
4965
+ width: 100% !important;
5013
4966
  }
5014
4967
 
5015
4968
  .lexcodeeditor .codetabsarea.with-hscrollbar {
@@ -5220,7 +5173,7 @@ ul.lexassetscontent {
5220
5173
  top: 0px;
5221
5174
  width: 100px;
5222
5175
  height: var(--code-editor-row-height);
5223
- background-color: var(--global-selected);
5176
+ background-color: var(--global-color-accent);
5224
5177
  opacity: 0.4;
5225
5178
  }
5226
5179
 
@@ -5237,7 +5190,7 @@ ul.lexassetscontent {
5237
5190
  top: 26px;
5238
5191
  z-index: 100;
5239
5192
  border-radius: 4px;
5240
- border: 1px solid var(--global-button-color);
5193
+ border: 1px solid var(--global-color-tertiary);
5241
5194
  box-shadow: 0 0px 4px #101010;
5242
5195
  overflow-y: scroll;
5243
5196
  transform: translateY(-72px);
@@ -5266,7 +5219,7 @@ ul.lexassetscontent {
5266
5219
  visibility: hidden;
5267
5220
  z-index: 100;
5268
5221
  border-radius: 4px;
5269
- border: 1px solid var(--global-button-color);
5222
+ border: 1px solid var(--global-color-tertiary);
5270
5223
  box-shadow: 0 0px 4px #101010;
5271
5224
  overflow-y: scroll;
5272
5225
  }
@@ -5300,7 +5253,7 @@ ul.lexassetscontent {
5300
5253
  }
5301
5254
 
5302
5255
  .lexcodeeditor .autocomplete pre.selected {
5303
- background-color: var(--global-selected);
5256
+ background-color: var(--global-color-accent);
5304
5257
  }
5305
5258
 
5306
5259
  .lexcodeeditor .autocomplete pre span {
@@ -5308,7 +5261,7 @@ ul.lexassetscontent {
5308
5261
  }
5309
5262
 
5310
5263
  .lexcodeeditor .autocomplete pre span.word-highlight {
5311
- color: var(--global-selected-light);
5264
+ color: var(--global-color-accent-light);
5312
5265
  }
5313
5266
 
5314
5267
  .lexcodeeditor .autocomplete pre.selected span.word-highlight {
@@ -5550,9 +5503,9 @@ ul.lexassetscontent {
5550
5503
 
5551
5504
  .lexgraph .box-selection-svg {
5552
5505
  stroke-width: 3px;
5553
- stroke: var(--global-selected);
5506
+ stroke: var(--global-color-accent);
5554
5507
  border-radius: 8px;
5555
- fill: var(--global-selected);
5508
+ fill: var(--global-color-accent);
5556
5509
  fill-opacity: 0.2;
5557
5510
  }
5558
5511
 
@@ -5621,7 +5574,7 @@ ul.lexassetscontent {
5621
5574
  }
5622
5575
 
5623
5576
  .lexgraphnode.selected {
5624
- border: 3px solid var(--global-selected-dark);
5577
+ border: 3px solid var(--global-color-accent-dark);
5625
5578
  border: 3px solid #ffc107;
5626
5579
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .14);
5627
5580
  }
@@ -5671,8 +5624,10 @@ ul.lexassetscontent {
5671
5624
  font-size: var(--global-font-size-sm);
5672
5625
  color: #d9d9e3;
5673
5626
  text-shadow: 0px 1px 6px #22222283;
5674
- display: flex;
5675
5627
  min-height: 18px;
5628
+ display: flex;
5629
+ gap: 0.3rem;
5630
+ align-items: center;
5676
5631
  }
5677
5632
 
5678
5633
  .lexgraphnode .lexgraphnodeio.iooutput {
@@ -5682,16 +5637,14 @@ ul.lexassetscontent {
5682
5637
  .lexgraphnode .lexgraphnodeio .io__type {
5683
5638
  font-size: calc(var(--global-font-size-xs) - 1px);
5684
5639
  font-weight: 700;
5685
- line-height: 10px;
5640
+ line-height: 1;
5686
5641
  min-width: 11px;
5687
5642
  max-width: 11px;
5688
5643
  min-height: 10px;
5689
5644
  max-height: 10px;
5690
5645
  background-color: #afafaf;
5691
5646
  align-self: center;
5692
- margin-right: 3px;
5693
5647
  border-radius: 3px;
5694
- padding-top: 1px;
5695
5648
  text-align: -webkit-center;
5696
5649
  text-align: center;
5697
5650
  border: 1px solid #afafaf6b;
@@ -5707,7 +5660,6 @@ ul.lexassetscontent {
5707
5660
  position: absolute;
5708
5661
  margin-left: -30px;
5709
5662
  font-weight: 600;
5710
- margin-top: 3px;
5711
5663
  background-color: #afafaf;
5712
5664
  color: var(--global-color-primary);
5713
5665
  font-size: var(--global-font-size-xs);
@@ -5747,10 +5699,6 @@ ul.lexassetscontent {
5747
5699
  background-color: #56a8d8;
5748
5700
  }
5749
5701
 
5750
- .lexgraphnode .lexgraphnodeio .io__name {
5751
- margin-top: 2px;
5752
- }
5753
-
5754
5702
  .lexgraphnode .lexgraphnodeio .io__type.output {
5755
5703
  margin-right: unset;
5756
5704
  margin-left: 3px;
@@ -5877,10 +5825,6 @@ ul.lexassetscontent {
5877
5825
  }
5878
5826
 
5879
5827
  .lexvideoeditor .lexconstrolsarea {
5880
- /* background-color: var(--global-intense-background); */
5881
- /* padding: 5px;
5882
- margin: 10px; */
5883
- /* width: calc(100% - 30px)!important; */
5884
5828
  min-height: 88px !important;
5885
5829
  border-radius: 8px;
5886
5830
  display: flex;
@@ -5924,18 +5868,6 @@ ul.lexassetscontent {
5924
5868
  width: calc(100% - 40px) !important;
5925
5869
  }
5926
5870
 
5927
- /* .lexvideoeditor .lexvideotimebar {
5928
- width: calc(100% - 40px);
5929
- height: 100%;
5930
- background-color: var(--global-intense-background);
5931
- } */
5932
-
5933
- /* .lexvideoeditor .lexvideotimebar canvas {
5934
- width: calc(100%);
5935
- height: calc(100% );
5936
- padding: 5px;
5937
- } */
5938
-
5939
5871
  .resizeable {
5940
5872
  resize: both;
5941
5873
  overflow: auto;
@@ -5943,7 +5875,7 @@ ul.lexassetscontent {
5943
5875
 
5944
5876
  .resize-area {
5945
5877
  position: absolute;
5946
- border: 2px double var(--global-selected-light);
5878
+ border: 2px double var(--global-color-accent-light);
5947
5879
  cursor: move;
5948
5880
  z-index: 100;
5949
5881
  }
@@ -5979,4 +5911,4 @@ ul.lexassetscontent {
5979
5911
  bottom: -5px;
5980
5912
  right: -5px;
5981
5913
  cursor: nwse-resize;
5982
- }
5914
+ }