@quanta-intellect/vessel-browser 0.1.18 → 0.1.20

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.
@@ -49,6 +49,66 @@
49
49
  transform: scale(0.92);
50
50
  }
51
51
 
52
+ /* MCP status indicator */
53
+ .mcp-status-area {
54
+ position: relative;
55
+ z-index: 1;
56
+ -webkit-app-region: no-drag;
57
+ margin-right: 8px;
58
+ }
59
+
60
+ .mcp-status-indicator {
61
+ display: flex;
62
+ align-items: center;
63
+ gap: 5px;
64
+ height: 22px;
65
+ padding: 0 8px;
66
+ border-radius: 999px;
67
+ border: none;
68
+ background: rgba(255, 255, 255, 0.04);
69
+ cursor: pointer;
70
+ transition: background var(--duration-fast) var(--ease-in-out);
71
+ }
72
+
73
+ .mcp-status-indicator:hover {
74
+ background: rgba(255, 255, 255, 0.08);
75
+ }
76
+
77
+ .mcp-dot {
78
+ width: 6px;
79
+ height: 6px;
80
+ border-radius: 50%;
81
+ flex-shrink: 0;
82
+ }
83
+
84
+ .mcp-label {
85
+ font-size: 10px;
86
+ font-weight: 500;
87
+ letter-spacing: 0.03em;
88
+ color: var(--text-muted);
89
+ }
90
+
91
+ .mcp-ready .mcp-dot {
92
+ background: #4ade80;
93
+ box-shadow: 0 0 4px rgba(74, 222, 128, 0.4);
94
+ }
95
+
96
+ .mcp-error .mcp-dot {
97
+ background: #f87171;
98
+ box-shadow: 0 0 4px rgba(248, 113, 113, 0.4);
99
+ }
100
+
101
+ .mcp-starting .mcp-dot {
102
+ background: #fbbf24;
103
+ box-shadow: 0 0 4px rgba(251, 191, 36, 0.4);
104
+ animation: mcp-pulse 1.5s ease-in-out infinite;
105
+ }
106
+
107
+ @keyframes mcp-pulse {
108
+ 0%, 100% { opacity: 1; }
109
+ 50% { opacity: 0.4; }
110
+ }
111
+
52
112
  .window-btn-close:hover {
53
113
  background: var(--error);
54
114
  color: white;
@@ -980,6 +1040,56 @@
980
1040
  font-weight: 500;
981
1041
  }
982
1042
 
1043
+ .command-bar-no-provider {
1044
+ padding: 14px 18px;
1045
+ border-top: 1px solid var(--border-subtle);
1046
+ text-align: center;
1047
+ }
1048
+
1049
+ .command-bar-no-provider p {
1050
+ font-size: 12px;
1051
+ color: var(--text-secondary);
1052
+ margin: 0 0 10px;
1053
+ line-height: 1.5;
1054
+ }
1055
+
1056
+ .command-bar-no-provider-btn {
1057
+ height: 32px;
1058
+ padding: 0 16px;
1059
+ border-radius: var(--radius-md);
1060
+ font-size: 12px;
1061
+ font-weight: 500;
1062
+ background: var(--accent-primary);
1063
+ color: white;
1064
+ border: none;
1065
+ cursor: pointer;
1066
+ transition: background var(--duration-fast) var(--ease-in-out),
1067
+ transform var(--duration-fast) var(--ease-out-expo);
1068
+ }
1069
+
1070
+ .command-bar-no-provider-btn:hover {
1071
+ background: #d4b06a;
1072
+ }
1073
+
1074
+ .command-bar-no-provider-btn:active {
1075
+ transform: scale(0.97);
1076
+ }
1077
+
1078
+ .command-bar-no-provider-btn kbd {
1079
+ margin-left: 6px;
1080
+ background: rgba(255, 255, 255, 0.15);
1081
+ border: 1px solid rgba(255, 255, 255, 0.1);
1082
+ padding: 1px 5px;
1083
+ border-radius: 3px;
1084
+ font-family: var(--font-ui);
1085
+ font-size: 10px;
1086
+ }
1087
+
1088
+ .command-bar-input:disabled {
1089
+ opacity: 0.5;
1090
+ cursor: default;
1091
+ }
1092
+
983
1093
 
984
1094
  /* ═══════════════════════════════════════
985
1095
  Sidebar — refined panel
@@ -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-DAaJOss-.js"></script>
9
- <link rel="stylesheet" crossorigin href="./assets/index-DMd-y6tm.css">
8
+ <script type="module" crossorigin src="./assets/index-CKOT_IZt.js"></script>
9
+ <link rel="stylesheet" crossorigin href="./assets/index-DwRZftNk.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.18",
4
+ "version": "0.1.20",
5
5
  "description": "AI-native web browser for Linux — persistent browser runtime for autonomous agents with human supervision",
6
6
  "main": "./out/main/index.js",
7
7
  "bin": {