@quanta-intellect/vessel-browser 0.1.99 → 0.1.103

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.
@@ -872,6 +872,7 @@
872
872
  0 16px 40px var(--shadow-color);
873
873
  backdrop-filter: blur(16px);
874
874
  animation: toast-enter var(--duration-enter) var(--ease-out-expo) both;
875
+ pointer-events: auto;
875
876
  }
876
877
 
877
878
  @keyframes toast-enter {
@@ -900,13 +901,47 @@
900
901
  }
901
902
  }
902
903
 
904
+ .bookmark-toast-header {
905
+ display: flex;
906
+ align-items: flex-start;
907
+ gap: 10px;
908
+ }
909
+
903
910
  .bookmark-toast-title {
911
+ flex: 1;
912
+ min-width: 0;
904
913
  color: var(--text-primary);
905
914
  font-size: 12px;
906
915
  font-weight: 600;
907
916
  letter-spacing: 0.01em;
908
917
  }
909
918
 
919
+ .bookmark-toast-close {
920
+ display: inline-flex;
921
+ align-items: center;
922
+ justify-content: center;
923
+ width: 18px;
924
+ height: 18px;
925
+ flex: 0 0 auto;
926
+ margin: -3px -5px 0 0;
927
+ border: none;
928
+ border-radius: 50%;
929
+ background: transparent;
930
+ color: var(--text-muted);
931
+ font-size: 16px;
932
+ line-height: 1;
933
+ cursor: pointer;
934
+ transition:
935
+ background var(--duration-fast) var(--ease-in-out),
936
+ color var(--duration-fast) var(--ease-in-out);
937
+ }
938
+
939
+ .bookmark-toast-close:hover,
940
+ .bookmark-toast-close:focus-visible {
941
+ background: var(--surface-hover);
942
+ color: var(--text-primary);
943
+ }
944
+
910
945
  .bookmark-toast-message {
911
946
  margin-top: 4px;
912
947
  color: var(--text-secondary);
@@ -3415,8 +3450,15 @@
3415
3450
  border-bottom-left-radius: var(--radius-sm);
3416
3451
  }
3417
3452
 
3453
+ .message-assistant:has(.markdown-table-scroll) {
3454
+ align-self: stretch;
3455
+ max-width: 100%;
3456
+ }
3457
+
3418
3458
  .markdown-content {
3419
3459
  display: block;
3460
+ max-width: 100%;
3461
+ min-width: 0;
3420
3462
  }
3421
3463
 
3422
3464
  .markdown-content > :first-child {
@@ -3523,10 +3565,25 @@
3523
3565
  margin: 14px 0;
3524
3566
  }
3525
3567
 
3568
+ .markdown-table-scroll {
3569
+ max-width: 100%;
3570
+ margin: 0 0 10px;
3571
+ overflow-x: auto;
3572
+ overflow-y: hidden;
3573
+ border: 1px solid var(--border-glass);
3574
+ border-radius: var(--radius-md);
3575
+ background: color-mix(in srgb, var(--bg-primary) 72%, transparent);
3576
+ scrollbar-gutter: stable;
3577
+ }
3578
+
3579
+ .markdown-content .markdown-table-scroll:last-child {
3580
+ margin-bottom: 0;
3581
+ }
3582
+
3526
3583
  .markdown-content table {
3527
- width: 100%;
3584
+ width: max-content;
3585
+ min-width: 100%;
3528
3586
  border-collapse: collapse;
3529
- margin: 0 0 10px;
3530
3587
  font-size: 12.5px;
3531
3588
  line-height: 1.5;
3532
3589
  }
@@ -3540,12 +3597,14 @@
3540
3597
  font-weight: 600;
3541
3598
  color: var(--text-primary);
3542
3599
  padding: 6px 10px;
3600
+ white-space: nowrap;
3543
3601
  }
3544
3602
 
