coxpit 5.14.3 → 5.14.4
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 +5 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coxpit",
|
|
3
|
-
"version": "5.14.
|
|
3
|
+
"version": "5.14.4",
|
|
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
|
@@ -57,9 +57,8 @@ export const BOARD_HTML = /* html */ `<!doctype html>
|
|
|
57
57
|
.daemon-badge{font-family:var(--mono);font-size:10.5px;color:var(--faint);padding:3px 9px;
|
|
58
58
|
border:1px solid var(--line);border-radius:999px;background:var(--surface);cursor:default}
|
|
59
59
|
.daemon-badge b{color:var(--muted);font-weight:500}
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
.cockpit-link:hover{color:var(--brand);border-color:var(--line-hi)}
|
|
60
|
+
/* Cockpit(터미널) 링크 = 헤더의 다른 고스트 아이콘 버튼(bell·remote)과 동일한 디자인. 아이콘 정렬만 추가 */
|
|
61
|
+
.cockpit-link{text-decoration:none;display:inline-flex;align-items:center;justify-content:center}
|
|
63
62
|
.ws{display:flex;align-items:center;gap:7px;font-family:var(--mono);font-size:11px;color:var(--muted);
|
|
64
63
|
padding:4px 10px;border:1px solid var(--line);border-radius:999px;background:var(--surface)}
|
|
65
64
|
.dot{width:7px;height:7px;border-radius:50%;background:var(--s-failed);transition:background .3s}
|
|
@@ -846,11 +845,8 @@ export const BOARD_HTML = /* html */ `<!doctype html>
|
|
|
846
845
|
#newBtn,.newnote{display:none}
|
|
847
846
|
header{padding:0 12px;gap:9px}
|
|
848
847
|
.brand .sub,.daemon-badge,.machines{display:none}
|
|
849
|
-
/* cockpit(터미널)
|
|
850
|
-
.cockpit-link{display:inline-flex;margin-left:auto
|
|
851
|
-
border-color:var(--brand);font-weight:700;font-size:12px;padding:6px 11px}
|
|
852
|
-
.cockpit-link:hover{color:var(--brand-ink)}
|
|
853
|
-
/* 아이콘화 — 헤더 텍스트 라벨은 줄이고 아이콘 위주 */
|
|
848
|
+
/* cockpit(터미널) 링크는 모바일에서도 보이게(다른 고스트 아이콘 버튼과 동일 디자인, 강조/채움 없음) */
|
|
849
|
+
.cockpit-link{display:inline-flex;margin-left:auto}
|
|
854
850
|
.brand .wm{font-size:15px}
|
|
855
851
|
main{padding:14px}
|
|
856
852
|
.grid{grid-template-columns:1fr}
|
|
@@ -888,7 +884,7 @@ ${ICON_SPRITE}
|
|
|
888
884
|
<div class="ws"><span class="dot" id="wsdot"></span><span id="wstext">connecting</span></div>
|
|
889
885
|
<button class="btn-ghost sm" id="bell" title="notify when a run settles"><svg class="ic"><use href="#i-bell-off"/></svg></button>
|
|
890
886
|
<button class="btn-ghost sm" id="remoteBtn" title="reach this daemon from elsewhere (Tailscale · recipes)"><svg class="ic"><use href="#i-external-link"/></svg></button>
|
|
891
|
-
<a class="cockpit-link" href="/cockpit" title="
|
|
887
|
+
<a class="btn-ghost sm cockpit-link" href="/cockpit" title="Cockpit — 터미널 워크스페이스"><svg class="ic"><use href="#i-terminal"/></svg></a>
|
|
892
888
|
<div class="machines" id="machines"></div>
|
|
893
889
|
</header>
|
|
894
890
|
<div class="scrim" id="scrim"></div>
|