claude-mem 10.7.2 → 12.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -355,6 +355,14 @@
355
355
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
356
356
  }
357
357
 
358
+ .header-main {
359
+ display: flex;
360
+ align-items: center;
361
+ gap: 18px;
362
+ min-width: 0;
363
+ flex-wrap: wrap;
364
+ }
365
+
358
366
  .sidebar-header {
359
367
  padding: 14px 18px;
360
368
  border-bottom: 1px solid var(--color-border-primary);
@@ -549,6 +557,42 @@
549
557
  font-size: 13px;
550
558
  }
551
559
 
560
+ .source-tabs {
561
+ display: inline-flex;
562
+ align-items: center;
563
+ gap: 6px;
564
+ flex-wrap: wrap;
565
+ }
566
+
567
+ .source-tab {
568
+ background: transparent;
569
+ border: 1px solid var(--color-border-primary);
570
+ color: var(--color-text-secondary);
571
+ border-radius: 999px;
572
+ padding: 6px 12px;
573
+ font-size: 12px;
574
+ line-height: 1;
575
+ font-weight: 600;
576
+ letter-spacing: 0.01em;
577
+ cursor: pointer;
578
+ transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
579
+ white-space: nowrap;
580
+ }
581
+
582
+ .source-tab:hover {
583
+ background: var(--color-bg-card-hover);
584
+ border-color: var(--color-border-focus);
585
+ color: var(--color-text-primary);
586
+ transform: translateY(-1px);
587
+ }
588
+
589
+ .source-tab.active {
590
+ background: linear-gradient(135deg, var(--color-bg-button) 0%, var(--color-accent-primary) 100%);
591
+ border-color: var(--color-bg-button);
592
+ color: var(--color-text-button);
593
+ box-shadow: 0 2px 8px rgba(9, 105, 218, 0.18);
594
+ }
595
+
552
596
  .settings-btn,
553
597
  .theme-toggle-btn {
554
598
  background: var(--color-bg-card);
@@ -887,6 +931,49 @@
887
931
  letter-spacing: 0.5px;
888
932
  }
889
933
 
934
+ .card-source {
935
+ padding: 2px 8px;
936
+ border-radius: 999px;
937
+ font-weight: 600;
938
+ font-size: 10px;
939
+ letter-spacing: 0.04em;
940
+ text-transform: uppercase;
941
+ border: 1px solid transparent;
942
+ }
943
+
944
+ .source-claude {
945
+ background: rgba(255, 138, 61, 0.12);
946
+ color: #c25a00;
947
+ border-color: rgba(255, 138, 61, 0.22);
948
+ }
949
+
950
+ .source-codex {
951
+ background: rgba(33, 150, 243, 0.12);
952
+ color: #0f5ba7;
953
+ border-color: rgba(33, 150, 243, 0.24);
954
+ }
955
+
956
+ .source-cursor {
957
+ background: rgba(124, 58, 237, 0.12);
958
+ color: #6d28d9;
959
+ border-color: rgba(124, 58, 237, 0.24);
960
+ }
961
+
962
+ [data-theme="dark"] .source-claude {
963
+ color: #ffb067;
964
+ border-color: rgba(255, 176, 103, 0.2);
965
+ }
966
+
967
+ [data-theme="dark"] .source-codex {
968
+ color: #8fc7ff;
969
+ border-color: rgba(143, 199, 255, 0.2);
970
+ }
971
+
972
+ [data-theme="dark"] .source-cursor {
973
+ color: #c4b5fd;
974
+ border-color: rgba(196, 181, 253, 0.2);
975
+ }
976
+
890
977
  .card-title {
891
978
  font-size: 17px;
892
979
  margin-bottom: 14px;
@@ -1483,6 +1570,10 @@
1483
1570
  padding: 14px 20px;
1484
1571
  }
1485
1572
 
1573
+ .header-main {
1574
+ gap: 12px;
1575
+ }
1576
+
1486
1577
  .status {
1487
1578
  gap: 6px;
1488
1579
  }
@@ -1491,6 +1582,11 @@
1491
1582
  max-width: 160px;
1492
1583
  }
1493
1584
 
1585
+ .source-tab {
1586
+ padding: 6px 10px;
1587
+ font-size: 11px;
1588
+ }
1589
+
1494
1590
  /* Hide icon links (docs, github, twitter) on tablet */
1495
1591
  .icon-link {
1496
1592
  display: none;
@@ -1544,6 +1640,28 @@
1544
1640
  gap: 8px;
1545
1641
  }
1546
1642
 
1643
+ .header-main {
1644
+ gap: 10px;
1645
+ }
1646
+
1647
+ .source-tabs {
1648
+ width: 100%;
1649
+ flex-wrap: nowrap;
1650
+ overflow-x: auto;
1651
+ padding-bottom: 2px;
1652
+ scrollbar-width: none;
1653
+ }
1654
+
1655
+ .source-tabs::-webkit-scrollbar {
1656
+ display: none;
1657
+ }
1658
+
1659
+ .source-tab {
1660
+ flex-shrink: 0;
1661
+ padding: 5px 10px;
1662
+ font-size: 11px;
1663
+ }
1664
+
1547
1665
  .logomark {
1548
1666
  height: 28px;
1549
1667
  }
@@ -1732,6 +1850,11 @@
1732
1850
  white-space: nowrap;
1733
1851
  }
1734
1852
 
1853
+ .preview-selector select:disabled {
1854
+ opacity: 0.6;
1855
+ cursor: not-allowed;
1856
+ }
1857
+
1735
1858
  .preview-selector select {
1736
1859
  background: var(--color-bg-card);
1737
1860
  border: 1px solid var(--color-border-primary);
@@ -2873,4 +2996,4 @@
2873
2996
  <script src="viewer-bundle.js"></script>
2874
2997
  </body>
2875
2998
 
2876
- </html>
2999
+ </html>