@quanta-intellect/vessel-browser 0.1.71 → 0.1.73

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.
@@ -195,6 +195,19 @@
195
195
  }
196
196
  }
197
197
 
198
+ .tab-item.pinned {
199
+ max-width: 40px;
200
+ min-width: 36px;
201
+ padding: 0 10px;
202
+ justify-content: center;
203
+ }
204
+
205
+ .tab-item.pinned .tab-favicon,
206
+ .tab-item.pinned .tab-favicon-fallback {
207
+ width: 14px;
208
+ height: 14px;
209
+ }
210
+
198
211
  .tab-item:hover {
199
212
  background: var(--surface-hover);
200
213
  color: var(--text-secondary);
@@ -206,6 +219,85 @@
206
219
  font-weight: 500;
207
220
  }
208
221
 
222
+ .tab-item.group-blue,
223
+ .tab-group-chip.group-blue { --tab-group-color: #4b8dff; }
224
+ .tab-item.group-green,
225
+ .tab-group-chip.group-green { --tab-group-color: #45b36b; }
226
+ .tab-item.group-yellow,
227
+ .tab-group-chip.group-yellow { --tab-group-color: #d9b441; }
228
+ .tab-item.group-orange,
229
+ .tab-group-chip.group-orange { --tab-group-color: #df8742; }
230
+ .tab-item.group-red,
231
+ .tab-group-chip.group-red { --tab-group-color: #e35d6a; }
232
+ .tab-item.group-purple,
233
+ .tab-group-chip.group-purple { --tab-group-color: #9b73f0; }
234
+ .tab-item.group-gray,
235
+ .tab-group-chip.group-gray { --tab-group-color: #8b95a1; }
236
+
237
+ .tab-item[class*="group-"] {
238
+ box-shadow: inset 0 2px 0 color-mix(in srgb, var(--tab-group-color) 78%, transparent);
239
+ }
240
+
241
+ .tab-group-chip {
242
+ display: inline-flex;
243
+ align-items: center;
244
+ gap: 6px;
245
+ height: 24px;
246
+ max-width: 150px;
247
+ margin-bottom: 3px;
248
+ padding: 0 8px;
249
+ border-radius: 6px;
250
+ color: var(--text-secondary);
251
+ background: color-mix(in srgb, var(--tab-group-color) 18%, var(--bg-secondary));
252
+ border: 1px solid color-mix(in srgb, var(--tab-group-color) 48%, transparent);
253
+ flex-shrink: 0;
254
+ transition:
255
+ background var(--duration-fast) var(--ease-in-out),
256
+ color var(--duration-fast) var(--ease-in-out),
257
+ transform var(--duration-fast) var(--ease-out-expo);
258
+ }
259
+
260
+ .tab-group-chip:hover {
261
+ color: var(--text-primary);
262
+ background: color-mix(in srgb, var(--tab-group-color) 26%, var(--bg-secondary));
263
+ }
264
+
265
+ .tab-group-chip:active {
266
+ transform: scale(0.96);
267
+ }
268
+
269
+ .tab-group-chip.collapsed {
270
+ background: color-mix(in srgb, var(--tab-group-color) 12%, var(--bg-secondary));
271
+ }
272
+
273
+ .tab-group-dot {
274
+ width: 7px;
275
+ height: 7px;
276
+ border-radius: 999px;
277
+ background: var(--tab-group-color);
278
+ flex-shrink: 0;
279
+ }
280
+
281
+ .tab-group-name {
282
+ min-width: 0;
283
+ overflow: hidden;
284
+ text-overflow: ellipsis;
285
+ font-size: 10.5px;
286
+ font-weight: 600;
287
+ }
288
+
289
+ .tab-group-count {
290
+ min-width: 14px;
291
+ height: 14px;
292
+ padding: 0 4px;
293
+ border-radius: 999px;
294
+ background: color-mix(in srgb, var(--tab-group-color) 28%, transparent);
295
+ color: var(--text-muted);
296
+ font-size: 9px;
297
+ font-weight: 700;
298
+ line-height: 14px;
299
+ }
300
+
209
301
  /* Subtle top accent line on active tab */
210
302
  .tab-item.active::before {
211
303
  content: '';
@@ -302,6 +394,42 @@
302
394
  color: var(--text-primary);
303
395
  }
304
396
 
397
+ .tab-audio {
398
+ width: 18px;
399
+ height: 18px;
400
+ display: inline-flex;
401
+ align-items: center;
402
+ justify-content: center;
403
+ border-radius: var(--radius-sm);
404
+ color: var(--accent-primary);
405
+ flex-shrink: 0;
406
+ margin-right: -2px;
407
+ transition:
408
+ background var(--duration-fast) var(--ease-in-out),
409
+ color var(--duration-fast) var(--ease-in-out),
410
+ transform var(--duration-fast) var(--ease-out-expo);
411
+ }
412
+
413
+ .tab-audio:hover {
414
+ background: var(--surface-active);
415
+ color: var(--text-primary);
416
+ }
417
+
418
+ .tab-audio:active {
419
+ transform: scale(0.9);
420
+ }
421
+
422
+ .tab-audio-pinned {
423
+ position: absolute;
424
+ right: 0;
425
+ bottom: 1px;
426
+ width: 14px;
427
+ height: 14px;
428
+ margin: 0;
429
+ background: var(--bg-primary);
430
+ box-shadow: 0 0 0 1px var(--border-subtle);
431
+ }
432
+
305
433
  .tab-loading {
306
434
  width: 8px;
307
435
  height: 8px;
@@ -2055,6 +2183,7 @@
2055
2183
  }
2056
2184
 
2057
2185
  .bookmark-save-card,
2186
+ .bookmark-export-card,
2058
2187
  .bookmark-folder-section {
2059
2188
  display: flex;
2060
2189
  flex-direction: column;
@@ -2065,6 +2194,19 @@
2065
2194
  border: 1px solid var(--border-glass);
2066
2195
  }
2067
2196
 
2197
+ .bookmark-export-actions {
2198
+ display: flex;
2199
+ gap: 6px;
2200
+ flex-wrap: wrap;
2201
+ }
2202
+
2203
+ .bookmark-export-message {
2204
+ font-size: 11px;
2205
+ color: var(--text-secondary);
2206
+ line-height: 1.4;
2207
+ overflow-wrap: anywhere;
2208
+ }
2209
+
2068
2210
  .bookmark-save-shell {
2069
2211
  display: flex;
2070
2212
  flex-direction: column;
@@ -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-DbnD-fG3.js"></script>
9
- <link rel="stylesheet" crossorigin href="./assets/index-wmYomTVM.css">
8
+ <script type="module" crossorigin src="./assets/index-C2iAShPa.js"></script>
9
+ <link rel="stylesheet" crossorigin href="./assets/index-MB-_tN9U.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.71",
4
+ "version": "0.1.73",
5
5
  "description": "AI-native web browser runtime for autonomous agents with human supervision",
6
6
  "main": "./out/main/index.js",
7
7
  "bin": {