@quanta-intellect/vessel-browser 0.1.69 → 0.1.71
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.
|
@@ -359,6 +359,25 @@
|
|
|
359
359
|
transform: scale(0.95);
|
|
360
360
|
}
|
|
361
361
|
|
|
362
|
+
.tab-new-private {
|
|
363
|
+
color: var(--text-muted);
|
|
364
|
+
opacity: 0.6;
|
|
365
|
+
font-size: 11px;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.tab-new-private:hover {
|
|
369
|
+
color: var(--accent-primary);
|
|
370
|
+
opacity: 1;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.tab-actions {
|
|
374
|
+
display: flex;
|
|
375
|
+
align-items: end;
|
|
376
|
+
gap: 1px;
|
|
377
|
+
flex-shrink: 0;
|
|
378
|
+
padding-bottom: 1px;
|
|
379
|
+
}
|
|
380
|
+
|
|
362
381
|
|
|
363
382
|
/* ═══════════════════════════════════════
|
|
364
383
|
Address bar — refined URL shell
|
|
@@ -435,7 +454,8 @@
|
|
|
435
454
|
background: var(--bg-secondary);
|
|
436
455
|
border: 1px solid var(--border-subtle);
|
|
437
456
|
border-radius: var(--radius-md);
|
|
438
|
-
overflow:
|
|
457
|
+
overflow: visible;
|
|
458
|
+
position: relative;
|
|
439
459
|
transition:
|
|
440
460
|
border-color var(--duration-normal) var(--ease-in-out),
|
|
441
461
|
box-shadow var(--duration-normal) var(--ease-in-out),
|
|
@@ -477,6 +497,94 @@
|
|
|
477
497
|
color: var(--text-muted);
|
|
478
498
|
}
|
|
479
499
|
|
|
500
|
+
/* Autocomplete dropdown */
|
|
501
|
+
|
|
502
|
+
.autocomplete-dropdown {
|
|
503
|
+
position: absolute;
|
|
504
|
+
top: 100%;
|
|
505
|
+
left: 0;
|
|
506
|
+
right: 0;
|
|
507
|
+
z-index: 100;
|
|
508
|
+
background: var(--bg-secondary);
|
|
509
|
+
border: 1px solid var(--border-subtle);
|
|
510
|
+
border-top: none;
|
|
511
|
+
border-radius: 0 0 var(--radius-md) var(--radius-md);
|
|
512
|
+
max-height: 280px;
|
|
513
|
+
overflow-y: auto;
|
|
514
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.autocomplete-item {
|
|
518
|
+
display: flex;
|
|
519
|
+
align-items: center;
|
|
520
|
+
gap: 8px;
|
|
521
|
+
padding: 6px 12px;
|
|
522
|
+
cursor: pointer;
|
|
523
|
+
transition: background var(--duration-fast) var(--ease-in-out);
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
.autocomplete-item:hover,
|
|
527
|
+
.autocomplete-item.selected {
|
|
528
|
+
background: var(--surface-hover);
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
.autocomplete-item.selected {
|
|
532
|
+
background: color-mix(in srgb, var(--accent-primary) 12%, transparent);
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.autocomplete-icon {
|
|
536
|
+
flex-shrink: 0;
|
|
537
|
+
width: 16px;
|
|
538
|
+
text-align: center;
|
|
539
|
+
color: var(--text-muted);
|
|
540
|
+
font-size: 11px;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.autocomplete-text {
|
|
544
|
+
display: flex;
|
|
545
|
+
flex-direction: column;
|
|
546
|
+
min-width: 0;
|
|
547
|
+
gap: 1px;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.autocomplete-title {
|
|
551
|
+
font-size: 12px;
|
|
552
|
+
color: var(--text-primary);
|
|
553
|
+
white-space: nowrap;
|
|
554
|
+
overflow: hidden;
|
|
555
|
+
text-overflow: ellipsis;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
.autocomplete-url {
|
|
559
|
+
font-size: 10.5px;
|
|
560
|
+
color: var(--text-muted);
|
|
561
|
+
white-space: nowrap;
|
|
562
|
+
overflow: hidden;
|
|
563
|
+
text-overflow: ellipsis;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.private-badge {
|
|
567
|
+
display: flex;
|
|
568
|
+
align-items: center;
|
|
569
|
+
gap: 4px;
|
|
570
|
+
padding: 2px 8px;
|
|
571
|
+
margin: 0 4px;
|
|
572
|
+
background: color-mix(in srgb, var(--accent-primary) 15%, transparent);
|
|
573
|
+
border: 1px solid color-mix(in srgb, var(--accent-primary) 30%, transparent);
|
|
574
|
+
border-radius: var(--radius-sm);
|
|
575
|
+
color: var(--accent-primary);
|
|
576
|
+
font-size: 10.5px;
|
|
577
|
+
font-weight: 600;
|
|
578
|
+
letter-spacing: 0.03em;
|
|
579
|
+
white-space: nowrap;
|
|
580
|
+
flex-shrink: 0;
|
|
581
|
+
user-select: none;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.private-badge svg {
|
|
585
|
+
opacity: 0.8;
|
|
586
|
+
}
|
|
587
|
+
|
|
480
588
|
.agent-status-badge {
|
|
481
589
|
display: flex;
|
|
482
590
|
align-items: center;
|
|
@@ -5464,19 +5572,28 @@ button:active:not(:disabled) {
|
|
|
5464
5572
|
bottom: calc(100% + 6px);
|
|
5465
5573
|
left: 50%;
|
|
5466
5574
|
transform: translateX(-50%) translateY(4px);
|
|
5467
|
-
|
|
5575
|
+
min-height: 24px;
|
|
5576
|
+
width: max-content;
|
|
5577
|
+
max-width: min(240px, calc(100vw - 24px));
|
|
5578
|
+
padding: 6px 10px;
|
|
5468
5579
|
border-radius: var(--radius-md);
|
|
5469
5580
|
background: var(--bg-elevated);
|
|
5581
|
+
background-clip: padding-box;
|
|
5470
5582
|
border: 1px solid var(--border-visible);
|
|
5471
5583
|
color: var(--text-primary);
|
|
5472
5584
|
font-size: 11px;
|
|
5473
|
-
font-weight:
|
|
5474
|
-
line-height: 1.
|
|
5475
|
-
|
|
5585
|
+
font-weight: 600;
|
|
5586
|
+
line-height: 1.45;
|
|
5587
|
+
letter-spacing: 0;
|
|
5588
|
+
text-align: center;
|
|
5589
|
+
white-space: normal;
|
|
5590
|
+
overflow-wrap: break-word;
|
|
5476
5591
|
pointer-events: none;
|
|
5477
5592
|
opacity: 0;
|
|
5478
|
-
z-index:
|
|
5479
|
-
box-shadow:
|
|
5593
|
+
z-index: 2147483647;
|
|
5594
|
+
box-shadow:
|
|
5595
|
+
0 8px 24px var(--shadow-color-strong),
|
|
5596
|
+
0 0 0 1px color-mix(in srgb, var(--bg-primary) 70%, transparent);
|
|
5480
5597
|
transition:
|
|
5481
5598
|
opacity var(--duration-normal) var(--ease-in-out),
|
|
5482
5599
|
transform var(--duration-normal) var(--ease-out-expo);
|
package/out/renderer/index.html
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self'; font-src 'self' data:;" />
|
|
7
7
|
<title>Vessel</title>
|
|
8
|
-
<script type="module" crossorigin src="./assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
8
|
+
<script type="module" crossorigin src="./assets/index-DbnD-fG3.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="./assets/index-wmYomTVM.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quanta-intellect/vessel-browser",
|
|
3
3
|
"mcpName": "io.github.unmodeled-tyler/vessel-browser",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.71",
|
|
5
5
|
"description": "AI-native web browser runtime for autonomous agents with human supervision",
|
|
6
6
|
"main": "./out/main/index.js",
|
|
7
7
|
"bin": {
|