coxpit 5.12.0 → 5.12.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/cockpit.ts +7 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coxpit",
3
- "version": "5.12.0",
3
+ "version": "5.12.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": "SEE LICENSE IN LICENSE.md",
package/src/cockpit.ts CHANGED
@@ -101,7 +101,7 @@ export const COCKPIT_HTML = /* html */ `<!doctype html>
101
101
  .gutter.row{width:5px;cursor:col-resize} .gutter.col{height:5px;cursor:row-resize}
102
102
  .gutter:hover,.gutter.drag{background:var(--brand)}
103
103
  .leaf{display:flex;flex-direction:column;min-width:0;min-height:0;overflow:hidden;flex:1 1 0;background:var(--bg)}
104
- .leaf.focus{box-shadow:inset 0 0 0 1px rgba(78,201,176,.45)}
104
+ /* 포커스 표시는 헤더 배경으로만 — 전체 inset 링은 터미널 안쪽 우/하단에 방해되는 선을 만든다 */
105
105
  .leaf.drop{box-shadow:inset 0 0 0 2px var(--brand)}
106
106
  .leaf-h{display:flex;align-items:center;gap:8px;height:26px;padding:0 6px 0 10px;background:var(--surface);border-bottom:1px solid var(--line);font-family:var(--mono);font-size:11px;color:var(--muted);flex:none;cursor:pointer}
107
107
  .leaf.focus .leaf-h{background:var(--brand-dim)}
@@ -125,6 +125,12 @@ export const COCKPIT_HTML = /* html */ `<!doctype html>
125
125
  .leaf-empty{flex:1;display:flex;align-items:center;justify-content:center;color:var(--faint);font-family:var(--mono);font-size:11.5px;text-align:center;padding:12px}
126
126
  .term-host{flex:1;min-height:0;min-width:0;padding:4px 2px 2px 8px}
127
127
  .term-host .xterm{height:100%}
128
+ /* xterm 스크롤바 — 기본 밝은 트랙이 우측에 하얀 세로선처럼 보임. 어둡게/투명 처리 */
129
+ .term-host .xterm-viewport{scrollbar-width:thin;scrollbar-color:var(--line-hi) transparent;background-color:transparent!important}
130
+ .term-host .xterm-viewport::-webkit-scrollbar{width:8px}
131
+ .term-host .xterm-viewport::-webkit-scrollbar-track{background:transparent}
132
+ .term-host .xterm-viewport::-webkit-scrollbar-thumb{background:var(--line-hi);border-radius:4px}
133
+ .term-host .xterm-viewport::-webkit-scrollbar-thumb:hover{background:var(--faint)}
128
134
 
129
135
  .empty{flex:1;display:flex;align-items:center;justify-content:center;text-align:center;padding:24px}
130
136
  .empty .card{max-width:440px}