coxpit 5.3.0 → 5.3.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/board.ts +12 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coxpit",
3
- "version": "5.3.0",
3
+ "version": "5.3.1",
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": "MIT",
package/src/board.ts CHANGED
@@ -339,20 +339,21 @@ export const BOARD_HTML = /* html */ `<!doctype html>
339
339
  /* v5.1 Documents (문서함) — grouped by run, list only, no cards */
340
340
  #docbox .db-sub,#setbox .db-sub{color:var(--muted);font-size:13px;margin:0 0 14px}
341
341
  #setbox .db-sub code{font-family:var(--mono);color:var(--brand);font-size:12px}
342
- .set-list{max-width:620px;display:flex;flex-direction:column;gap:14px}
343
- .set-sec{border:1px solid var(--line);border-radius:10px;background:var(--surface);padding:14px 16px}
342
+ .set-list{max-width:620px;min-width:0;display:flex;flex-direction:column;gap:14px}
343
+ .set-sec{border:1px solid var(--line);border-radius:10px;background:var(--surface);padding:14px 16px;min-width:0}
344
344
  .set-h{font-family:var(--mono);font-size:11px;text-transform:uppercase;letter-spacing:.12em;color:var(--faint);margin:0 0 12px}
345
345
  .set-row{display:flex;align-items:center;gap:12px;margin-bottom:10px}
346
- .set-lbl{flex:0 0 140px;font-size:13px;color:var(--muted)}
347
- .set-row input:not([type=checkbox]),.set-row select{flex:1;background:#0e1118;border:1px solid var(--line);border-radius:7px;
346
+ .set-lbl{flex:0 0 150px;font-size:13px;color:var(--muted)}
347
+ .set-row input:not([type=checkbox]),.set-row select{flex:1;box-sizing:border-box;max-width:100%;background:#0e1118;border:1px solid var(--line);border-radius:7px;
348
348
  color:var(--ink);font-family:var(--mono);font-size:13px;padding:8px 10px;outline:none;min-width:0}
349
349
  .set-row input:focus,.set-row select:focus{border-color:var(--brand)}
350
- .set-row input:disabled,.set-row select:disabled{opacity:.5;cursor:not-allowed}
350
+ .set-row input:disabled,.set-row select:disabled,.set-check input:disabled{opacity:.4;cursor:not-allowed;background:#0b0d12}
351
+ .set-check input:disabled ~ span{opacity:.5}
351
352
  .set-check{align-items:flex-start;gap:10px}
352
353
  .set-check input[type=checkbox]{flex:0 0 auto;width:15px;height:15px;margin:2px 0 0;accent-color:var(--brand)}
353
354
  .set-check span{flex:1;min-width:0;font-size:12.5px;color:var(--muted);line-height:1.5}
354
355
  .set-note{font-size:11.5px;color:var(--faint);margin-top:6px}
355
- .set-lock{font-family:var(--mono);font-size:10px;color:var(--s-preparing);margin-left:6px}
356
+ .set-lock{display:block;font-family:var(--mono);font-size:10px;color:var(--s-preparing);margin-top:2px;text-transform:none;letter-spacing:0}
356
357
  .set-state{font-size:12.5px;color:var(--ink);margin-bottom:10px}
357
358
  .set-actions{display:flex;gap:8px;margin-top:4px}
358
359
  .set-kv{display:flex;justify-content:space-between;gap:12px;font-family:var(--mono);font-size:12px;padding:3px 0;color:var(--muted)}
@@ -856,6 +857,11 @@ export const BOARD_HTML = /* html */ `<!doctype html>
856
857
  /* 온보딩 패널이 좁은 화면을 넘치지 않게 */
857
858
  .empty{padding:24px 0}
858
859
  .setup{max-width:100%;width:100%;margin:8px 0}
860
+ /* Settings — 좁은 화면에선 라벨 위/인풋 아래로 스택(가로 넘침 방지) */
861
+ .set-row:not(.set-check){flex-direction:column;align-items:stretch;gap:6px}
862
+ .set-row:not(.set-check) .set-lbl{flex:auto}
863
+ .set-kv{flex-direction:column;gap:2px}
864
+ .set-kv b{text-align:left}
859
865
  .chk .v{min-width:0}
860
866
  .cmp{flex-direction:column;overflow-y:auto;overflow-x:hidden}
861
867
  .cmp-col{min-width:0;border-right:none;border-bottom:1px solid var(--line);flex:0 0 auto;max-height:72vh}