3545
3603
  .markdown-content td {
3546
3604
  padding: 5px 10px;
3547
3605
  border-bottom: 1px solid var(--border-glass);
3548
3606
  color: var(--text-secondary);
3607
+ white-space: nowrap;
3549
3608
  }
3550
3609
 
3551
3610
  .markdown-content tbody tr:hover {
@@ -5318,6 +5377,126 @@
5318
5377
  color: var(--text-secondary);
5319
5378
  }
5320
5379
 
5380
+ .objectives-card {
5381
+ display: flex;
5382
+ flex-direction: column;
5383
+ gap: 18px;
5384
+ padding: 16px;
5385
+ border: 1px solid var(--border-subtle);
5386
+ border-radius: var(--radius-md);
5387
+ background: var(--surface-glass);
5388
+ }
5389
+
5390
+ .objectives-section {
5391
+ display: flex;
5392
+ flex-direction: column;
5393
+ gap: 8px;
5394
+ }
5395
+
5396
+ .objectives-section + .objectives-section {
5397
+ padding-top: 16px;
5398
+ border-top: 1px solid var(--border-glass);
5399
+ }
5400
+
5401
+ .objectives-section-header {
5402
+ display: flex;
5403
+ align-items: center;
5404
+ justify-content: space-between;
5405
+ gap: 12px;
5406
+ }
5407
+
5408
+ .objectives-section-header span {
5409
+ min-width: 26px;
5410
+ padding: 2px 8px;
5411
+ border-radius: 999px;
5412
+ background: color-mix(in srgb, var(--accent-primary) 12%, transparent);
5413
+ color: var(--text-primary);
5414
+ font-size: 11px;
5415
+ font-weight: 600;
5416
+ text-align: center;
5417
+ }
5418
+
5419
+ .objectives-label {
5420
+ color: var(--text-muted);
5421
+ font-size: 11px;
5422
+ font-weight: 700;
5423
+ letter-spacing: 0;
5424
+ text-transform: uppercase;
5425
+ }
5426
+
5427
+ .objectives-question {
5428
+ color: var(--text-primary);
5429
+ font-size: 13px;
5430
+ line-height: 1.6;
5431
+ }
5432
+
5433
+ .objectives-thread-list {
5434
+ display: flex;
5435
+ flex-direction: column;
5436
+ gap: 8px;
5437
+ margin: 0;
5438
+ padding: 0;
5439
+ list-style: none;
5440
+ }
5441
+
5442
+ .objectives-thread-list li {
5443
+ display: flex;
5444
+ align-items: flex-start;
5445
+ justify-content: space-between;
5446
+ gap: 12px;
5447
+ padding: 10px 11px;
5448
+ border: 1px solid var(--border-glass);
5449
+ border-radius: var(--radius-md);
5450
+ background: color-mix(in srgb, var(--bg-primary) 56%, transparent);
5451
+ }
5452
+
5453
+ .objectives-thread-list li span {
5454
+ color: var(--text-primary);
5455
+ font-size: 12px;
5456
+ line-height: 1.45;
5457
+ }
5458
+
5459
+ .objectives-thread-list li small {
5460
+ flex: 0 0 auto;
5461
+ color: var(--text-muted);
5462
+ font-size: 11px;
5463
+ line-height: 1.45;
5464
+ white-space: nowrap;
5465
+ }
5466
+
5467
+ .objectives-source-list {
5468
+ display: flex;
5469
+ flex-wrap: wrap;
5470
+ gap: 7px;
5471
+ }
5472
+
5473
+ .objectives-source-list span {
5474
+ padding: 4px 8px;
5475
+ border: 1px solid color-mix(in srgb, var(--status-error) 22%, var(--border-glass));
5476
+ border-radius: 999px;
5477
+ background: color-mix(in srgb, var(--status-error) 7%, transparent);
5478
+ color: var(--text-secondary);
5479
+ font-size: 11px;
5480
+ line-height: 1.2;
5481
+ }
5482
+
5483
+ .objectives-settings {
5484
+ gap: 10px;
5485
+ }
5486
+
5487
+ .objectives-settings label {
5488
+ display: flex;
5489
+ align-items: center;
5490
+ gap: 10px;
5491
+ color: var(--text-secondary);
5492
+ font-size: 12px;
5493
+ line-height: 1.4;
5494
+ }
5495
+
5496
+ .objectives-settings input {
5497
+ flex: 0 0 auto;
5498
+ }
5499
+
5321
5500
  .research-premium-notice {
5322
5501
  padding: 9px 10px;
5323
5502
  border: 1px solid var(--border-subtle);
@@ -5472,6 +5651,71 @@
5472
5651
  color: var(--text-secondary);
5473
5652
  }
