coxpit 5.14.2 → 5.14.3
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.
- package/package.json +1 -1
- package/src/board.ts +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coxpit",
|
|
3
|
-
"version": "5.14.
|
|
3
|
+
"version": "5.14.3",
|
|
4
4
|
"description": "Self-hosted cockpit for running a fleet of AI coding agents across your own machines — parallel worktree runs, live board, compare & merge, web terminal, design capture.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
package/src/board.ts
CHANGED
|
@@ -6,7 +6,7 @@ export const BOARD_HTML = /* html */ `<!doctype html>
|
|
|
6
6
|
<html lang="en">
|
|
7
7
|
<head>
|
|
8
8
|
<meta charset="utf-8" />
|
|
9
|
-
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
|
9
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover" />
|
|
10
10
|
<title>coxpit · fleet</title>
|
|
11
11
|
<link rel="icon" href="/brand/favicon.ico" sizes="any" />
|
|
12
12
|
<link rel="icon" type="image/png" sizes="32x32" href="/brand/favicon-32.png" />
|
|
@@ -846,8 +846,12 @@ export const BOARD_HTML = /* html */ `<!doctype html>
|
|
|
846
846
|
#newBtn,.newnote{display:none}
|
|
847
847
|
header{padding:0 12px;gap:9px}
|
|
848
848
|
.brand .sub,.daemon-badge,.machines{display:none}
|
|
849
|
-
/* cockpit(터미널)
|
|
850
|
-
.cockpit-link{display:inline-flex;margin-left:auto
|
|
849
|
+
/* cockpit(터미널) 링크 = 모바일에선 유일한 터미널 진입로 → 브랜드로 강조 */
|
|
850
|
+
.cockpit-link{display:inline-flex;margin-left:auto;background:var(--brand);color:var(--brand-ink);
|
|
851
|
+
border-color:var(--brand);font-weight:700;font-size:12px;padding:6px 11px}
|
|
852
|
+
.cockpit-link:hover{color:var(--brand-ink)}
|
|
853
|
+
/* 아이콘화 — 헤더 텍스트 라벨은 줄이고 아이콘 위주 */
|
|
854
|
+
.brand .wm{font-size:15px}
|
|
851
855
|
main{padding:14px}
|
|
852
856
|
.grid{grid-template-columns:1fr}
|
|
853
857
|
/* 모달 = 풀블리드 */
|