claude-mem 13.9.2 → 13.9.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/.codex-plugin/plugin.json +1 -1
- package/dist/npx-cli/index.js +401 -406
- package/dist/opencode-plugin/index.js +1 -1
- package/openclaw/openclaw.plugin.json +1 -1
- package/package.json +8 -32
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.codex-plugin/plugin.json +1 -1
- package/plugin/bun.lock +0 -3
- package/plugin/package.json +1 -2
- package/plugin/scripts/context-generator.cjs +256 -411
- package/plugin/scripts/mcp-server.cjs +61 -61
- package/plugin/scripts/server-service.cjs +152 -163
- package/plugin/scripts/transcript-watcher.cjs +20 -22
- package/plugin/scripts/worker-service.cjs +555 -801
- package/plugin/ui/viewer-bundle.js +13 -13
- package/plugin/ui/viewer.html +1 -744
package/plugin/ui/viewer.html
CHANGED
|
@@ -309,39 +309,6 @@
|
|
|
309
309
|
overflow: hidden;
|
|
310
310
|
}
|
|
311
311
|
|
|
312
|
-
.full-height-flex-layout {
|
|
313
|
-
display: flex;
|
|
314
|
-
height: 100%;
|
|
315
|
-
position: relative;
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
.main-col {
|
|
319
|
-
flex: 1;
|
|
320
|
-
display: flex;
|
|
321
|
-
flex-direction: column;
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
.sidebar {
|
|
325
|
-
position: fixed;
|
|
326
|
-
right: 0;
|
|
327
|
-
top: 0;
|
|
328
|
-
height: 100vh;
|
|
329
|
-
width: 100%;
|
|
330
|
-
max-width: 400px;
|
|
331
|
-
background: var(--color-bg-primary);
|
|
332
|
-
border-left: 1px solid var(--color-border-primary);
|
|
333
|
-
display: flex;
|
|
334
|
-
flex-direction: column;
|
|
335
|
-
transform: translate3d(100%, 0, 0);
|
|
336
|
-
transition: transform 0.3s ease;
|
|
337
|
-
z-index: 100;
|
|
338
|
-
will-change: transform;
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
.sidebar.open {
|
|
342
|
-
transform: translate3d(0, 0, 0);
|
|
343
|
-
}
|
|
344
|
-
|
|
345
312
|
.header {
|
|
346
313
|
padding: 16px 24px;
|
|
347
314
|
border-bottom: 1px solid var(--color-border-primary);
|
|
@@ -363,131 +330,6 @@
|
|
|
363
330
|
flex-wrap: wrap;
|
|
364
331
|
}
|
|
365
332
|
|
|
366
|
-
.sidebar-header {
|
|
367
|
-
padding: 14px 18px;
|
|
368
|
-
border-bottom: 1px solid var(--color-border-primary);
|
|
369
|
-
display: flex;
|
|
370
|
-
justify-content: space-between;
|
|
371
|
-
align-items: center;
|
|
372
|
-
background: var(--color-bg-header);
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
.sidebar-header h1 {
|
|
376
|
-
font-size: 16px;
|
|
377
|
-
font-weight: 500;
|
|
378
|
-
color: var(--color-text-header);
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
.sidebar-community-btn {
|
|
382
|
-
display: none;
|
|
383
|
-
background: var(--color-bg-card);
|
|
384
|
-
border: 1px solid var(--color-border-primary);
|
|
385
|
-
border-radius: 6px;
|
|
386
|
-
padding: 0 14px;
|
|
387
|
-
height: 36px;
|
|
388
|
-
cursor: pointer;
|
|
389
|
-
align-items: center;
|
|
390
|
-
justify-content: center;
|
|
391
|
-
color: var(--color-text-secondary);
|
|
392
|
-
font-size: 13px;
|
|
393
|
-
font-weight: 500;
|
|
394
|
-
text-decoration: none;
|
|
395
|
-
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
396
|
-
white-space: nowrap;
|
|
397
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
|
|
398
|
-
margin: 16px 18px;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
.sidebar-community-btn:hover {
|
|
402
|
-
background: var(--color-bg-card-hover);
|
|
403
|
-
border-color: var(--color-border-focus);
|
|
404
|
-
color: var(--color-text-primary);
|
|
405
|
-
transform: translateY(-1px);
|
|
406
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
.sidebar-community-btn:active {
|
|
410
|
-
transform: translateY(0);
|
|
411
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
@media (max-width: 600px) {
|
|
415
|
-
.sidebar-community-btn {
|
|
416
|
-
display: flex;
|
|
417
|
-
}
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
.sidebar-project-filter {
|
|
421
|
-
display: none;
|
|
422
|
-
padding: 16px 18px;
|
|
423
|
-
border-bottom: 1px solid var(--color-border-primary);
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
.sidebar-project-filter label {
|
|
427
|
-
display: block;
|
|
428
|
-
margin-bottom: 8px;
|
|
429
|
-
font-size: 12px;
|
|
430
|
-
color: var(--color-text-muted);
|
|
431
|
-
font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
|
|
432
|
-
font-weight: 500;
|
|
433
|
-
}
|
|
434
|
-
|
|
435
|
-
.sidebar-project-filter select {
|
|
436
|
-
width: 100%;
|
|
437
|
-
background: var(--color-bg-card);
|
|
438
|
-
border: 1px solid var(--color-border-primary);
|
|
439
|
-
border-radius: 6px;
|
|
440
|
-
padding: 0 32px 0 12px;
|
|
441
|
-
height: 36px;
|
|
442
|
-
font-size: 13px;
|
|
443
|
-
font-weight: 500;
|
|
444
|
-
color: var(--color-text-secondary);
|
|
445
|
-
cursor: pointer;
|
|
446
|
-
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
447
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
|
|
448
|
-
appearance: none;
|
|
449
|
-
background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
450
|
-
background-repeat: no-repeat;
|
|
451
|
-
background-position: right 10px center;
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
.sidebar-project-filter select:hover {
|
|
455
|
-
background-color: var(--color-bg-card-hover);
|
|
456
|
-
border-color: var(--color-border-focus);
|
|
457
|
-
color: var(--color-text-primary);
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
.sidebar-project-filter select:focus {
|
|
461
|
-
outline: none;
|
|
462
|
-
border-color: var(--color-border-focus);
|
|
463
|
-
box-shadow: 0 0 0 3px rgba(9, 105, 218, 0.1);
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
@media (max-width: 480px) {
|
|
467
|
-
.sidebar-project-filter {
|
|
468
|
-
display: block;
|
|
469
|
-
}
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
.sidebar-social-links {
|
|
473
|
-
display: none;
|
|
474
|
-
padding: 16px 18px;
|
|
475
|
-
border-bottom: 1px solid var(--color-border-primary);
|
|
476
|
-
gap: 8px;
|
|
477
|
-
justify-content: center;
|
|
478
|
-
}
|
|
479
|
-
|
|
480
|
-
.sidebar-social-links .icon-link {
|
|
481
|
-
flex: 1;
|
|
482
|
-
max-width: 80px;
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
@media (max-width: 768px) {
|
|
486
|
-
.sidebar-social-links {
|
|
487
|
-
display: flex;
|
|
488
|
-
}
|
|
489
|
-
}
|
|
490
|
-
|
|
491
333
|
.header h1 {
|
|
492
334
|
font-size: 17px;
|
|
493
335
|
font-weight: 500;
|
|
@@ -586,38 +428,6 @@
|
|
|
586
428
|
box-shadow: 0 2px 8px rgba(9, 105, 218, 0.25);
|
|
587
429
|
}
|
|
588
430
|
|
|
589
|
-
.community-btn {
|
|
590
|
-
background: var(--color-bg-card);
|
|
591
|
-
border: 1px solid var(--color-border-primary);
|
|
592
|
-
border-radius: 6px;
|
|
593
|
-
padding: 0 14px;
|
|
594
|
-
height: 36px;
|
|
595
|
-
cursor: pointer;
|
|
596
|
-
display: flex;
|
|
597
|
-
align-items: center;
|
|
598
|
-
justify-content: center;
|
|
599
|
-
color: var(--color-text-secondary);
|
|
600
|
-
font-size: 13px;
|
|
601
|
-
font-weight: 500;
|
|
602
|
-
text-decoration: none;
|
|
603
|
-
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
604
|
-
white-space: nowrap;
|
|
605
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
|
|
606
|
-
}
|
|
607
|
-
|
|
608
|
-
.community-btn:hover {
|
|
609
|
-
background: var(--color-bg-card-hover);
|
|
610
|
-
border-color: var(--color-border-focus);
|
|
611
|
-
color: var(--color-text-primary);
|
|
612
|
-
transform: translateY(-1px);
|
|
613
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
.community-btn:active {
|
|
617
|
-
transform: translateY(0);
|
|
618
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
|
|
619
|
-
}
|
|
620
|
-
|
|
621
431
|
/* GitHub Stars Button - Similar to Community Button */
|
|
622
432
|
.github-stars-btn {
|
|
623
433
|
background: var(--color-bg-card);
|
|
@@ -702,19 +512,6 @@
|
|
|
702
512
|
height: 18px;
|
|
703
513
|
}
|
|
704
514
|
|
|
705
|
-
.status-dot {
|
|
706
|
-
width: 8px;
|
|
707
|
-
height: 8px;
|
|
708
|
-
border-radius: 50%;
|
|
709
|
-
background: var(--color-accent-error);
|
|
710
|
-
animation: pulse 2s ease-in-out infinite;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
.status-dot.connected {
|
|
714
|
-
background: var(--color-accent-success);
|
|
715
|
-
animation: none;
|
|
716
|
-
}
|
|
717
|
-
|
|
718
515
|
@keyframes pulse {
|
|
719
516
|
|
|
720
517
|
0%,
|
|
@@ -863,22 +660,6 @@
|
|
|
863
660
|
gap: 10px;
|
|
864
661
|
}
|
|
865
662
|
|
|
866
|
-
.card-subheading-left {
|
|
867
|
-
display: flex;
|
|
868
|
-
align-items: center;
|
|
869
|
-
gap: 10px;
|
|
870
|
-
}
|
|
871
|
-
|
|
872
|
-
.card-subheading {
|
|
873
|
-
display: flex;
|
|
874
|
-
align-items: center;
|
|
875
|
-
justify-content: space-between;
|
|
876
|
-
margin-bottom: 14px;
|
|
877
|
-
font-size: 12px;
|
|
878
|
-
color: var(--color-text-muted);
|
|
879
|
-
font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
|
|
880
|
-
}
|
|
881
|
-
|
|
882
663
|
.card-type {
|
|
883
664
|
padding: 2px 8px;
|
|
884
665
|
background: var(--color-type-badge-bg);
|
|
@@ -1022,32 +803,6 @@
|
|
|
1022
803
|
line-height: 1.7;
|
|
1023
804
|
}
|
|
1024
805
|
|
|
1025
|
-
.card-section {
|
|
1026
|
-
font-size: 14px;
|
|
1027
|
-
color: var(--color-text-subtitle);
|
|
1028
|
-
line-height: 1.6;
|
|
1029
|
-
margin-bottom: 10px;
|
|
1030
|
-
}
|
|
1031
|
-
|
|
1032
|
-
.card-section:last-child {
|
|
1033
|
-
margin-bottom: 0;
|
|
1034
|
-
}
|
|
1035
|
-
|
|
1036
|
-
.card-section pre {
|
|
1037
|
-
white-space: pre-wrap;
|
|
1038
|
-
font-size: 13px;
|
|
1039
|
-
/* word-wrap: break-word; */
|
|
1040
|
-
}
|
|
1041
|
-
|
|
1042
|
-
/*
|
|
1043
|
-
.card-section h4 {
|
|
1044
|
-
font-size: 12px;
|
|
1045
|
-
margin-bottom: 8px;
|
|
1046
|
-
margin-top: 16px;
|
|
1047
|
-
color: var(--color-text-title);
|
|
1048
|
-
font-weight: 500;
|
|
1049
|
-
} */
|
|
1050
|
-
|
|
1051
806
|
.card-meta {
|
|
1052
807
|
font-size: 11px;
|
|
1053
808
|
color: var(--color-text-tertiary);
|
|
@@ -1063,11 +818,6 @@
|
|
|
1063
818
|
color: var(--color-text-tertiary);
|
|
1064
819
|
}
|
|
1065
820
|
|
|
1066
|
-
.meta-concepts {
|
|
1067
|
-
font-style: italic;
|
|
1068
|
-
color: var(--color-text-muted);
|
|
1069
|
-
}
|
|
1070
|
-
|
|
1071
821
|
.meta-files {
|
|
1072
822
|
color: var(--color-text-muted);
|
|
1073
823
|
font-size: 10px;
|
|
@@ -1287,71 +1037,6 @@
|
|
|
1287
1037
|
}
|
|
1288
1038
|
}
|
|
1289
1039
|
|
|
1290
|
-
.settings-section {
|
|
1291
|
-
padding: 18px;
|
|
1292
|
-
border-bottom: 1px solid var(--color-border-primary);
|
|
1293
|
-
}
|
|
1294
|
-
|
|
1295
|
-
.settings-section h3 {
|
|
1296
|
-
font-size: 14px;
|
|
1297
|
-
font-weight: 600;
|
|
1298
|
-
margin-bottom: 14px;
|
|
1299
|
-
color: var(--color-text-header);
|
|
1300
|
-
letter-spacing: 0.3px;
|
|
1301
|
-
}
|
|
1302
|
-
|
|
1303
|
-
.form-group {
|
|
1304
|
-
margin-bottom: 14px;
|
|
1305
|
-
}
|
|
1306
|
-
|
|
1307
|
-
.form-group label {
|
|
1308
|
-
display: block;
|
|
1309
|
-
margin-bottom: 6px;
|
|
1310
|
-
font-size: 12px;
|
|
1311
|
-
color: var(--color-text-muted);
|
|
1312
|
-
font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
|
|
1313
|
-
}
|
|
1314
|
-
|
|
1315
|
-
.setting-description {
|
|
1316
|
-
font-size: 12px;
|
|
1317
|
-
color: var(--color-text-muted);
|
|
1318
|
-
margin-bottom: 8px;
|
|
1319
|
-
line-height: 1.5;
|
|
1320
|
-
}
|
|
1321
|
-
|
|
1322
|
-
.stats-grid {
|
|
1323
|
-
display: grid;
|
|
1324
|
-
grid-template-columns: 1fr 1fr;
|
|
1325
|
-
gap: 12px;
|
|
1326
|
-
}
|
|
1327
|
-
|
|
1328
|
-
.stat {
|
|
1329
|
-
padding: 10px 12px;
|
|
1330
|
-
background: var(--color-bg-stat);
|
|
1331
|
-
border: 1px solid var(--color-border-primary);
|
|
1332
|
-
border-radius: 4px;
|
|
1333
|
-
}
|
|
1334
|
-
|
|
1335
|
-
.stat-label {
|
|
1336
|
-
color: var(--color-text-muted);
|
|
1337
|
-
margin-bottom: 4px;
|
|
1338
|
-
font-size: 11px;
|
|
1339
|
-
text-transform: uppercase;
|
|
1340
|
-
letter-spacing: 0.5px;
|
|
1341
|
-
}
|
|
1342
|
-
|
|
1343
|
-
.stat-value {
|
|
1344
|
-
font-size: 18px;
|
|
1345
|
-
color: var(--color-text-header);
|
|
1346
|
-
font-weight: 600;
|
|
1347
|
-
font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
|
|
1348
|
-
}
|
|
1349
|
-
|
|
1350
|
-
.stats-scroll {
|
|
1351
|
-
flex: 1;
|
|
1352
|
-
overflow-y: auto;
|
|
1353
|
-
}
|
|
1354
|
-
|
|
1355
1040
|
::-webkit-scrollbar {
|
|
1356
1041
|
width: 10px;
|
|
1357
1042
|
}
|
|
@@ -1389,21 +1074,6 @@
|
|
|
1389
1074
|
color: var(--color-prompt-badge-text);
|
|
1390
1075
|
}
|
|
1391
1076
|
|
|
1392
|
-
.observation-card {
|
|
1393
|
-
border-color: var(--color-border-observation);
|
|
1394
|
-
background: var(--color-bg-observation);
|
|
1395
|
-
color: var(--color-text-observation);
|
|
1396
|
-
}
|
|
1397
|
-
|
|
1398
|
-
.observation-card:hover {
|
|
1399
|
-
border-color: var(--color-border-observation-hover);
|
|
1400
|
-
}
|
|
1401
|
-
|
|
1402
|
-
.observation-card .card-type {
|
|
1403
|
-
background: var(--color-observation-badge-bg);
|
|
1404
|
-
color: var(--color-observation-badge-text);
|
|
1405
|
-
}
|
|
1406
|
-
|
|
1407
1077
|
/* Welcome modal — first-launch + reusable as help via the ? button.
|
|
1408
1078
|
Layout strategy: desktop-first, fluid type via clamp(), and squares
|
|
1409
1079
|
built with the padding-bottom:100% trick (percentage padding resolves
|
|
@@ -1615,16 +1285,6 @@
|
|
|
1615
1285
|
word-wrap: break-word;
|
|
1616
1286
|
}
|
|
1617
1287
|
|
|
1618
|
-
.processing-indicator {
|
|
1619
|
-
display: inline-flex;
|
|
1620
|
-
align-items: center;
|
|
1621
|
-
gap: 6px;
|
|
1622
|
-
color: var(--color-accent-focus);
|
|
1623
|
-
font-size: 11px;
|
|
1624
|
-
font-weight: 500;
|
|
1625
|
-
margin-left: auto;
|
|
1626
|
-
}
|
|
1627
|
-
|
|
1628
1288
|
.spinner {
|
|
1629
1289
|
width: 12px;
|
|
1630
1290
|
height: 12px;
|
|
@@ -1640,38 +1300,6 @@
|
|
|
1640
1300
|
}
|
|
1641
1301
|
}
|
|
1642
1302
|
|
|
1643
|
-
.summary-skeleton {
|
|
1644
|
-
opacity: 0.7;
|
|
1645
|
-
}
|
|
1646
|
-
|
|
1647
|
-
.summary-skeleton .processing-indicator {
|
|
1648
|
-
margin-left: auto;
|
|
1649
|
-
}
|
|
1650
|
-
|
|
1651
|
-
.skeleton-line {
|
|
1652
|
-
height: 16px;
|
|
1653
|
-
background: linear-gradient(90deg, var(--color-skeleton-base) 25%, var(--color-skeleton-highlight) 50%, var(--color-skeleton-base) 75%);
|
|
1654
|
-
background-size: 200% 100%;
|
|
1655
|
-
animation: shimmer 1.5s infinite;
|
|
1656
|
-
border-radius: 4px;
|
|
1657
|
-
margin-bottom: 8px;
|
|
1658
|
-
}
|
|
1659
|
-
|
|
1660
|
-
.skeleton-title {
|
|
1661
|
-
height: 20px;
|
|
1662
|
-
width: 80%;
|
|
1663
|
-
margin-bottom: 10px;
|
|
1664
|
-
}
|
|
1665
|
-
|
|
1666
|
-
.skeleton-subtitle {
|
|
1667
|
-
height: 16px;
|
|
1668
|
-
width: 90%;
|
|
1669
|
-
}
|
|
1670
|
-
|
|
1671
|
-
.skeleton-subtitle.short {
|
|
1672
|
-
width: 60%;
|
|
1673
|
-
}
|
|
1674
|
-
|
|
1675
1303
|
@keyframes shimmer {
|
|
1676
1304
|
0% {
|
|
1677
1305
|
background-position: 200% 0;
|
|
@@ -1723,14 +1351,7 @@
|
|
|
1723
1351
|
to {
|
|
1724
1352
|
opacity: 1;
|
|
1725
1353
|
transform: translateY(0);
|
|
1726
|
-
}
|
|
1727
|
-
}
|
|
1728
|
-
|
|
1729
|
-
/* Utility: Container */
|
|
1730
|
-
.container {
|
|
1731
|
-
width: 100%;
|
|
1732
|
-
max-width: 600px;
|
|
1733
|
-
margin: 0 auto;
|
|
1354
|
+
}
|
|
1734
1355
|
}
|
|
1735
1356
|
|
|
1736
1357
|
/* Tablet Responsive Styles - 481px to 768px */
|
|
@@ -1757,10 +1378,6 @@
|
|
|
1757
1378
|
display: none;
|
|
1758
1379
|
}
|
|
1759
1380
|
|
|
1760
|
-
/* Sidebar full width on tablet */
|
|
1761
|
-
.sidebar {
|
|
1762
|
-
}
|
|
1763
|
-
|
|
1764
1381
|
/* Feed adjustments */
|
|
1765
1382
|
.feed {
|
|
1766
1383
|
padding: 20px 16px;
|
|
@@ -1777,10 +1394,6 @@
|
|
|
1777
1394
|
|
|
1778
1395
|
/* Mobile & Small Tablet - 600px and below */
|
|
1779
1396
|
@media (max-width: 600px) {
|
|
1780
|
-
/* Hide community button in header, will show in sidebar */
|
|
1781
|
-
.community-btn {
|
|
1782
|
-
display: none;
|
|
1783
|
-
}
|
|
1784
1397
|
|
|
1785
1398
|
/* Hide GitHub stars button on mobile */
|
|
1786
1399
|
.github-stars-btn {
|
|
@@ -1852,18 +1465,6 @@
|
|
|
1852
1465
|
flex-shrink: 0;
|
|
1853
1466
|
}
|
|
1854
1467
|
|
|
1855
|
-
.community-btn {
|
|
1856
|
-
height: 32px;
|
|
1857
|
-
padding: 0 12px;
|
|
1858
|
-
font-size: 12px;
|
|
1859
|
-
flex-shrink: 0;
|
|
1860
|
-
}
|
|
1861
|
-
|
|
1862
|
-
.community-btn svg {
|
|
1863
|
-
width: 12px;
|
|
1864
|
-
height: 12px;
|
|
1865
|
-
}
|
|
1866
|
-
|
|
1867
1468
|
.settings-icon,
|
|
1868
1469
|
.theme-toggle-btn svg,
|
|
1869
1470
|
.icon-link svg {
|
|
@@ -1871,18 +1472,6 @@
|
|
|
1871
1472
|
height: 16px;
|
|
1872
1473
|
}
|
|
1873
1474
|
|
|
1874
|
-
/* Sidebar adjustments for mobile */
|
|
1875
|
-
.sidebar {
|
|
1876
|
-
}
|
|
1877
|
-
|
|
1878
|
-
.sidebar-header {
|
|
1879
|
-
padding: 12px 16px;
|
|
1880
|
-
}
|
|
1881
|
-
|
|
1882
|
-
.settings-section {
|
|
1883
|
-
padding: 16px;
|
|
1884
|
-
}
|
|
1885
|
-
|
|
1886
1475
|
/* Feed adjustments */
|
|
1887
1476
|
.feed {
|
|
1888
1477
|
padding: 16px 12px;
|
|
@@ -1907,17 +1496,6 @@
|
|
|
1907
1496
|
flex-wrap: wrap;
|
|
1908
1497
|
}
|
|
1909
1498
|
|
|
1910
|
-
/* Stats grid to single column */
|
|
1911
|
-
.stats-grid {
|
|
1912
|
-
grid-template-columns: 1fr;
|
|
1913
|
-
}
|
|
1914
|
-
|
|
1915
|
-
/* Form inputs full width */
|
|
1916
|
-
.form-group input,
|
|
1917
|
-
.form-group select {
|
|
1918
|
-
width: 100%;
|
|
1919
|
-
}
|
|
1920
|
-
|
|
1921
1499
|
/* Scroll to top button position */
|
|
1922
1500
|
.scroll-to-top {
|
|
1923
1501
|
bottom: 16px;
|
|
@@ -2050,33 +1628,6 @@
|
|
|
2050
1628
|
transform: scale(0.95);
|
|
2051
1629
|
}
|
|
2052
1630
|
|
|
2053
|
-
.modal-icon-link {
|
|
2054
|
-
background: transparent;
|
|
2055
|
-
border: 1px solid var(--color-border-primary);
|
|
2056
|
-
width: 32px;
|
|
2057
|
-
height: 32px;
|
|
2058
|
-
border-radius: 6px;
|
|
2059
|
-
cursor: pointer;
|
|
2060
|
-
display: flex;
|
|
2061
|
-
align-items: center;
|
|
2062
|
-
justify-content: center;
|
|
2063
|
-
color: var(--color-text-secondary);
|
|
2064
|
-
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2065
|
-
padding: 0;
|
|
2066
|
-
text-decoration: none;
|
|
2067
|
-
}
|
|
2068
|
-
|
|
2069
|
-
.modal-icon-link:hover {
|
|
2070
|
-
background: var(--color-bg-card-hover);
|
|
2071
|
-
border-color: var(--color-border-focus);
|
|
2072
|
-
color: var(--color-text-primary);
|
|
2073
|
-
transform: scale(1.05);
|
|
2074
|
-
}
|
|
2075
|
-
|
|
2076
|
-
.modal-icon-link:active {
|
|
2077
|
-
transform: scale(0.95);
|
|
2078
|
-
}
|
|
2079
|
-
|
|
2080
1631
|
.modal-body {
|
|
2081
1632
|
flex: 1;
|
|
2082
1633
|
display: grid;
|
|
@@ -2139,48 +1690,6 @@
|
|
|
2139
1690
|
flex-direction: column;
|
|
2140
1691
|
}
|
|
2141
1692
|
|
|
2142
|
-
.preview-column-header {
|
|
2143
|
-
padding: 16px 20px;
|
|
2144
|
-
background: #141414;
|
|
2145
|
-
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
2146
|
-
flex-shrink: 0;
|
|
2147
|
-
}
|
|
2148
|
-
|
|
2149
|
-
.preview-column-header label {
|
|
2150
|
-
display: block;
|
|
2151
|
-
font-size: 11px;
|
|
2152
|
-
font-weight: 600;
|
|
2153
|
-
color: #888;
|
|
2154
|
-
margin-bottom: 8px;
|
|
2155
|
-
text-transform: uppercase;
|
|
2156
|
-
letter-spacing: 0.5px;
|
|
2157
|
-
}
|
|
2158
|
-
|
|
2159
|
-
.preview-column-header select {
|
|
2160
|
-
width: 100%;
|
|
2161
|
-
background: #0a0a0a;
|
|
2162
|
-
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
2163
|
-
border-radius: 6px;
|
|
2164
|
-
padding: 8px 12px;
|
|
2165
|
-
height: 36px;
|
|
2166
|
-
font-size: 13px;
|
|
2167
|
-
font-weight: 500;
|
|
2168
|
-
color: #ddd;
|
|
2169
|
-
cursor: pointer;
|
|
2170
|
-
transition: all 0.2s;
|
|
2171
|
-
}
|
|
2172
|
-
|
|
2173
|
-
.preview-column-header select:hover {
|
|
2174
|
-
border-color: rgba(255, 255, 255, 0.2);
|
|
2175
|
-
background: #111;
|
|
2176
|
-
}
|
|
2177
|
-
|
|
2178
|
-
.preview-column-header select:focus {
|
|
2179
|
-
outline: none;
|
|
2180
|
-
border-color: var(--color-accent-primary);
|
|
2181
|
-
box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.1);
|
|
2182
|
-
}
|
|
2183
|
-
|
|
2184
1693
|
.preview-content {
|
|
2185
1694
|
flex: 1;
|
|
2186
1695
|
overflow-y: auto;
|
|
@@ -2240,158 +1749,6 @@
|
|
|
2240
1749
|
background: rgba(255, 255, 255, 0.25);
|
|
2241
1750
|
}
|
|
2242
1751
|
|
|
2243
|
-
/* Settings Groups - Compact */
|
|
2244
|
-
.settings-group {
|
|
2245
|
-
padding: 14px 16px;
|
|
2246
|
-
border-bottom: 1px solid var(--color-border-primary);
|
|
2247
|
-
}
|
|
2248
|
-
|
|
2249
|
-
.settings-group:last-child {
|
|
2250
|
-
border-bottom: none;
|
|
2251
|
-
}
|
|
2252
|
-
|
|
2253
|
-
.settings-group h4 {
|
|
2254
|
-
margin: 0 0 10px 0;
|
|
2255
|
-
font-size: 10px;
|
|
2256
|
-
font-weight: 600;
|
|
2257
|
-
color: var(--color-text-muted);
|
|
2258
|
-
text-transform: uppercase;
|
|
2259
|
-
letter-spacing: 0.8px;
|
|
2260
|
-
}
|
|
2261
|
-
|
|
2262
|
-
/* Filter Chips - Compact */
|
|
2263
|
-
.chips-container {
|
|
2264
|
-
display: flex;
|
|
2265
|
-
flex-wrap: wrap;
|
|
2266
|
-
gap: 6px;
|
|
2267
|
-
}
|
|
2268
|
-
|
|
2269
|
-
.chip {
|
|
2270
|
-
display: inline-flex;
|
|
2271
|
-
align-items: center;
|
|
2272
|
-
justify-content: center;
|
|
2273
|
-
padding: 5px 10px;
|
|
2274
|
-
min-height: 28px;
|
|
2275
|
-
border: 1px solid var(--color-border-primary);
|
|
2276
|
-
border-radius: 4px;
|
|
2277
|
-
font-size: 11px;
|
|
2278
|
-
font-weight: 500;
|
|
2279
|
-
color: var(--color-text-secondary);
|
|
2280
|
-
background: var(--color-bg-card);
|
|
2281
|
-
cursor: pointer;
|
|
2282
|
-
transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2283
|
-
user-select: none;
|
|
2284
|
-
}
|
|
2285
|
-
|
|
2286
|
-
.chip:hover {
|
|
2287
|
-
background: var(--color-bg-card-hover);
|
|
2288
|
-
border-color: var(--color-border-hover);
|
|
2289
|
-
color: var(--color-text-primary);
|
|
2290
|
-
transform: translateY(-1px);
|
|
2291
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
|
|
2292
|
-
}
|
|
2293
|
-
|
|
2294
|
-
.chip:active {
|
|
2295
|
-
transform: translateY(0);
|
|
2296
|
-
}
|
|
2297
|
-
|
|
2298
|
-
.chip.selected {
|
|
2299
|
-
background: linear-gradient(135deg, var(--color-bg-button) 0%, var(--color-accent-primary) 100%);
|
|
2300
|
-
color: white;
|
|
2301
|
-
border-color: var(--color-bg-button);
|
|
2302
|
-
box-shadow: 0 2px 8px rgba(9, 105, 218, 0.25);
|
|
2303
|
-
}
|
|
2304
|
-
|
|
2305
|
-
.chip.selected:hover {
|
|
2306
|
-
transform: translateY(-1px);
|
|
2307
|
-
box-shadow: 0 4px 12px rgba(9, 105, 218, 0.35);
|
|
2308
|
-
}
|
|
2309
|
-
|
|
2310
|
-
/* Form Controls in Modal - Compact */
|
|
2311
|
-
.settings-group input[type="number"],
|
|
2312
|
-
.settings-group select {
|
|
2313
|
-
width: 100%;
|
|
2314
|
-
background: var(--color-bg-input);
|
|
2315
|
-
border: 1px solid var(--color-border-primary);
|
|
2316
|
-
border-radius: 4px;
|
|
2317
|
-
padding: 6px 10px;
|
|
2318
|
-
height: 32px;
|
|
2319
|
-
font-size: 12px;
|
|
2320
|
-
color: var(--color-text-primary);
|
|
2321
|
-
transition: all 0.2s;
|
|
2322
|
-
margin-top: 4px;
|
|
2323
|
-
}
|
|
2324
|
-
|
|
2325
|
-
.settings-group input[type="number"]:hover,
|
|
2326
|
-
.settings-group select:hover {
|
|
2327
|
-
border-color: var(--color-border-hover);
|
|
2328
|
-
}
|
|
2329
|
-
|
|
2330
|
-
.settings-group input[type="number"]:focus,
|
|
2331
|
-
.settings-group select:focus {
|
|
2332
|
-
outline: none;
|
|
2333
|
-
border-color: var(--color-border-focus);
|
|
2334
|
-
box-shadow: 0 0 0 3px rgba(9, 105, 218, 0.1);
|
|
2335
|
-
}
|
|
2336
|
-
|
|
2337
|
-
.settings-group label {
|
|
2338
|
-
display: block;
|
|
2339
|
-
font-size: 11px;
|
|
2340
|
-
font-weight: 500;
|
|
2341
|
-
color: var(--color-text-primary);
|
|
2342
|
-
margin-bottom: 4px;
|
|
2343
|
-
}
|
|
2344
|
-
|
|
2345
|
-
/* Checkboxes - Compact */
|
|
2346
|
-
.settings-group input[type="checkbox"] {
|
|
2347
|
-
width: 14px;
|
|
2348
|
-
height: 14px;
|
|
2349
|
-
cursor: pointer;
|
|
2350
|
-
margin-right: 6px;
|
|
2351
|
-
accent-color: var(--color-accent-primary);
|
|
2352
|
-
}
|
|
2353
|
-
|
|
2354
|
-
.checkbox-group {
|
|
2355
|
-
display: flex;
|
|
2356
|
-
flex-direction: column;
|
|
2357
|
-
gap: 6px;
|
|
2358
|
-
margin-top: 4px;
|
|
2359
|
-
}
|
|
2360
|
-
|
|
2361
|
-
.checkbox-item {
|
|
2362
|
-
display: flex;
|
|
2363
|
-
align-items: center;
|
|
2364
|
-
cursor: pointer;
|
|
2365
|
-
padding: 4px 0;
|
|
2366
|
-
}
|
|
2367
|
-
|
|
2368
|
-
.checkbox-item label {
|
|
2369
|
-
margin: 0;
|
|
2370
|
-
cursor: pointer;
|
|
2371
|
-
font-size: 11px;
|
|
2372
|
-
font-weight: 500;
|
|
2373
|
-
color: var(--color-text-secondary);
|
|
2374
|
-
}
|
|
2375
|
-
|
|
2376
|
-
.checkbox-item:hover label {
|
|
2377
|
-
color: var(--color-text-primary);
|
|
2378
|
-
}
|
|
2379
|
-
|
|
2380
|
-
/* Number Input Group - Compact */
|
|
2381
|
-
.number-input-group {
|
|
2382
|
-
margin-top: 6px;
|
|
2383
|
-
}
|
|
2384
|
-
|
|
2385
|
-
.select-group {
|
|
2386
|
-
margin-top: 6px;
|
|
2387
|
-
}
|
|
2388
|
-
|
|
2389
|
-
.number-input-group + .number-input-group,
|
|
2390
|
-
.select-group + .number-input-group,
|
|
2391
|
-
.number-input-group + .select-group {
|
|
2392
|
-
margin-top: 10px;
|
|
2393
|
-
}
|
|
2394
|
-
|
|
2395
1752
|
/* Animations */
|
|
2396
1753
|
@keyframes fadeIn {
|
|
2397
1754
|
from {
|
|
@@ -2474,61 +1831,6 @@
|
|
|
2474
1831
|
padding: 0 16px 16px 16px;
|
|
2475
1832
|
}
|
|
2476
1833
|
|
|
2477
|
-
/* ============================================
|
|
2478
|
-
NEW: Chip Groups with All/None
|
|
2479
|
-
============================================ */
|
|
2480
|
-
.chip-group {
|
|
2481
|
-
margin-bottom: 14px;
|
|
2482
|
-
}
|
|
2483
|
-
|
|
2484
|
-
.chip-group:last-child {
|
|
2485
|
-
margin-bottom: 0;
|
|
2486
|
-
}
|
|
2487
|
-
|
|
2488
|
-
.chip-group-header {
|
|
2489
|
-
display: flex;
|
|
2490
|
-
align-items: center;
|
|
2491
|
-
justify-content: space-between;
|
|
2492
|
-
margin-bottom: 8px;
|
|
2493
|
-
}
|
|
2494
|
-
|
|
2495
|
-
.chip-group-label {
|
|
2496
|
-
font-size: 11px;
|
|
2497
|
-
font-weight: 600;
|
|
2498
|
-
color: var(--color-text-secondary);
|
|
2499
|
-
text-transform: uppercase;
|
|
2500
|
-
letter-spacing: 0.5px;
|
|
2501
|
-
}
|
|
2502
|
-
|
|
2503
|
-
.chip-group-actions {
|
|
2504
|
-
display: flex;
|
|
2505
|
-
gap: 4px;
|
|
2506
|
-
}
|
|
2507
|
-
|
|
2508
|
-
.chip-action {
|
|
2509
|
-
padding: 2px 8px;
|
|
2510
|
-
font-size: 10px;
|
|
2511
|
-
font-weight: 500;
|
|
2512
|
-
color: var(--color-text-muted);
|
|
2513
|
-
background: transparent;
|
|
2514
|
-
border: 1px solid var(--color-border-primary);
|
|
2515
|
-
border-radius: 3px;
|
|
2516
|
-
cursor: pointer;
|
|
2517
|
-
transition: all 0.15s ease;
|
|
2518
|
-
}
|
|
2519
|
-
|
|
2520
|
-
.chip-action:hover {
|
|
2521
|
-
color: var(--color-text-primary);
|
|
2522
|
-
border-color: var(--color-border-hover);
|
|
2523
|
-
background: var(--color-bg-card-hover);
|
|
2524
|
-
}
|
|
2525
|
-
|
|
2526
|
-
.chip-action.active {
|
|
2527
|
-
color: var(--color-accent-primary);
|
|
2528
|
-
border-color: var(--color-accent-primary);
|
|
2529
|
-
background: var(--color-type-badge-bg);
|
|
2530
|
-
}
|
|
2531
|
-
|
|
2532
1834
|
/* ============================================
|
|
2533
1835
|
NEW: Form Fields with Tooltips
|
|
2534
1836
|
============================================ */
|
|
@@ -2700,47 +2002,6 @@
|
|
|
2700
2002
|
margin-bottom: 10px;
|
|
2701
2003
|
}
|
|
2702
2004
|
|
|
2703
|
-
/* ============================================
|
|
2704
|
-
Improved Chip Styles
|
|
2705
|
-
============================================ */
|
|
2706
|
-
.chip {
|
|
2707
|
-
display: inline-flex;
|
|
2708
|
-
align-items: center;
|
|
2709
|
-
justify-content: center;
|
|
2710
|
-
padding: 6px 12px;
|
|
2711
|
-
min-height: 30px;
|
|
2712
|
-
border: 1px solid var(--color-border-primary);
|
|
2713
|
-
border-radius: 6px;
|
|
2714
|
-
font-size: 12px;
|
|
2715
|
-
font-weight: 500;
|
|
2716
|
-
color: var(--color-text-secondary);
|
|
2717
|
-
background: var(--color-bg-card);
|
|
2718
|
-
cursor: pointer;
|
|
2719
|
-
transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2720
|
-
user-select: none;
|
|
2721
|
-
}
|
|
2722
|
-
|
|
2723
|
-
.chip:hover {
|
|
2724
|
-
background: var(--color-bg-card-hover);
|
|
2725
|
-
border-color: var(--color-accent-primary);
|
|
2726
|
-
color: var(--color-text-primary);
|
|
2727
|
-
}
|
|
2728
|
-
|
|
2729
|
-
.chip:active {
|
|
2730
|
-
transform: scale(0.98);
|
|
2731
|
-
}
|
|
2732
|
-
|
|
2733
|
-
.chip.selected {
|
|
2734
|
-
background: var(--color-accent-primary);
|
|
2735
|
-
color: white;
|
|
2736
|
-
border-color: var(--color-accent-primary);
|
|
2737
|
-
}
|
|
2738
|
-
|
|
2739
|
-
.chip.selected:hover {
|
|
2740
|
-
background: var(--color-bg-button-hover);
|
|
2741
|
-
border-color: var(--color-bg-button-hover);
|
|
2742
|
-
}
|
|
2743
|
-
|
|
2744
2005
|
/* Console Drawer - Chrome DevTools Style */
|
|
2745
2006
|
.console-toggle-btn {
|
|
2746
2007
|
position: fixed;
|
|
@@ -3104,10 +2365,6 @@
|
|
|
3104
2365
|
font-size: 11px;
|
|
3105
2366
|
}
|
|
3106
2367
|
|
|
3107
|
-
.settings-group {
|
|
3108
|
-
padding: 14px 16px;
|
|
3109
|
-
}
|
|
3110
|
-
|
|
3111
2368
|
.section-header-btn {
|
|
3112
2369
|
padding: 12px 14px;
|
|
3113
2370
|
}
|