5474
5653
 
5654
+ .research-active-card {
5655
+ display: flex;
5656
+ align-items: center;
5657
+ gap: 12px;
5658
+ padding: 13px 14px;
5659
+ border: 1px solid color-mix(in srgb, var(--accent-primary) 16%, transparent);
5660
+ border-radius: var(--radius-md);
5661
+ background: color-mix(in srgb, var(--accent-primary) 8%, transparent);
5662
+ }
5663
+
5664
+ .research-active-copy {
5665
+ min-width: 0;
5666
+ }
5667
+
5668
+ .research-active-title {
5669
+ color: var(--text-primary);
5670
+ font-size: 13px;
5671
+ font-weight: 700;
5672
+ line-height: 1.25;
5673
+ }
5674
+
5675
+ .research-active-copy p {
5676
+ margin-top: 3px;
5677
+ }
5678
+
5679
+ .research-thread-progress-list {
5680
+ display: flex;
5681
+ flex-direction: column;
5682
+ gap: 7px;
5683
+ }
5684
+
5685
+ .research-thread-progress {
5686
+ display: flex;
5687
+ align-items: flex-start;
5688
+ justify-content: space-between;
5689
+ gap: 12px;
5690
+ padding: 9px 10px;
5691
+ border: 1px solid var(--border-glass);
5692
+ border-radius: var(--radius-md);
5693
+ background: var(--surface-glass);
5694
+ }
5695
+
5696
+ .research-thread-progress span {
5697
+ color: var(--text-primary);
5698
+ font-size: 12px;
5699
+ line-height: 1.35;
5700
+ }
5701
+
5702
+ .research-thread-progress small {
5703
+ flex: 0 0 auto;
5704
+ color: var(--text-muted);
5705
+ font-size: 11px;
5706
+ line-height: 1.35;
5707
+ text-align: right;
5708
+ }
5709
+
5710
+ .research-thread-progress.completed small {
5711
+ color: var(--status-success);
5712
+ }
5713
+
5714
+ .research-thread-progress.failed small,
5715
+ .research-thread-progress.stopping small {
5716
+ color: var(--status-warning);
5717
+ }
5718
+
5475
5719
  .research-spinner {
5476
5720
  width: 14px;
5477
5721
  height: 14px;
@@ -5482,6 +5726,11 @@
5482
5726
  animation: research-spin 0.7s linear infinite;
5483
5727
  }
5484
5728
 
5729
+ .research-spinner.research-active-spinner {
5730
+ width: 18px;
5731
+ height: 18px;
5732
+ }
5733
+
5485
5734
  .research-loading-title {
5486
5735
  color: var(--text-primary);
5487
5736
  font-size: 12px;
@@ -5523,7 +5772,10 @@
5523
5772
  color: var(--text-secondary);
5524
5773
  font-size: 11px;
5525
5774
  font-weight: 500;
5526
- line-height: 1;
5775
+ line-height: 1.25;
5776
+ max-width: 100%;
5777
+ white-space: normal;
5778
+ text-align: left;
5527
5779
  transition:
5528
5780
  border-color var(--duration-fast) var(--ease-in-out),
5529
5781
  color var(--duration-fast) var(--ease-in-out),