@pat-lewczuk/cezar 0.1.3 → 0.1.5
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/README.md +124 -37
- package/dist/config.d.ts +46 -0
- package/dist/config.js +31 -0
- package/dist/config.js.map +1 -1
- package/dist/core/agent-runner.d.ts +16 -0
- package/dist/core/agent-runner.js +9 -0
- package/dist/core/agent-runner.js.map +1 -1
- package/dist/core/claude-cli-runner.d.ts +6 -0
- package/dist/core/claude-cli-runner.js +27 -43
- package/dist/core/claude-cli-runner.js.map +1 -1
- package/dist/core/claude-ui-mapper.d.ts +57 -0
- package/dist/core/claude-ui-mapper.js +370 -0
- package/dist/core/claude-ui-mapper.js.map +1 -0
- package/dist/core/codex-app-server-runner.js +42 -5
- package/dist/core/codex-app-server-runner.js.map +1 -1
- package/dist/core/codex-ui-mapper.d.ts +53 -0
- package/dist/core/codex-ui-mapper.js +411 -0
- package/dist/core/codex-ui-mapper.js.map +1 -0
- package/dist/core/opencode-server-runner.js +42 -5
- package/dist/core/opencode-server-runner.js.map +1 -1
- package/dist/core/opencode-ui-mapper.d.ts +105 -0
- package/dist/core/opencode-ui-mapper.js +578 -0
- package/dist/core/opencode-ui-mapper.js.map +1 -0
- package/dist/core/process-usage.d.ts +63 -0
- package/dist/core/process-usage.js +181 -0
- package/dist/core/process-usage.js.map +1 -0
- package/dist/core/tool-display.d.ts +27 -0
- package/dist/core/tool-display.js +150 -0
- package/dist/core/tool-display.js.map +1 -0
- package/dist/core/ui-events.d.ts +294 -0
- package/dist/core/ui-events.js +25 -0
- package/dist/core/ui-events.js.map +1 -0
- package/dist/git-worktree.d.ts +21 -0
- package/dist/git-worktree.js +48 -4
- package/dist/git-worktree.js.map +1 -1
- package/dist/handoff.d.ts +1 -1
- package/dist/handoff.js +2 -0
- package/dist/handoff.js.map +1 -1
- package/dist/index.js +34 -4
- package/dist/index.js.map +1 -1
- package/dist/pack-check.d.ts +17 -0
- package/dist/pack-check.js +27 -0
- package/dist/pack-check.js.map +1 -0
- package/dist/runs/store.d.ts +82 -1
- package/dist/runs/store.js +57 -5
- package/dist/runs/store.js.map +1 -1
- package/dist/runs/title-summary.d.ts +15 -0
- package/dist/runs/title-summary.js +84 -0
- package/dist/runs/title-summary.js.map +1 -0
- package/dist/runs/ui-event-sink.d.ts +81 -0
- package/dist/runs/ui-event-sink.js +210 -0
- package/dist/runs/ui-event-sink.js.map +1 -0
- package/dist/server/capabilities.d.ts +18 -0
- package/dist/server/capabilities.js +23 -0
- package/dist/server/capabilities.js.map +1 -0
- package/dist/server/forge/github.d.ts +39 -0
- package/dist/server/forge/github.js +369 -0
- package/dist/server/forge/github.js.map +1 -0
- package/dist/server/forge/index.d.ts +24 -0
- package/dist/server/forge/index.js +45 -0
- package/dist/server/forge/index.js.map +1 -0
- package/dist/server/forge/types.d.ts +80 -0
- package/dist/server/forge/types.js +2 -0
- package/dist/server/forge/types.js.map +1 -0
- package/dist/server/git-changes.d.ts +182 -0
- package/dist/server/git-changes.js +424 -0
- package/dist/server/git-changes.js.map +1 -0
- package/dist/server/git.js +12 -1
- package/dist/server/git.js.map +1 -1
- package/dist/server/github.d.ts +8 -29
- package/dist/server/github.js +7 -139
- package/dist/server/github.js.map +1 -1
- package/dist/server/open-in-app.d.ts +19 -0
- package/dist/server/open-in-app.js +134 -0
- package/dist/server/open-in-app.js.map +1 -0
- package/dist/server/pr.d.ts +5 -20
- package/dist/server/pr.js +4 -95
- package/dist/server/pr.js.map +1 -1
- package/dist/server/server.d.ts +30 -1
- package/dist/server/server.js +448 -19
- package/dist/server/server.js.map +1 -1
- package/dist/server/static-ui.d.ts +49 -0
- package/dist/server/static-ui.js +92 -0
- package/dist/server/static-ui.js.map +1 -0
- package/dist/update-check.d.ts +12 -0
- package/dist/update-check.js +41 -0
- package/dist/update-check.js.map +1 -0
- package/dist/workflows/run.d.ts +90 -0
- package/dist/workflows/run.js +412 -29
- package/dist/workflows/run.js.map +1 -1
- package/dist/workflows/types.d.ts +16 -16
- package/package.json +44 -6
- package/scripts/check-pack.mjs +46 -0
- package/scripts/dev.mjs +74 -0
- package/scripts/mock-claude.mjs +54 -2
- package/scripts/test-process-usage.mjs +47 -0
- package/web/dist/assets/arrow-left-BE957rJs.js +1 -0
- package/web/dist/assets/bundle-mjs-DLPpRFyl.js +1 -0
- package/web/dist/assets/centered-state-zgEVNWsj.js +43 -0
- package/web/dist/assets/chunk-BO2N2NFS-f5igTtpB.js +131 -0
- package/web/dist/assets/compare-variants-ChHCcSQX.js +1 -0
- package/web/dist/assets/core-BuMqAF_1.js +12 -0
- package/web/dist/assets/css-BsVw1vtW.js +1 -0
- package/web/dist/assets/dialog-DDRjj-uK.js +1 -0
- package/web/dist/assets/diff-view-CWRO0GMe.js +4 -0
- package/web/dist/assets/diff-woXpYk--.js +1 -0
- package/web/dist/assets/dist-id2CeyV-.js +1 -0
- package/web/dist/assets/ellipsis-vertical-DJPAfccS.js +1 -0
- package/web/dist/assets/engine-javascript-FQvzRocB.js +141 -0
- package/web/dist/assets/folder-RbRLfIX-.js +1 -0
- package/web/dist/assets/git-pull-request-DJkAMT0f.js +1 -0
- package/web/dist/assets/git-toolbar-C4jo602L.js +1 -0
- package/web/dist/assets/github-BOIzQFwE.js +1 -0
- package/web/dist/assets/go-rLFTqkRN.js +1 -0
- package/web/dist/assets/highlighted-body-OFNGDK62-DGHHie_q.js +1 -0
- package/web/dist/assets/highlighter-BKVEsACy.js +3 -0
- package/web/dist/assets/html-BY76lXLH.js +1 -0
- package/web/dist/assets/index-Bz_r8Jt3.css +2 -0
- package/web/dist/assets/index-Cv1pQs9U.js +11 -0
- package/web/dist/assets/input-BRsSo4xH.js +1 -0
- package/web/dist/assets/inter-latin-ext-wght-normal-DO1Apj_S.woff2 +0 -0
- package/web/dist/assets/inter-latin-wght-normal-Dx4kXJAl.woff2 +0 -0
- package/web/dist/assets/javascript-BgS3c2Ky.js +1 -0
- package/web/dist/assets/jetbrains-mono-latin-ext-wght-normal-DBQx-q_a.woff2 +0 -0
- package/web/dist/assets/jetbrains-mono-latin-wght-normal-B9CIFXIH.woff2 +0 -0
- package/web/dist/assets/json-qhed-kSA.js +1 -0
- package/web/dist/assets/jsonc-CYpm1nAK.js +1 -0
- package/web/dist/assets/jsx-Bz0zcwM4.js +1 -0
- package/web/dist/assets/lib-CNGa3Dig.js +1 -0
- package/web/dist/assets/loader-circle-BV3DO9mE.js +1 -0
- package/web/dist/assets/markdown-BYOwaDjH.js +1 -0
- package/web/dist/assets/markdown-CR_HLGTs.js +1 -0
- package/web/dist/assets/mermaid-GHXKKRXX-DM2VsGBG.js +1 -0
- package/web/dist/assets/open-mercato-toBr6SOa.svg +11 -0
- package/web/dist/assets/python-gzcpVVnB.js +1 -0
- package/web/dist/assets/react-dom-Ddtik4qM.js +1 -0
- package/web/dist/assets/refresh-cw-DCa-Rlwz.js +1 -0
- package/web/dist/assets/repo-git-BuyJiqna.js +1 -0
- package/web/dist/assets/run-diff-BocG6LVd.js +3 -0
- package/web/dist/assets/run-header-CDKw22ek.js +1 -0
- package/web/dist/assets/rust-Cfkwpbl8.js +1 -0
- package/web/dist/assets/search-x-CoCyl7zT.js +1 -0
- package/web/dist/assets/shellscript-CLZ0U2zV.js +1 -0
- package/web/dist/assets/skill-detail-CcFFKmGO.js +1 -0
- package/web/dist/assets/skills-Bc_4U3yq.js +1 -0
- package/web/dist/assets/skills-ynuO5oCr.js +1 -0
- package/web/dist/assets/sql-BsFa4tDR.js +1 -0
- package/web/dist/assets/square-terminal-B6PZX4Qp.js +1 -0
- package/web/dist/assets/tab-link-C77EP3i6.js +1 -0
- package/web/dist/assets/task-changes-DsDgN8-x.js +1 -0
- package/web/dist/assets/task-commits-Dve6Fozc.js +1 -0
- package/web/dist/assets/task-files-BDMc_z0B.js +2 -0
- package/web/dist/assets/task-thread-CmRuPj9H.js +5 -0
- package/web/dist/assets/trash-2-CDtxmmc8.js +1 -0
- package/web/dist/assets/triangle-alert-6su4Js5O.js +1 -0
- package/web/dist/assets/tsx-udAQXfEw.js +1 -0
- package/web/dist/assets/typescript-bsJCZSQ-.js +1 -0
- package/web/dist/assets/upload-Bp7hQxll.js +1 -0
- package/web/dist/assets/use-desktop-CyEWsxSU.js +3 -0
- package/web/dist/assets/utils-rQGbOrwc.js +1 -0
- package/web/dist/assets/workflows-J3z3kYic.js +11 -0
- package/web/dist/assets/x-Br_jIDBw.js +1 -0
- package/web/dist/assets/yaml-rwi0_p6S.js +1 -0
- package/web/dist/index.html +67 -0
- package/web/app.js +0 -3428
- package/web/index.html +0 -108
- package/web/style.css +0 -1767
package/web/style.css
DELETED
|
@@ -1,1767 +0,0 @@
|
|
|
1
|
-
/* cez cockpit v2 — design tokens + layout. Dark is the default theme; light
|
|
2
|
-
overrides live under [data-theme="light"]. No build step, no libraries. */
|
|
3
|
-
|
|
4
|
-
:root {
|
|
5
|
-
--bg: #111116;
|
|
6
|
-
--panel: #16161c;
|
|
7
|
-
--panel2: #20202a;
|
|
8
|
-
--card: #17171e;
|
|
9
|
-
--line: rgba(235, 232, 255, 0.075);
|
|
10
|
-
--line2: rgba(235, 232, 255, 0.15);
|
|
11
|
-
--text: #e9e7f2;
|
|
12
|
-
--text2: #a3a1b2;
|
|
13
|
-
--text3: #66646f;
|
|
14
|
-
--btn: #e9e7f2;
|
|
15
|
-
--btn-text: #16161c;
|
|
16
|
-
--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
|
|
17
|
-
--accent: oklch(0.72 0.14 295);
|
|
18
|
-
--green: oklch(0.72 0.12 155);
|
|
19
|
-
--amber: oklch(0.78 0.12 78);
|
|
20
|
-
--red: oklch(0.68 0.17 25);
|
|
21
|
-
--accent-soft: color-mix(in oklab, var(--accent) 9%, var(--bg));
|
|
22
|
-
--accent-line: color-mix(in oklab, var(--accent) 32%, transparent);
|
|
23
|
-
--serif: "Source Serif 4", Georgia, serif;
|
|
24
|
-
--sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
25
|
-
--mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
:root[data-theme="light"] {
|
|
29
|
-
--bg: #faf9f6;
|
|
30
|
-
--panel: #f2f0eb;
|
|
31
|
-
--panel2: #e9e6df;
|
|
32
|
-
--card: #ffffff;
|
|
33
|
-
--line: rgba(40, 35, 20, 0.09);
|
|
34
|
-
--line2: rgba(40, 35, 20, 0.17);
|
|
35
|
-
--text: #22211c;
|
|
36
|
-
--text2: #6d685c;
|
|
37
|
-
--text3: #a39e90;
|
|
38
|
-
--btn: #22211c;
|
|
39
|
-
--btn-text: #faf9f6;
|
|
40
|
-
--shadow-sm: 0 1px 2px rgba(30, 25, 10, 0.05);
|
|
41
|
-
--accent: oklch(0.54 0.18 295);
|
|
42
|
-
--green: oklch(0.55 0.12 152);
|
|
43
|
-
--amber: oklch(0.62 0.12 75);
|
|
44
|
-
--red: oklch(0.55 0.19 27);
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
/* ---- base ---- */
|
|
48
|
-
|
|
49
|
-
* { box-sizing: border-box; scrollbar-width: thin; scrollbar-color: rgba(128, 127, 140, 0.3) transparent; }
|
|
50
|
-
::-webkit-scrollbar { width: 8px; height: 8px; }
|
|
51
|
-
::-webkit-scrollbar-track, ::-webkit-scrollbar-corner { background: transparent; }
|
|
52
|
-
::-webkit-scrollbar-thumb {
|
|
53
|
-
background: rgba(128, 127, 140, 0.28);
|
|
54
|
-
border-radius: 99px;
|
|
55
|
-
border: 2px solid transparent;
|
|
56
|
-
background-clip: padding-box;
|
|
57
|
-
}
|
|
58
|
-
::-webkit-scrollbar-thumb:hover { background: rgba(128, 127, 140, 0.5); background-clip: padding-box; }
|
|
59
|
-
|
|
60
|
-
body {
|
|
61
|
-
margin: 0;
|
|
62
|
-
height: 100vh;
|
|
63
|
-
display: flex;
|
|
64
|
-
background: var(--bg);
|
|
65
|
-
color: var(--text);
|
|
66
|
-
font-family: var(--sans);
|
|
67
|
-
font-size: 14px;
|
|
68
|
-
line-height: 1.5;
|
|
69
|
-
}
|
|
70
|
-
textarea, input, select, button { font-family: inherit; font-size: inherit; color: inherit; }
|
|
71
|
-
textarea::placeholder, input::placeholder { color: var(--text3); }
|
|
72
|
-
a { color: var(--accent); text-decoration: none; }
|
|
73
|
-
a:hover { text-decoration: underline; }
|
|
74
|
-
summary { list-style: none; }
|
|
75
|
-
summary::-webkit-details-marker { display: none; }
|
|
76
|
-
.mono { font-family: var(--mono); }
|
|
77
|
-
.dim { color: var(--text3); }
|
|
78
|
-
@keyframes cz-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
|
|
79
|
-
|
|
80
|
-
/* ---- shared buttons ---- */
|
|
81
|
-
|
|
82
|
-
.btn-dark {
|
|
83
|
-
display: inline-flex;
|
|
84
|
-
align-items: center;
|
|
85
|
-
gap: 6px;
|
|
86
|
-
height: 29px;
|
|
87
|
-
padding: 0 15px;
|
|
88
|
-
border: none;
|
|
89
|
-
border-radius: 99px;
|
|
90
|
-
background: var(--btn);
|
|
91
|
-
color: var(--btn-text);
|
|
92
|
-
font-size: 12.5px;
|
|
93
|
-
font-weight: 600;
|
|
94
|
-
cursor: pointer;
|
|
95
|
-
white-space: nowrap;
|
|
96
|
-
}
|
|
97
|
-
.btn-dark:hover { opacity: 0.88; }
|
|
98
|
-
.btn-dark:disabled { opacity: 0.45; cursor: default; }
|
|
99
|
-
.btn-dark .kbd { font-family: var(--mono); font-size: 10px; opacity: 0.6; }
|
|
100
|
-
|
|
101
|
-
.btn-ghost {
|
|
102
|
-
display: inline-flex;
|
|
103
|
-
align-items: center;
|
|
104
|
-
gap: 6px;
|
|
105
|
-
height: 29px;
|
|
106
|
-
padding: 0 14px;
|
|
107
|
-
border: 1px solid var(--line2);
|
|
108
|
-
border-radius: 99px;
|
|
109
|
-
background: transparent;
|
|
110
|
-
color: var(--text);
|
|
111
|
-
font-size: 12.5px;
|
|
112
|
-
font-weight: 500;
|
|
113
|
-
cursor: pointer;
|
|
114
|
-
white-space: nowrap;
|
|
115
|
-
}
|
|
116
|
-
.btn-ghost:hover { border-color: var(--text3); }
|
|
117
|
-
.btn-ghost:disabled { opacity: 0.45; cursor: default; }
|
|
118
|
-
|
|
119
|
-
.btn-text {
|
|
120
|
-
border: none;
|
|
121
|
-
background: transparent;
|
|
122
|
-
color: var(--text2);
|
|
123
|
-
font-size: 12.5px;
|
|
124
|
-
font-weight: 500;
|
|
125
|
-
cursor: pointer;
|
|
126
|
-
padding: 5px 9px;
|
|
127
|
-
border-radius: 8px;
|
|
128
|
-
white-space: nowrap;
|
|
129
|
-
}
|
|
130
|
-
.btn-text:hover { background: var(--panel2); color: var(--text); }
|
|
131
|
-
.btn-text .bi, .btn-dark .bi {
|
|
132
|
-
width: 12px;
|
|
133
|
-
height: 12px;
|
|
134
|
-
margin-right: 6px;
|
|
135
|
-
vertical-align: -1.5px;
|
|
136
|
-
fill: none;
|
|
137
|
-
stroke: currentColor;
|
|
138
|
-
stroke-width: 1.8;
|
|
139
|
-
stroke-linecap: round;
|
|
140
|
-
stroke-linejoin: round;
|
|
141
|
-
}
|
|
142
|
-
.btn-text .bi-fill, .btn-dark .bi-fill { fill: currentColor; stroke: none; width: 11px; height: 11px; }
|
|
143
|
-
.btn-text.danger { color: var(--red); }
|
|
144
|
-
.btn-text:disabled { opacity: 0.45; cursor: default; }
|
|
145
|
-
|
|
146
|
-
.chip-toggle {
|
|
147
|
-
display: inline-flex;
|
|
148
|
-
align-items: center;
|
|
149
|
-
height: 27px;
|
|
150
|
-
padding: 0 12px;
|
|
151
|
-
border-radius: 99px;
|
|
152
|
-
font-size: 12px;
|
|
153
|
-
font-weight: 500;
|
|
154
|
-
cursor: pointer;
|
|
155
|
-
border: 1px solid var(--line2);
|
|
156
|
-
color: var(--text2);
|
|
157
|
-
background: transparent;
|
|
158
|
-
}
|
|
159
|
-
.chip-toggle:hover { border-color: var(--text3); }
|
|
160
|
-
.chip-toggle.on {
|
|
161
|
-
border-color: var(--accent-line);
|
|
162
|
-
color: var(--accent);
|
|
163
|
-
background: color-mix(in oklab, var(--accent) 10%, transparent);
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
.error-text { color: var(--red); font-size: 12px; }
|
|
167
|
-
|
|
168
|
-
/* hover tooltips — [data-tip] on any element; .tip-right anchors to the right
|
|
169
|
-
edge (for controls near the sidebar's edge) */
|
|
170
|
-
[data-tip] { position: relative; }
|
|
171
|
-
[data-tip]::after {
|
|
172
|
-
content: attr(data-tip);
|
|
173
|
-
position: absolute;
|
|
174
|
-
top: calc(100% + 8px);
|
|
175
|
-
left: 0;
|
|
176
|
-
z-index: 50;
|
|
177
|
-
width: max-content;
|
|
178
|
-
max-width: 215px;
|
|
179
|
-
padding: 7px 11px;
|
|
180
|
-
border: 1px solid var(--line2);
|
|
181
|
-
border-radius: 9px;
|
|
182
|
-
background: var(--panel2);
|
|
183
|
-
color: var(--text);
|
|
184
|
-
font-size: 11px;
|
|
185
|
-
font-weight: 400;
|
|
186
|
-
font-family: var(--sans);
|
|
187
|
-
line-height: 1.5;
|
|
188
|
-
text-align: left;
|
|
189
|
-
white-space: normal;
|
|
190
|
-
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
|
|
191
|
-
opacity: 0;
|
|
192
|
-
visibility: hidden;
|
|
193
|
-
transition: opacity 0.12s ease 0.25s, visibility 0s linear 0.37s;
|
|
194
|
-
pointer-events: none;
|
|
195
|
-
}
|
|
196
|
-
[data-tip]:hover::after { opacity: 1; visibility: visible; transition-delay: 0.25s, 0.25s; }
|
|
197
|
-
[data-tip].tip-right::after { left: auto; right: 0; }
|
|
198
|
-
|
|
199
|
-
/* status pill — detail header + step cards */
|
|
200
|
-
.pill {
|
|
201
|
-
display: inline-flex;
|
|
202
|
-
align-items: center;
|
|
203
|
-
gap: 6px;
|
|
204
|
-
font-size: 11px;
|
|
205
|
-
font-weight: 600;
|
|
206
|
-
padding: 3px 11px;
|
|
207
|
-
border-radius: 99px;
|
|
208
|
-
color: var(--text2);
|
|
209
|
-
background: var(--panel2);
|
|
210
|
-
white-space: nowrap;
|
|
211
|
-
}
|
|
212
|
-
.pill .pulse-dot {
|
|
213
|
-
width: 6px; height: 6px; border-radius: 50%;
|
|
214
|
-
background: currentColor;
|
|
215
|
-
animation: cz-pulse 1.5s ease-in-out infinite;
|
|
216
|
-
}
|
|
217
|
-
.pill.waiting, .pill.review { color: var(--amber); background: color-mix(in oklab, var(--amber) 13%, transparent); }
|
|
218
|
-
.pill.running { color: var(--accent); background: color-mix(in oklab, var(--accent) 12%, transparent); }
|
|
219
|
-
.pill.done { color: var(--green); background: color-mix(in oklab, var(--green) 12%, transparent); }
|
|
220
|
-
.pill.failed { color: var(--red); background: color-mix(in oklab, var(--red) 12%, transparent); }
|
|
221
|
-
|
|
222
|
-
/* run-list / variant dots */
|
|
223
|
-
.dot { width: 7px; height: 7px; border-radius: 50%; flex: none; background: var(--text3); }
|
|
224
|
-
.dot.waiting, .dot.review { background: var(--amber); animation: cz-pulse 1.5s ease-in-out infinite; }
|
|
225
|
-
.dot.running { background: var(--accent); animation: cz-pulse 1.5s ease-in-out infinite; }
|
|
226
|
-
.dot.done { background: var(--green); }
|
|
227
|
-
.dot.failed { background: var(--red); }
|
|
228
|
-
|
|
229
|
-
/* ---- sidebar ---- */
|
|
230
|
-
|
|
231
|
-
#sidebar {
|
|
232
|
-
width: 318px;
|
|
233
|
-
min-width: 318px;
|
|
234
|
-
display: flex;
|
|
235
|
-
flex-direction: column;
|
|
236
|
-
min-height: 0;
|
|
237
|
-
background: var(--panel);
|
|
238
|
-
border-right: 1px solid var(--line);
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
#brand { display: flex; align-items: center; gap: 9px; padding: 18px 18px 14px; }
|
|
242
|
-
#brand .brand-name {
|
|
243
|
-
font-family: var(--serif);
|
|
244
|
-
font-weight: 600;
|
|
245
|
-
font-size: 16.5px;
|
|
246
|
-
letter-spacing: -0.01em;
|
|
247
|
-
}
|
|
248
|
-
#repo-chip {
|
|
249
|
-
margin-left: auto;
|
|
250
|
-
font-size: 10.5px;
|
|
251
|
-
color: var(--text3);
|
|
252
|
-
overflow: hidden;
|
|
253
|
-
text-overflow: ellipsis;
|
|
254
|
-
white-space: nowrap;
|
|
255
|
-
max-width: 130px;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
/* new task composer */
|
|
259
|
-
#new-task-wrap { padding: 0 14px 14px; }
|
|
260
|
-
#new-task {
|
|
261
|
-
border: 1px solid var(--line2);
|
|
262
|
-
border-radius: 12px;
|
|
263
|
-
background: var(--bg);
|
|
264
|
-
padding: 11px 12px 9px;
|
|
265
|
-
box-shadow: var(--shadow-sm);
|
|
266
|
-
display: flex;
|
|
267
|
-
flex-direction: column;
|
|
268
|
-
gap: 7px;
|
|
269
|
-
transition: border-color 0.2s ease, box-shadow 0.2s ease;
|
|
270
|
-
}
|
|
271
|
-
#new-task:focus-within {
|
|
272
|
-
border-color: var(--accent-line);
|
|
273
|
-
box-shadow: 0 4px 18px color-mix(in oklab, var(--accent) 10%, transparent), var(--shadow-sm);
|
|
274
|
-
}
|
|
275
|
-
#new-task textarea {
|
|
276
|
-
width: 100%;
|
|
277
|
-
border: none;
|
|
278
|
-
background: transparent;
|
|
279
|
-
font-size: 13px;
|
|
280
|
-
line-height: 1.55;
|
|
281
|
-
resize: none;
|
|
282
|
-
height: 40px;
|
|
283
|
-
outline: none;
|
|
284
|
-
padding: 0;
|
|
285
|
-
overflow-y: auto;
|
|
286
|
-
transition: height 0.2s cubic-bezier(0.3, 0.7, 0.4, 1);
|
|
287
|
-
}
|
|
288
|
-
#task-thumbs { display: flex; gap: 7px; flex-wrap: wrap; }
|
|
289
|
-
#task-thumbs[hidden] { display: none; }
|
|
290
|
-
#task-thumbs .thumb { cursor: pointer; }
|
|
291
|
-
#task-thumbs img { height: 38px; border-radius: 7px; border: 1px solid var(--line2); display: block; }
|
|
292
|
-
#task-thumbs .thumb:hover img { border-color: var(--red); opacity: 0.7; }
|
|
293
|
-
#new-task .row { display: flex; gap: 7px; align-items: center; }
|
|
294
|
-
#new-task .row.actions { flex-wrap: wrap; row-gap: 6px; }
|
|
295
|
-
|
|
296
|
-
/* pill dropdowns — "≡ fix-and-verify ⌄" / "⊞ auto ⌄" */
|
|
297
|
-
.pill-select { position: relative; min-width: 0; }
|
|
298
|
-
#src-pill, #model-pill, #runner-pill { flex: 0 1 auto; min-width: 0; }
|
|
299
|
-
.pill-btn {
|
|
300
|
-
display: inline-flex;
|
|
301
|
-
align-items: center;
|
|
302
|
-
gap: 6px;
|
|
303
|
-
max-width: 100%;
|
|
304
|
-
height: 26px;
|
|
305
|
-
padding: 0 9px 0 10px;
|
|
306
|
-
border: 1px solid var(--line);
|
|
307
|
-
border-radius: 99px;
|
|
308
|
-
background: var(--panel);
|
|
309
|
-
color: var(--text2);
|
|
310
|
-
font-family: var(--mono);
|
|
311
|
-
font-size: 11px;
|
|
312
|
-
cursor: pointer;
|
|
313
|
-
}
|
|
314
|
-
.pill-btn:hover { border-color: var(--line2); color: var(--text); }
|
|
315
|
-
.pill-btn .pl { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
316
|
-
.pill-btn svg.pic {
|
|
317
|
-
width: 11px; height: 11px; flex: none;
|
|
318
|
-
fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
|
|
319
|
-
opacity: 0.8;
|
|
320
|
-
}
|
|
321
|
-
.pill-btn svg.chev { width: 8px; height: 8px; flex: none; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; opacity: 0.6; }
|
|
322
|
-
.pill-select.open .pill-btn { border-color: var(--accent-line); color: var(--text); }
|
|
323
|
-
|
|
324
|
-
.pill-menu {
|
|
325
|
-
position: absolute;
|
|
326
|
-
top: calc(100% + 6px);
|
|
327
|
-
left: 0;
|
|
328
|
-
z-index: 30;
|
|
329
|
-
min-width: 230px;
|
|
330
|
-
max-width: 256px;
|
|
331
|
-
max-height: 320px;
|
|
332
|
-
overflow-y: auto;
|
|
333
|
-
background: var(--panel2);
|
|
334
|
-
border: 1px solid var(--line2);
|
|
335
|
-
border-radius: 13px;
|
|
336
|
-
box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
|
|
337
|
-
padding: 5px;
|
|
338
|
-
}
|
|
339
|
-
.pill-menu[hidden] { display: none; }
|
|
340
|
-
.pill-menu .menu-search {
|
|
341
|
-
display: flex;
|
|
342
|
-
align-items: center;
|
|
343
|
-
gap: 7px;
|
|
344
|
-
margin: 3px 3px 7px;
|
|
345
|
-
padding: 6px 10px;
|
|
346
|
-
border: 1px solid var(--line);
|
|
347
|
-
border-radius: 9px;
|
|
348
|
-
background: var(--bg);
|
|
349
|
-
}
|
|
350
|
-
.pill-menu .menu-search svg {
|
|
351
|
-
width: 12px; height: 12px; flex: none;
|
|
352
|
-
fill: none; stroke: var(--text3); stroke-width: 2; stroke-linecap: round;
|
|
353
|
-
}
|
|
354
|
-
.pill-menu .menu-search input {
|
|
355
|
-
flex: 1;
|
|
356
|
-
min-width: 0;
|
|
357
|
-
border: none;
|
|
358
|
-
background: transparent;
|
|
359
|
-
font-size: 12.5px;
|
|
360
|
-
color: var(--text);
|
|
361
|
-
outline: none;
|
|
362
|
-
padding: 0;
|
|
363
|
-
}
|
|
364
|
-
.pill-menu .menu-tabs {
|
|
365
|
-
display: flex;
|
|
366
|
-
margin: 0 3px 7px;
|
|
367
|
-
padding: 3px;
|
|
368
|
-
border-radius: 99px;
|
|
369
|
-
background: var(--bg);
|
|
370
|
-
}
|
|
371
|
-
.pill-menu .menu-tabs button {
|
|
372
|
-
flex: 1;
|
|
373
|
-
border: none;
|
|
374
|
-
border-radius: 99px;
|
|
375
|
-
background: transparent;
|
|
376
|
-
color: var(--text3);
|
|
377
|
-
font-size: 11.5px;
|
|
378
|
-
font-weight: 600;
|
|
379
|
-
padding: 4px 0;
|
|
380
|
-
cursor: pointer;
|
|
381
|
-
}
|
|
382
|
-
.pill-menu .menu-tabs button:hover { color: var(--text2); }
|
|
383
|
-
.pill-menu .menu-tabs button.active { background: var(--panel2); color: var(--text); box-shadow: var(--shadow-sm); }
|
|
384
|
-
.pill-menu .menu-empty { padding: 10px 12px; font-size: 12px; color: var(--text3); line-height: 1.5; }
|
|
385
|
-
.pill-menu .menu-group {
|
|
386
|
-
padding: 8px 10px 3px;
|
|
387
|
-
font-size: 9.5px;
|
|
388
|
-
font-weight: 600;
|
|
389
|
-
letter-spacing: 0.09em;
|
|
390
|
-
text-transform: uppercase;
|
|
391
|
-
color: var(--text3);
|
|
392
|
-
}
|
|
393
|
-
.pill-menu .menu-item { padding: 7px 10px; border-radius: 9px; cursor: pointer; }
|
|
394
|
-
.pill-menu .menu-item:hover { background: color-mix(in oklab, var(--text) 7%, transparent); }
|
|
395
|
-
.pill-menu .mi-title { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--text); }
|
|
396
|
-
.pill-menu .mi-title .chk { width: 12px; flex: none; color: var(--accent); font-size: 11px; }
|
|
397
|
-
.pill-menu .mi-title .mi-ic {
|
|
398
|
-
width: 11px;
|
|
399
|
-
height: 11px;
|
|
400
|
-
flex: none;
|
|
401
|
-
fill: none;
|
|
402
|
-
stroke: var(--accent);
|
|
403
|
-
stroke-width: 1.8;
|
|
404
|
-
stroke-linejoin: round;
|
|
405
|
-
opacity: 0.9;
|
|
406
|
-
}
|
|
407
|
-
.pill-menu .mi-desc {
|
|
408
|
-
margin: 2px 0 0 19px;
|
|
409
|
-
font-size: 11px;
|
|
410
|
-
line-height: 1.45;
|
|
411
|
-
color: var(--text3);
|
|
412
|
-
display: -webkit-box;
|
|
413
|
-
-webkit-line-clamp: 2;
|
|
414
|
-
-webkit-box-orient: vertical;
|
|
415
|
-
overflow: hidden;
|
|
416
|
-
}
|
|
417
|
-
.pill-menu .menu-item.on { background: color-mix(in oklab, var(--accent) 9%, transparent); }
|
|
418
|
-
|
|
419
|
-
#new-task .actions { margin-top: 2px; gap: 6px; }
|
|
420
|
-
.icon-btn {
|
|
421
|
-
width: 27px;
|
|
422
|
-
height: 27px;
|
|
423
|
-
flex: none;
|
|
424
|
-
display: flex;
|
|
425
|
-
align-items: center;
|
|
426
|
-
justify-content: center;
|
|
427
|
-
border: 1px solid var(--line);
|
|
428
|
-
border-radius: 99px;
|
|
429
|
-
background: transparent;
|
|
430
|
-
color: var(--text3);
|
|
431
|
-
cursor: pointer;
|
|
432
|
-
}
|
|
433
|
-
.icon-btn:hover { border-color: var(--line2); color: var(--text); }
|
|
434
|
-
#plan-btn {
|
|
435
|
-
display: inline-flex;
|
|
436
|
-
align-items: center;
|
|
437
|
-
gap: 6px;
|
|
438
|
-
height: 27px;
|
|
439
|
-
padding: 0 11px;
|
|
440
|
-
border: 1px solid var(--line);
|
|
441
|
-
border-radius: 99px;
|
|
442
|
-
background: transparent;
|
|
443
|
-
color: var(--text2);
|
|
444
|
-
font-size: 11.5px;
|
|
445
|
-
font-weight: 500;
|
|
446
|
-
cursor: pointer;
|
|
447
|
-
}
|
|
448
|
-
#plan-btn svg { fill: none; stroke: currentColor; }
|
|
449
|
-
#plan-btn:hover { border-color: var(--line2); color: var(--text); }
|
|
450
|
-
#plan-btn:disabled { opacity: 0.45; cursor: default; }
|
|
451
|
-
#run-btn {
|
|
452
|
-
margin-left: auto;
|
|
453
|
-
width: 32px;
|
|
454
|
-
height: 32px;
|
|
455
|
-
flex: none;
|
|
456
|
-
display: flex;
|
|
457
|
-
align-items: center;
|
|
458
|
-
justify-content: center;
|
|
459
|
-
border: none;
|
|
460
|
-
border-radius: 99px;
|
|
461
|
-
background: var(--btn);
|
|
462
|
-
color: var(--btn-text);
|
|
463
|
-
cursor: pointer;
|
|
464
|
-
}
|
|
465
|
-
#run-btn:hover { opacity: 0.88; }
|
|
466
|
-
#run-btn:disabled { opacity: 0.45; cursor: default; }
|
|
467
|
-
|
|
468
|
-
/* plan overlay (spec 008; moved from the sidebar to the main window) */
|
|
469
|
-
#plan-overlay {
|
|
470
|
-
position: fixed;
|
|
471
|
-
inset: 0;
|
|
472
|
-
z-index: 60;
|
|
473
|
-
background: color-mix(in oklab, var(--bg) 55%, transparent);
|
|
474
|
-
backdrop-filter: blur(3px);
|
|
475
|
-
display: flex;
|
|
476
|
-
align-items: flex-start;
|
|
477
|
-
justify-content: center;
|
|
478
|
-
padding: 9vh 24px 24px;
|
|
479
|
-
}
|
|
480
|
-
#plan-overlay[hidden] { display: none; }
|
|
481
|
-
#plan-panel {
|
|
482
|
-
width: min(640px, 94vw);
|
|
483
|
-
max-height: 78vh;
|
|
484
|
-
overflow-y: auto;
|
|
485
|
-
border: 1px solid var(--line2);
|
|
486
|
-
border-radius: 16px;
|
|
487
|
-
background: var(--card);
|
|
488
|
-
box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
|
|
489
|
-
padding: 18px 20px;
|
|
490
|
-
display: flex;
|
|
491
|
-
flex-direction: column;
|
|
492
|
-
gap: 10px;
|
|
493
|
-
}
|
|
494
|
-
.plan-head { display: flex; align-items: flex-start; gap: 10px; }
|
|
495
|
-
.plan-head > div:first-child { flex: 1; }
|
|
496
|
-
.plan-task {
|
|
497
|
-
font-family: var(--serif);
|
|
498
|
-
font-size: 17px;
|
|
499
|
-
font-weight: 500;
|
|
500
|
-
letter-spacing: -0.01em;
|
|
501
|
-
line-height: 1.35;
|
|
502
|
-
}
|
|
503
|
-
.plan-close {
|
|
504
|
-
width: 26px;
|
|
505
|
-
height: 26px;
|
|
506
|
-
flex: none;
|
|
507
|
-
display: inline-flex;
|
|
508
|
-
align-items: center;
|
|
509
|
-
justify-content: center;
|
|
510
|
-
border: none;
|
|
511
|
-
border-radius: 99px;
|
|
512
|
-
background: transparent;
|
|
513
|
-
color: var(--text3);
|
|
514
|
-
cursor: pointer;
|
|
515
|
-
font-size: 16px;
|
|
516
|
-
}
|
|
517
|
-
.plan-close:hover { color: var(--text); background: var(--panel2); }
|
|
518
|
-
.plan-note { font-size: 12px; color: var(--amber); }
|
|
519
|
-
.plan-rationale { font-size: 12.5px; color: var(--text2); line-height: 1.55; max-width: 64ch; }
|
|
520
|
-
.plan-steps { display: flex; flex-direction: column; gap: 7px; }
|
|
521
|
-
.plan-step {
|
|
522
|
-
display: flex;
|
|
523
|
-
align-items: flex-start;
|
|
524
|
-
gap: 10px;
|
|
525
|
-
border: 1px solid var(--line);
|
|
526
|
-
border-radius: 11px;
|
|
527
|
-
padding: 10px 12px;
|
|
528
|
-
background: var(--bg);
|
|
529
|
-
font-size: 13px;
|
|
530
|
-
cursor: grab;
|
|
531
|
-
}
|
|
532
|
-
.plan-step.drag-over { border-color: var(--accent); }
|
|
533
|
-
.plan-step .grip { cursor: grab; color: var(--text3); user-select: none; margin-top: 1px; }
|
|
534
|
-
.plan-step .num { color: var(--text3); font-family: var(--mono); font-size: 10.5px; margin-top: 3px; }
|
|
535
|
-
.plan-step-main { flex: 1; min-width: 0; }
|
|
536
|
-
.plan-step .row1 { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
|
|
537
|
-
.plan-step .name { font-weight: 600; }
|
|
538
|
-
.plan-step .hint {
|
|
539
|
-
margin-top: 3px;
|
|
540
|
-
font-family: var(--mono);
|
|
541
|
-
font-size: 11px;
|
|
542
|
-
line-height: 1.55;
|
|
543
|
-
color: var(--text3);
|
|
544
|
-
display: -webkit-box;
|
|
545
|
-
-webkit-line-clamp: 3;
|
|
546
|
-
-webkit-box-orient: vertical;
|
|
547
|
-
overflow: hidden;
|
|
548
|
-
}
|
|
549
|
-
.plan-badge {
|
|
550
|
-
font-size: 9px;
|
|
551
|
-
font-weight: 600;
|
|
552
|
-
text-transform: uppercase;
|
|
553
|
-
letter-spacing: 0.06em;
|
|
554
|
-
padding: 1px 7px;
|
|
555
|
-
border-radius: 99px;
|
|
556
|
-
border: 1px solid var(--line2);
|
|
557
|
-
color: var(--text3);
|
|
558
|
-
white-space: nowrap;
|
|
559
|
-
}
|
|
560
|
-
.plan-badge.skill { color: var(--accent); border-color: var(--accent-line); }
|
|
561
|
-
.plan-step .plan-remove {
|
|
562
|
-
background: none;
|
|
563
|
-
border: none;
|
|
564
|
-
color: var(--text3);
|
|
565
|
-
cursor: pointer;
|
|
566
|
-
padding: 0 2px;
|
|
567
|
-
font-size: 13px;
|
|
568
|
-
margin-top: 1px;
|
|
569
|
-
}
|
|
570
|
-
.plan-step .plan-remove:hover { color: var(--red); }
|
|
571
|
-
.plan-actions { display: flex; gap: 8px; margin-top: 2px; }
|
|
572
|
-
.plan-actions .btn-dark, .plan-actions .btn-ghost { flex: 1; justify-content: center; height: 30px; font-size: 12.5px; }
|
|
573
|
-
#plan-btn.busy svg { animation: cz-pulse 1.2s ease-in-out infinite; }
|
|
574
|
-
|
|
575
|
-
/* nav */
|
|
576
|
-
#tabs { display: flex; flex-direction: column; gap: 1px; padding: 0 8px 10px; }
|
|
577
|
-
#tabs button {
|
|
578
|
-
display: flex;
|
|
579
|
-
align-items: center;
|
|
580
|
-
text-align: left;
|
|
581
|
-
width: 100%;
|
|
582
|
-
padding: 7px 11px;
|
|
583
|
-
border: none;
|
|
584
|
-
border-radius: 9px;
|
|
585
|
-
font-size: 13.5px;
|
|
586
|
-
font-weight: 500;
|
|
587
|
-
cursor: pointer;
|
|
588
|
-
background: transparent;
|
|
589
|
-
color: var(--text2);
|
|
590
|
-
}
|
|
591
|
-
#tabs button:hover { color: var(--text); }
|
|
592
|
-
#tabs button.active { background: var(--panel2); color: var(--text); }
|
|
593
|
-
#tabs svg {
|
|
594
|
-
width: 14px; height: 14px;
|
|
595
|
-
margin-right: 9px;
|
|
596
|
-
flex: none;
|
|
597
|
-
opacity: 0.85;
|
|
598
|
-
fill: none;
|
|
599
|
-
stroke: currentColor;
|
|
600
|
-
stroke-width: 1.8;
|
|
601
|
-
stroke-linecap: round;
|
|
602
|
-
stroke-linejoin: round;
|
|
603
|
-
}
|
|
604
|
-
#tabs .count-badge {
|
|
605
|
-
margin-left: auto;
|
|
606
|
-
font-family: var(--mono);
|
|
607
|
-
font-size: 10.5px;
|
|
608
|
-
color: var(--amber);
|
|
609
|
-
font-weight: 600;
|
|
610
|
-
}
|
|
611
|
-
#tabs .count-badge[hidden] { display: none; }
|
|
612
|
-
|
|
613
|
-
/* run list */
|
|
614
|
-
#run-list-wrap { flex: 1; min-height: 0; display: flex; flex-direction: column; }
|
|
615
|
-
#list-tabs { display: flex; gap: 4px; align-items: center; padding: 4px 14px 0; }
|
|
616
|
-
#list-tabs button {
|
|
617
|
-
background: none;
|
|
618
|
-
border: none;
|
|
619
|
-
color: var(--text3);
|
|
620
|
-
padding: 3px 8px;
|
|
621
|
-
border-radius: 99px;
|
|
622
|
-
cursor: pointer;
|
|
623
|
-
font-size: 10.5px;
|
|
624
|
-
font-weight: 600;
|
|
625
|
-
letter-spacing: 0.05em;
|
|
626
|
-
text-transform: uppercase;
|
|
627
|
-
}
|
|
628
|
-
#list-tabs button:hover { color: var(--text2); }
|
|
629
|
-
#list-tabs button.active { color: var(--text); background: var(--panel2); }
|
|
630
|
-
#list-tabs .dot { display: inline-block; width: 6px; height: 6px; margin-left: 3px; background: var(--amber); animation: cz-pulse 1.5s ease-in-out infinite; }
|
|
631
|
-
|
|
632
|
-
#run-list { flex: 1; overflow-y: auto; padding: 2px 8px 12px; }
|
|
633
|
-
.group-label {
|
|
634
|
-
padding: 14px 10px 5px;
|
|
635
|
-
font-size: 10.5px;
|
|
636
|
-
font-weight: 600;
|
|
637
|
-
letter-spacing: 0.09em;
|
|
638
|
-
text-transform: uppercase;
|
|
639
|
-
color: var(--text3);
|
|
640
|
-
}
|
|
641
|
-
.run-item {
|
|
642
|
-
display: flex;
|
|
643
|
-
align-items: center;
|
|
644
|
-
gap: 10px;
|
|
645
|
-
padding: 7px 11px;
|
|
646
|
-
border-radius: 9px;
|
|
647
|
-
cursor: pointer;
|
|
648
|
-
margin: 1px 0;
|
|
649
|
-
}
|
|
650
|
-
.run-item:hover { background: var(--panel2); }
|
|
651
|
-
.run-item.selected { background: var(--panel2); }
|
|
652
|
-
.run-item .title {
|
|
653
|
-
flex: 1;
|
|
654
|
-
min-width: 0;
|
|
655
|
-
font-size: 13px;
|
|
656
|
-
overflow: hidden;
|
|
657
|
-
text-overflow: ellipsis;
|
|
658
|
-
white-space: nowrap;
|
|
659
|
-
}
|
|
660
|
-
.run-item .time { font-family: var(--mono); font-size: 9.5px; color: var(--text3); flex: none; }
|
|
661
|
-
.run-item.variant-row { padding-left: 26px; }
|
|
662
|
-
.run-item.group-item .dots { display: flex; gap: 4px; flex: none; }
|
|
663
|
-
.compare-btn {
|
|
664
|
-
border: 1px solid var(--line2);
|
|
665
|
-
background: transparent;
|
|
666
|
-
color: var(--text2);
|
|
667
|
-
border-radius: 99px;
|
|
668
|
-
padding: 1px 9px;
|
|
669
|
-
cursor: pointer;
|
|
670
|
-
font-size: 10.5px;
|
|
671
|
-
flex: none;
|
|
672
|
-
}
|
|
673
|
-
.compare-btn:hover { border-color: var(--accent-line); color: var(--accent); }
|
|
674
|
-
|
|
675
|
-
/* footer */
|
|
676
|
-
#side-foot {
|
|
677
|
-
border-top: 1px solid var(--line);
|
|
678
|
-
padding: 11px 16px;
|
|
679
|
-
display: flex;
|
|
680
|
-
align-items: flex-end;
|
|
681
|
-
gap: 8px;
|
|
682
|
-
}
|
|
683
|
-
#env-chips { display: flex; flex-wrap: wrap; gap: 6px 9px; min-width: 0; flex: 1 1 auto; }
|
|
684
|
-
.env-chip {
|
|
685
|
-
display: flex;
|
|
686
|
-
align-items: center;
|
|
687
|
-
gap: 5px;
|
|
688
|
-
font-family: var(--mono);
|
|
689
|
-
font-size: 10px;
|
|
690
|
-
color: var(--text3);
|
|
691
|
-
white-space: nowrap;
|
|
692
|
-
}
|
|
693
|
-
.env-chip .led { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex: none; }
|
|
694
|
-
.env-chip.bad .led { background: var(--red); }
|
|
695
|
-
#theme-toggle {
|
|
696
|
-
margin-left: auto;
|
|
697
|
-
align-self: flex-end;
|
|
698
|
-
flex: none;
|
|
699
|
-
border: none;
|
|
700
|
-
background: transparent;
|
|
701
|
-
color: var(--text3);
|
|
702
|
-
font-family: var(--mono);
|
|
703
|
-
font-size: 10px;
|
|
704
|
-
letter-spacing: 0.08em;
|
|
705
|
-
cursor: pointer;
|
|
706
|
-
padding: 3px 0;
|
|
707
|
-
}
|
|
708
|
-
#theme-toggle:hover { color: var(--text2); }
|
|
709
|
-
|
|
710
|
-
/* ---- main ---- */
|
|
711
|
-
|
|
712
|
-
main { flex: 1; min-width: 0; display: flex; min-height: 0; background: var(--bg); }
|
|
713
|
-
.view { flex: 1; min-width: 0; min-height: 0; display: flex; flex-direction: column; }
|
|
714
|
-
.view[hidden] { display: none; }
|
|
715
|
-
.scroll-view { overflow-y: auto; }
|
|
716
|
-
.page { max-width: 760px; margin: 0 auto; padding: 34px 40px; width: 100%; }
|
|
717
|
-
.page h1, .page-title {
|
|
718
|
-
margin: 0 0 4px;
|
|
719
|
-
font-family: var(--serif);
|
|
720
|
-
font-size: 27px;
|
|
721
|
-
font-weight: 500;
|
|
722
|
-
letter-spacing: -0.015em;
|
|
723
|
-
}
|
|
724
|
-
.page .lead { margin: 0 0 22px; font-size: 13.5px; color: var(--text2); }
|
|
725
|
-
.section-label {
|
|
726
|
-
font-size: 10.5px;
|
|
727
|
-
font-weight: 600;
|
|
728
|
-
letter-spacing: 0.09em;
|
|
729
|
-
text-transform: uppercase;
|
|
730
|
-
color: var(--text3);
|
|
731
|
-
margin: 26px 0 9px;
|
|
732
|
-
}
|
|
733
|
-
|
|
734
|
-
/* ---- run detail ---- */
|
|
735
|
-
|
|
736
|
-
#detail { flex: 1; min-width: 0; display: flex; flex-direction: column; min-height: 0; }
|
|
737
|
-
#detail .empty { margin: auto; color: var(--text3); font-size: 13.5px; }
|
|
738
|
-
|
|
739
|
-
.detail-head { flex: none; padding: 26px 40px 0; max-width: 860px; width: 100%; margin: 0 auto; }
|
|
740
|
-
.detail-head .meta-line {
|
|
741
|
-
display: flex;
|
|
742
|
-
align-items: center;
|
|
743
|
-
gap: 10px;
|
|
744
|
-
font-family: var(--mono);
|
|
745
|
-
font-size: 10.5px;
|
|
746
|
-
color: var(--text3);
|
|
747
|
-
flex-wrap: wrap;
|
|
748
|
-
}
|
|
749
|
-
.detail-head .meta-line a { color: var(--accent); }
|
|
750
|
-
.detail-head .title-row { display: flex; align-items: baseline; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
|
|
751
|
-
.detail-head h1 {
|
|
752
|
-
margin: 0;
|
|
753
|
-
font-family: var(--serif);
|
|
754
|
-
font-size: 27px;
|
|
755
|
-
font-weight: 500;
|
|
756
|
-
letter-spacing: -0.015em;
|
|
757
|
-
flex: 1;
|
|
758
|
-
min-width: 240px;
|
|
759
|
-
line-height: 1.25;
|
|
760
|
-
}
|
|
761
|
-
.detail-head .head-bar {
|
|
762
|
-
display: flex;
|
|
763
|
-
align-items: center;
|
|
764
|
-
gap: 4px;
|
|
765
|
-
margin-top: 12px;
|
|
766
|
-
padding-bottom: 14px;
|
|
767
|
-
border-bottom: 1px solid var(--line);
|
|
768
|
-
flex-wrap: wrap;
|
|
769
|
-
}
|
|
770
|
-
.detail-head .steps-line { font-family: var(--mono); font-size: 11px; color: var(--text2); }
|
|
771
|
-
.detail-head .head-bar .spacer { flex: 1; }
|
|
772
|
-
.detail-head .run-error { font-size: 12px; color: var(--red); margin-top: 6px; }
|
|
773
|
-
.detail-head .resume-hint { font-family: var(--mono); font-size: 10.5px; color: var(--text3); margin-top: 6px; }
|
|
774
|
-
.detail-head .btn-dark { height: 27px; padding: 0 13px; font-size: 12px; }
|
|
775
|
-
|
|
776
|
-
/* slide-down panels: review gate / diff / notes */
|
|
777
|
-
.detail-panel {
|
|
778
|
-
flex: none;
|
|
779
|
-
max-height: 50%;
|
|
780
|
-
overflow: auto;
|
|
781
|
-
border-bottom: 1px solid var(--line);
|
|
782
|
-
background: var(--panel);
|
|
783
|
-
padding: 14px 40px;
|
|
784
|
-
}
|
|
785
|
-
.detail-panel[hidden] { display: none; }
|
|
786
|
-
.detail-panel > .inner { max-width: 780px; margin: 0 auto; }
|
|
787
|
-
.detail-panel pre {
|
|
788
|
-
margin: 0;
|
|
789
|
-
font-family: var(--mono);
|
|
790
|
-
font-size: 11.5px;
|
|
791
|
-
line-height: 1.6;
|
|
792
|
-
white-space: pre-wrap;
|
|
793
|
-
word-break: break-word;
|
|
794
|
-
}
|
|
795
|
-
.panel-label {
|
|
796
|
-
font-size: 10.5px;
|
|
797
|
-
font-weight: 600;
|
|
798
|
-
letter-spacing: 0.09em;
|
|
799
|
-
text-transform: uppercase;
|
|
800
|
-
color: var(--text3);
|
|
801
|
-
margin-bottom: 9px;
|
|
802
|
-
}
|
|
803
|
-
|
|
804
|
-
/* rendered markdown (handoff notes) */
|
|
805
|
-
.md { font-size: 13px; line-height: 1.65; color: var(--text); max-width: 72ch; }
|
|
806
|
-
.md h1, .md h2, .md h3, .md h4 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em; margin: 18px 0 6px; }
|
|
807
|
-
.md h1 { font-size: 17px; }
|
|
808
|
-
.md h2 { font-size: 15px; }
|
|
809
|
-
.md h3, .md h4 { font-size: 13.5px; }
|
|
810
|
-
.md h1:first-child, .md h2:first-child { margin-top: 0; }
|
|
811
|
-
.md p { margin: 6px 0; }
|
|
812
|
-
.md ul, .md ol { margin: 6px 0; padding-left: 22px; }
|
|
813
|
-
.md li { margin: 3px 0; }
|
|
814
|
-
.md code {
|
|
815
|
-
font-family: var(--mono);
|
|
816
|
-
font-size: 11.5px;
|
|
817
|
-
background: var(--panel2);
|
|
818
|
-
border-radius: 5px;
|
|
819
|
-
padding: 1px 6px;
|
|
820
|
-
word-break: break-all;
|
|
821
|
-
}
|
|
822
|
-
.md pre {
|
|
823
|
-
margin: 8px 0;
|
|
824
|
-
padding: 11px 14px;
|
|
825
|
-
background: var(--card);
|
|
826
|
-
border: 1px solid var(--line);
|
|
827
|
-
border-radius: 10px;
|
|
828
|
-
overflow-x: auto;
|
|
829
|
-
}
|
|
830
|
-
.md pre code { background: transparent; padding: 0; word-break: normal; font-size: 11.5px; line-height: 1.6; }
|
|
831
|
-
.md hr { border: none; border-top: 1px solid var(--line); margin: 14px 0; }
|
|
832
|
-
.md strong { font-weight: 600; }
|
|
833
|
-
.md blockquote {
|
|
834
|
-
margin: 8px 0;
|
|
835
|
-
padding: 3px 14px;
|
|
836
|
-
border-left: 3px solid var(--line2);
|
|
837
|
-
color: var(--text2);
|
|
838
|
-
}
|
|
839
|
-
.md li.task { list-style: none; margin-left: -18px; }
|
|
840
|
-
.md li.task .cb { margin-right: 7px; color: var(--text2); }
|
|
841
|
-
|
|
842
|
-
#review-panel { background: var(--accent-soft); border-bottom: 1px solid var(--accent-line); }
|
|
843
|
-
#review-panel .panel-label { color: var(--accent); }
|
|
844
|
-
#review-notes {
|
|
845
|
-
width: 100%;
|
|
846
|
-
background: var(--card);
|
|
847
|
-
border: 1px solid var(--line2);
|
|
848
|
-
border-radius: 10px;
|
|
849
|
-
padding: 8px 12px;
|
|
850
|
-
font-size: 13px;
|
|
851
|
-
resize: vertical;
|
|
852
|
-
outline: none;
|
|
853
|
-
margin-top: 10px;
|
|
854
|
-
}
|
|
855
|
-
.review-buttons { display: flex; gap: 8px; margin-top: 10px; }
|
|
856
|
-
|
|
857
|
-
/* transcript */
|
|
858
|
-
.log-wrap { position: relative; flex: 1; min-height: 0; display: flex; flex-direction: column; }
|
|
859
|
-
#log { flex: 1; overflow-y: auto; overflow-x: hidden; }
|
|
860
|
-
#log .log-inner { max-width: 860px; margin: 0 auto; padding: 18px 40px 28px; }
|
|
861
|
-
|
|
862
|
-
.ev { min-width: 0; }
|
|
863
|
-
.ev.step { display: flex; align-items: center; gap: 12px; margin: 22px 0 10px; }
|
|
864
|
-
.ev.step .step-label {
|
|
865
|
-
font-size: 10.5px;
|
|
866
|
-
font-weight: 600;
|
|
867
|
-
letter-spacing: 0.1em;
|
|
868
|
-
text-transform: uppercase;
|
|
869
|
-
color: var(--text3);
|
|
870
|
-
white-space: nowrap;
|
|
871
|
-
}
|
|
872
|
-
.ev.step .rule { flex: 1; height: 1px; background: var(--line); }
|
|
873
|
-
|
|
874
|
-
.ev.text {
|
|
875
|
-
color: var(--text);
|
|
876
|
-
font-size: 14px;
|
|
877
|
-
line-height: 1.7;
|
|
878
|
-
margin: 9px 0;
|
|
879
|
-
max-width: 66ch;
|
|
880
|
-
word-break: break-word;
|
|
881
|
-
}
|
|
882
|
-
.ev.text.md p:first-child { margin-top: 0; }
|
|
883
|
-
.ev.text.md p:last-child { margin-bottom: 0; }
|
|
884
|
-
|
|
885
|
-
.ev.tool, .ev.result summary {
|
|
886
|
-
display: inline-flex;
|
|
887
|
-
align-items: center;
|
|
888
|
-
gap: 7px;
|
|
889
|
-
margin: 2px 8px 2px 0;
|
|
890
|
-
padding: 3px 9px 3px 8px;
|
|
891
|
-
border: 1px solid var(--line);
|
|
892
|
-
border-radius: 8px;
|
|
893
|
-
background: var(--card);
|
|
894
|
-
font-size: 11.5px;
|
|
895
|
-
color: var(--text2);
|
|
896
|
-
max-width: 100%;
|
|
897
|
-
}
|
|
898
|
-
.ev.tool .ok { color: var(--green); font-size: 10px; }
|
|
899
|
-
.ev.tool .arg, .ev.tool code {
|
|
900
|
-
font-family: var(--mono);
|
|
901
|
-
font-size: 10.5px;
|
|
902
|
-
color: var(--text);
|
|
903
|
-
background: var(--panel2);
|
|
904
|
-
border-radius: 5px;
|
|
905
|
-
padding: 1px 6px;
|
|
906
|
-
overflow: hidden;
|
|
907
|
-
text-overflow: ellipsis;
|
|
908
|
-
white-space: nowrap;
|
|
909
|
-
max-width: 46ch;
|
|
910
|
-
}
|
|
911
|
-
/* collapsed tool streaks (Claude-Code style) */
|
|
912
|
-
.ev.tool-streak { min-width: 0; margin: 4px 0; }
|
|
913
|
-
.streak-box { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
|
|
914
|
-
.streak-box[hidden] { display: none; }
|
|
915
|
-
.streak-toggle {
|
|
916
|
-
display: inline-flex;
|
|
917
|
-
align-items: center;
|
|
918
|
-
border: none;
|
|
919
|
-
background: transparent;
|
|
920
|
-
color: var(--text3);
|
|
921
|
-
font-family: var(--mono);
|
|
922
|
-
font-size: 10.5px;
|
|
923
|
-
cursor: pointer;
|
|
924
|
-
padding: 3px 2px;
|
|
925
|
-
margin: 1px 0;
|
|
926
|
-
}
|
|
927
|
-
.streak-toggle:hover { color: var(--text2); }
|
|
928
|
-
|
|
929
|
-
.ev.result { margin: 4px 0; }
|
|
930
|
-
.ev.result summary { cursor: pointer; }
|
|
931
|
-
.ev.result summary:hover { border-color: var(--line2); }
|
|
932
|
-
.ev.result summary .lead-in { color: var(--text3); font-size: 10px; }
|
|
933
|
-
.ev.result summary .head {
|
|
934
|
-
overflow: hidden;
|
|
935
|
-
text-overflow: ellipsis;
|
|
936
|
-
white-space: nowrap;
|
|
937
|
-
max-width: 60ch;
|
|
938
|
-
}
|
|
939
|
-
.ev.result summary .show { font-family: var(--mono); font-size: 10px; color: var(--text3); }
|
|
940
|
-
.ev.result pre, .ev.tool-detail pre {
|
|
941
|
-
margin: 7px 0 4px;
|
|
942
|
-
padding: 12px 15px;
|
|
943
|
-
background: var(--card);
|
|
944
|
-
border: 1px solid var(--line);
|
|
945
|
-
border-radius: 11px;
|
|
946
|
-
color: var(--text2);
|
|
947
|
-
overflow-x: auto;
|
|
948
|
-
line-height: 1.55;
|
|
949
|
-
font-family: var(--mono);
|
|
950
|
-
font-size: 11.5px;
|
|
951
|
-
}
|
|
952
|
-
.ev.result.error summary { color: var(--red); }
|
|
953
|
-
|
|
954
|
-
.ev.check {
|
|
955
|
-
margin: 10px 0;
|
|
956
|
-
border: 1px solid var(--line);
|
|
957
|
-
border-radius: 12px;
|
|
958
|
-
background: var(--card);
|
|
959
|
-
overflow: hidden;
|
|
960
|
-
box-shadow: var(--shadow-sm);
|
|
961
|
-
}
|
|
962
|
-
.ev.check .check-head {
|
|
963
|
-
display: flex;
|
|
964
|
-
align-items: center;
|
|
965
|
-
gap: 10px;
|
|
966
|
-
padding: 8px 14px;
|
|
967
|
-
border-bottom: 1px solid var(--line);
|
|
968
|
-
}
|
|
969
|
-
.ev.check .check-head .lbl {
|
|
970
|
-
font-size: 10.5px;
|
|
971
|
-
font-weight: 600;
|
|
972
|
-
letter-spacing: 0.08em;
|
|
973
|
-
text-transform: uppercase;
|
|
974
|
-
color: var(--text3);
|
|
975
|
-
}
|
|
976
|
-
.ev.check .check-head code { font-family: var(--mono); font-size: 11.5px; color: var(--text); }
|
|
977
|
-
.ev.check .check-pill {
|
|
978
|
-
margin-left: auto;
|
|
979
|
-
font-size: 10.5px;
|
|
980
|
-
font-weight: 600;
|
|
981
|
-
padding: 2px 10px;
|
|
982
|
-
border-radius: 99px;
|
|
983
|
-
}
|
|
984
|
-
.ev.check .check-pill.pass { color: var(--green); background: color-mix(in oklab, var(--green) 12%, transparent); }
|
|
985
|
-
.ev.check .check-pill.fail { color: var(--red); background: color-mix(in oklab, var(--red) 12%, transparent); }
|
|
986
|
-
.ev.check pre {
|
|
987
|
-
margin: 0;
|
|
988
|
-
padding: 10px 15px;
|
|
989
|
-
font-family: var(--mono);
|
|
990
|
-
font-size: 11.5px;
|
|
991
|
-
color: var(--text2);
|
|
992
|
-
overflow-x: auto;
|
|
993
|
-
line-height: 1.6;
|
|
994
|
-
max-height: 260px;
|
|
995
|
-
}
|
|
996
|
-
|
|
997
|
-
.ev.user { display: flex; justify-content: flex-end; margin: 12px 0; }
|
|
998
|
-
.ev.user .bubble {
|
|
999
|
-
max-width: 75%;
|
|
1000
|
-
padding: 10px 15px;
|
|
1001
|
-
border-radius: 15px;
|
|
1002
|
-
background: var(--panel2);
|
|
1003
|
-
font-size: 13.5px;
|
|
1004
|
-
line-height: 1.6;
|
|
1005
|
-
white-space: pre-wrap;
|
|
1006
|
-
word-break: break-word;
|
|
1007
|
-
}
|
|
1008
|
-
|
|
1009
|
-
.ev.image-ev { margin: 11px 0; }
|
|
1010
|
-
.img-card {
|
|
1011
|
-
display: inline-block;
|
|
1012
|
-
border: 1px solid var(--line2);
|
|
1013
|
-
border-radius: 13px;
|
|
1014
|
-
overflow: hidden;
|
|
1015
|
-
cursor: zoom-in;
|
|
1016
|
-
background: var(--card);
|
|
1017
|
-
box-shadow: var(--shadow-sm);
|
|
1018
|
-
max-width: 420px;
|
|
1019
|
-
}
|
|
1020
|
-
.img-card:hover { border-color: var(--text3); }
|
|
1021
|
-
.img-card img { display: block; width: 100%; height: auto; }
|
|
1022
|
-
.img-card .img-foot { display: flex; align-items: center; gap: 8px; padding: 7px 12px; border-top: 1px solid var(--line); }
|
|
1023
|
-
.img-card .nm {
|
|
1024
|
-
font-family: var(--mono);
|
|
1025
|
-
font-size: 10.5px;
|
|
1026
|
-
color: var(--text2);
|
|
1027
|
-
overflow: hidden;
|
|
1028
|
-
text-overflow: ellipsis;
|
|
1029
|
-
white-space: nowrap;
|
|
1030
|
-
}
|
|
1031
|
-
.img-card .zm { font-family: var(--mono); font-size: 10px; color: var(--text3); margin-left: auto; white-space: nowrap; }
|
|
1032
|
-
|
|
1033
|
-
#lightbox {
|
|
1034
|
-
position: fixed;
|
|
1035
|
-
inset: 0;
|
|
1036
|
-
background: rgba(10, 10, 14, 0.78);
|
|
1037
|
-
backdrop-filter: blur(6px);
|
|
1038
|
-
display: flex;
|
|
1039
|
-
align-items: center;
|
|
1040
|
-
justify-content: center;
|
|
1041
|
-
z-index: 99;
|
|
1042
|
-
cursor: zoom-out;
|
|
1043
|
-
}
|
|
1044
|
-
#lightbox .lb-inner { display: flex; flex-direction: column; gap: 11px; align-items: center; }
|
|
1045
|
-
#lightbox img { max-width: 84vw; max-height: 80vh; border-radius: 12px; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5); }
|
|
1046
|
-
#lightbox .lb-name { font-family: var(--mono); font-size: 11px; color: rgba(255, 255, 255, 0.72); }
|
|
1047
|
-
|
|
1048
|
-
.ev.note { font-family: var(--mono); font-size: 11px; color: var(--text3); margin: 5px 0; }
|
|
1049
|
-
.ev.err { font-size: 13px; color: var(--red); margin: 8px 0; white-space: pre-wrap; }
|
|
1050
|
-
|
|
1051
|
-
#jump-bottom {
|
|
1052
|
-
position: absolute;
|
|
1053
|
-
right: 28px;
|
|
1054
|
-
bottom: 16px;
|
|
1055
|
-
border: 1px solid var(--line2);
|
|
1056
|
-
background: var(--panel);
|
|
1057
|
-
color: var(--text2);
|
|
1058
|
-
border-radius: 99px;
|
|
1059
|
-
padding: 5px 14px;
|
|
1060
|
-
cursor: pointer;
|
|
1061
|
-
font-size: 11.5px;
|
|
1062
|
-
box-shadow: var(--shadow-sm);
|
|
1063
|
-
}
|
|
1064
|
-
#jump-bottom:hover { color: var(--text); }
|
|
1065
|
-
|
|
1066
|
-
/* composer */
|
|
1067
|
-
.composer-wrap { flex: none; padding: 0 40px 22px; max-width: 860px; width: 100%; margin: 0 auto; }
|
|
1068
|
-
#waiting-note {
|
|
1069
|
-
display: flex;
|
|
1070
|
-
align-items: center;
|
|
1071
|
-
gap: 7px;
|
|
1072
|
-
font-size: 11.5px;
|
|
1073
|
-
color: var(--amber);
|
|
1074
|
-
margin: 0 4px 8px;
|
|
1075
|
-
}
|
|
1076
|
-
#waiting-note[hidden] { display: none; }
|
|
1077
|
-
#waiting-note .pulse-dot {
|
|
1078
|
-
width: 6px; height: 6px; border-radius: 50%;
|
|
1079
|
-
background: var(--amber);
|
|
1080
|
-
animation: cz-pulse 1.5s ease-in-out infinite;
|
|
1081
|
-
}
|
|
1082
|
-
#msg-form {
|
|
1083
|
-
display: flex;
|
|
1084
|
-
flex-direction: column;
|
|
1085
|
-
gap: 6px;
|
|
1086
|
-
padding: 10px 10px 10px 16px;
|
|
1087
|
-
border: 1px solid var(--line2);
|
|
1088
|
-
border-radius: 16px;
|
|
1089
|
-
background: var(--card);
|
|
1090
|
-
box-shadow: var(--shadow-sm);
|
|
1091
|
-
}
|
|
1092
|
-
#msg-form.disabled { opacity: 0.5; }
|
|
1093
|
-
#msg-form.disabled #msg-text, #msg-form.disabled button { pointer-events: none; }
|
|
1094
|
-
.msg-row { display: flex; gap: 6px; align-items: flex-end; }
|
|
1095
|
-
#msg-text {
|
|
1096
|
-
flex: 1;
|
|
1097
|
-
border: none;
|
|
1098
|
-
background: transparent;
|
|
1099
|
-
font-size: 13.5px;
|
|
1100
|
-
line-height: 1.55;
|
|
1101
|
-
resize: none;
|
|
1102
|
-
outline: none;
|
|
1103
|
-
padding: 4px 2px;
|
|
1104
|
-
max-height: 140px;
|
|
1105
|
-
}
|
|
1106
|
-
#msg-attach, #msg-send {
|
|
1107
|
-
width: 32px;
|
|
1108
|
-
height: 32px;
|
|
1109
|
-
flex: none;
|
|
1110
|
-
display: flex;
|
|
1111
|
-
align-items: center;
|
|
1112
|
-
justify-content: center;
|
|
1113
|
-
border: none;
|
|
1114
|
-
border-radius: 99px;
|
|
1115
|
-
cursor: pointer;
|
|
1116
|
-
}
|
|
1117
|
-
#msg-attach { background: transparent; color: var(--text3); }
|
|
1118
|
-
#msg-attach:hover { color: var(--text2); }
|
|
1119
|
-
#msg-send { background: var(--btn); color: var(--btn-text); }
|
|
1120
|
-
#msg-send:hover { opacity: 0.88; }
|
|
1121
|
-
#msg-thumbs { display: flex; gap: 8px; }
|
|
1122
|
-
#msg-thumbs[hidden] { display: none; }
|
|
1123
|
-
#msg-thumbs .thumb { cursor: pointer; }
|
|
1124
|
-
#msg-thumbs img { height: 44px; border-radius: 8px; border: 1px solid var(--line2); display: block; }
|
|
1125
|
-
#msg-thumbs .thumb:hover img { border-color: var(--red); opacity: 0.7; }
|
|
1126
|
-
|
|
1127
|
-
#toast {
|
|
1128
|
-
position: fixed;
|
|
1129
|
-
bottom: 18px;
|
|
1130
|
-
left: 50%;
|
|
1131
|
-
transform: translateX(-50%);
|
|
1132
|
-
background: var(--panel2);
|
|
1133
|
-
border: 1px solid var(--line2);
|
|
1134
|
-
color: var(--text);
|
|
1135
|
-
padding: 8px 18px;
|
|
1136
|
-
border-radius: 99px;
|
|
1137
|
-
font-size: 13px;
|
|
1138
|
-
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
|
|
1139
|
-
z-index: 10;
|
|
1140
|
-
max-width: 80vw;
|
|
1141
|
-
}
|
|
1142
|
-
|
|
1143
|
-
/* ---- inbox ---- */
|
|
1144
|
-
|
|
1145
|
-
.todo-card {
|
|
1146
|
-
display: flex;
|
|
1147
|
-
align-items: center;
|
|
1148
|
-
gap: 16px;
|
|
1149
|
-
padding: 16px 0;
|
|
1150
|
-
border-bottom: 1px solid var(--line);
|
|
1151
|
-
}
|
|
1152
|
-
.todo-card .todo-main { flex: 1; min-width: 0; }
|
|
1153
|
-
.todo-card .summary { font-size: 14px; font-weight: 500; }
|
|
1154
|
-
.todo-card .meta {
|
|
1155
|
-
display: flex;
|
|
1156
|
-
gap: 12px;
|
|
1157
|
-
margin-top: 5px;
|
|
1158
|
-
font-family: var(--mono);
|
|
1159
|
-
font-size: 10.5px;
|
|
1160
|
-
color: var(--text3);
|
|
1161
|
-
flex-wrap: wrap;
|
|
1162
|
-
}
|
|
1163
|
-
.todo-card .meta .gone { text-decoration: line-through; }
|
|
1164
|
-
|
|
1165
|
-
/* ---- split views (GitHub / Skills) ---- */
|
|
1166
|
-
|
|
1167
|
-
/* The list column grows with the viewport — 352px was cramped on wide
|
|
1168
|
-
screens (feedback 2026-07-11). */
|
|
1169
|
-
.split { flex: 1; min-height: 0; display: grid; grid-template-columns: clamp(340px, 27vw, 560px) minmax(0, 1fr); }
|
|
1170
|
-
.split-list { border-right: 1px solid var(--line); display: flex; flex-direction: column; min-height: 0; }
|
|
1171
|
-
.split-list .split-head { padding: 24px 18px 0; }
|
|
1172
|
-
.split-list .head-row { display: flex; align-items: baseline; gap: 10px; }
|
|
1173
|
-
.split-list h1 {
|
|
1174
|
-
margin: 0;
|
|
1175
|
-
font-family: var(--serif);
|
|
1176
|
-
font-size: 21px;
|
|
1177
|
-
font-weight: 500;
|
|
1178
|
-
letter-spacing: -0.015em;
|
|
1179
|
-
}
|
|
1180
|
-
.split-list .head-note {
|
|
1181
|
-
margin-left: auto;
|
|
1182
|
-
display: flex;
|
|
1183
|
-
align-items: center;
|
|
1184
|
-
gap: 5px;
|
|
1185
|
-
font-family: var(--mono);
|
|
1186
|
-
font-size: 10px;
|
|
1187
|
-
color: var(--text3);
|
|
1188
|
-
white-space: nowrap;
|
|
1189
|
-
}
|
|
1190
|
-
.split-list .sub-tabs { display: flex; gap: 4px; margin: 13px 0 10px; }
|
|
1191
|
-
.split-list .sub-tabs button {
|
|
1192
|
-
display: inline-flex;
|
|
1193
|
-
align-items: center;
|
|
1194
|
-
height: 28px;
|
|
1195
|
-
padding: 0 13px;
|
|
1196
|
-
border: none;
|
|
1197
|
-
border-radius: 99px;
|
|
1198
|
-
font-size: 12.5px;
|
|
1199
|
-
font-weight: 500;
|
|
1200
|
-
cursor: pointer;
|
|
1201
|
-
background: transparent;
|
|
1202
|
-
color: var(--text3);
|
|
1203
|
-
}
|
|
1204
|
-
.split-list .sub-tabs button.active { background: var(--panel2); color: var(--text); }
|
|
1205
|
-
.split-rows { flex: 1; overflow-y: auto; padding: 0 10px 14px; }
|
|
1206
|
-
.split-detail { overflow-y: auto; min-width: 0; }
|
|
1207
|
-
.split-detail .inner { max-width: 840px; padding: 30px 38px 44px; }
|
|
1208
|
-
.split-detail h1 {
|
|
1209
|
-
margin: 0;
|
|
1210
|
-
font-family: var(--serif);
|
|
1211
|
-
font-size: 25px;
|
|
1212
|
-
font-weight: 500;
|
|
1213
|
-
letter-spacing: -0.015em;
|
|
1214
|
-
line-height: 1.25;
|
|
1215
|
-
}
|
|
1216
|
-
.split-detail .empty { padding: 40px; color: var(--text3); font-size: 13px; }
|
|
1217
|
-
|
|
1218
|
-
.filter-input {
|
|
1219
|
-
width: calc(100% - 36px);
|
|
1220
|
-
margin: 14px 18px 8px;
|
|
1221
|
-
padding: 7px 13px;
|
|
1222
|
-
border: 1px solid var(--line);
|
|
1223
|
-
border-radius: 99px;
|
|
1224
|
-
background: var(--panel2);
|
|
1225
|
-
font-size: 12.5px;
|
|
1226
|
-
outline: none;
|
|
1227
|
-
}
|
|
1228
|
-
|
|
1229
|
-
/* GitHub rows + detail */
|
|
1230
|
-
.gh-row { padding: 9px 11px; border-radius: 10px; cursor: pointer; margin: 1px 0; }
|
|
1231
|
-
.gh-row:hover, .gh-row.selected { background: var(--panel2); }
|
|
1232
|
-
.gh-row .row1 { display: flex; align-items: center; gap: 9px; }
|
|
1233
|
-
.gh-row .row1 svg { width: 13px; height: 13px; flex: none; fill: none; stroke-width: 1.8; }
|
|
1234
|
-
.gh-row .row1 .t {
|
|
1235
|
-
flex: 1;
|
|
1236
|
-
min-width: 0;
|
|
1237
|
-
font-size: 13px;
|
|
1238
|
-
font-weight: 500;
|
|
1239
|
-
overflow: hidden;
|
|
1240
|
-
text-overflow: ellipsis;
|
|
1241
|
-
white-space: nowrap;
|
|
1242
|
-
}
|
|
1243
|
-
.gh-row .row2 {
|
|
1244
|
-
display: flex;
|
|
1245
|
-
gap: 10px;
|
|
1246
|
-
margin: 4px 0 0 22px;
|
|
1247
|
-
font-family: var(--mono);
|
|
1248
|
-
font-size: 10px;
|
|
1249
|
-
color: var(--text3);
|
|
1250
|
-
}
|
|
1251
|
-
.gh-row .row2 .queued-flag { color: var(--accent); }
|
|
1252
|
-
|
|
1253
|
-
.gh-label {
|
|
1254
|
-
font-size: 10px;
|
|
1255
|
-
font-weight: 600;
|
|
1256
|
-
letter-spacing: 0.06em;
|
|
1257
|
-
text-transform: uppercase;
|
|
1258
|
-
padding: 2px 9px;
|
|
1259
|
-
border-radius: 99px;
|
|
1260
|
-
background: var(--panel2);
|
|
1261
|
-
color: var(--text2);
|
|
1262
|
-
}
|
|
1263
|
-
.gh-checks { font-family: var(--mono); font-size: 11px; margin-left: 4px; }
|
|
1264
|
-
.gh-checks.passing { color: var(--green); }
|
|
1265
|
-
.gh-checks.failing { color: var(--red); }
|
|
1266
|
-
.gh-checks.pending { color: var(--amber); }
|
|
1267
|
-
.gh-body {
|
|
1268
|
-
margin-top: 16px;
|
|
1269
|
-
padding-bottom: 22px;
|
|
1270
|
-
border-bottom: 1px solid var(--line);
|
|
1271
|
-
font-size: 14px;
|
|
1272
|
-
line-height: 1.7;
|
|
1273
|
-
max-width: 68ch;
|
|
1274
|
-
word-break: break-word;
|
|
1275
|
-
}
|
|
1276
|
-
.gh-hand { margin-top: 24px; }
|
|
1277
|
-
.gh-hand .hand-label {
|
|
1278
|
-
display: flex;
|
|
1279
|
-
align-items: center;
|
|
1280
|
-
gap: 7px;
|
|
1281
|
-
font-size: 10.5px;
|
|
1282
|
-
font-weight: 600;
|
|
1283
|
-
letter-spacing: 0.09em;
|
|
1284
|
-
text-transform: uppercase;
|
|
1285
|
-
color: var(--text3);
|
|
1286
|
-
}
|
|
1287
|
-
.gh-hand .hand-label svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; }
|
|
1288
|
-
.gh-hand .hand-row { display: flex; align-items: flex-start; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
|
|
1289
|
-
.gh-hand .hand-row .k { font-size: 12px; color: var(--text3); width: 72px; flex: none; padding-top: 6px; }
|
|
1290
|
-
.gh-hand .hand-row .chips { display: flex; gap: 7px; flex-wrap: wrap; flex: 1; }
|
|
1291
|
-
.gh-hand .go-row { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
|
|
1292
|
-
.gh-hand .queued-ok { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--green); }
|
|
1293
|
-
.gh-unavailable { padding: 40px; color: var(--text3); font-size: 13px; max-width: 46ch; line-height: 1.7; }
|
|
1294
|
-
|
|
1295
|
-
/* Skills rows + detail */
|
|
1296
|
-
.skill-row { padding: 10px 12px; border-radius: 10px; cursor: pointer; margin: 1px 0; }
|
|
1297
|
-
.skill-row:hover, .skill-row.selected { background: var(--panel2); }
|
|
1298
|
-
.skill-row .row1 { display: flex; align-items: center; gap: 9px; }
|
|
1299
|
-
.skill-row .row1 svg { width: 13px; height: 13px; flex: none; fill: none; stroke: var(--text3); stroke-width: 1.8; stroke-linejoin: round; }
|
|
1300
|
-
.skill-row .name { font-family: var(--mono); font-size: 12.5px; font-weight: 600; }
|
|
1301
|
-
.skill-row .desc {
|
|
1302
|
-
font-size: 12px;
|
|
1303
|
-
color: var(--text3);
|
|
1304
|
-
margin: 4px 0 0 22px;
|
|
1305
|
-
line-height: 1.5;
|
|
1306
|
-
overflow: hidden;
|
|
1307
|
-
text-overflow: ellipsis;
|
|
1308
|
-
white-space: nowrap;
|
|
1309
|
-
}
|
|
1310
|
-
.skill-tag {
|
|
1311
|
-
font-size: 9.5px;
|
|
1312
|
-
font-weight: 600;
|
|
1313
|
-
text-transform: uppercase;
|
|
1314
|
-
letter-spacing: 0.08em;
|
|
1315
|
-
padding: 2px 8px;
|
|
1316
|
-
border-radius: 99px;
|
|
1317
|
-
color: var(--text3);
|
|
1318
|
-
background: var(--panel2);
|
|
1319
|
-
}
|
|
1320
|
-
.skill-tag.team { color: var(--accent); background: color-mix(in oklab, var(--accent) 12%, transparent); }
|
|
1321
|
-
.skill-tag.agents { color: var(--green); background: color-mix(in oklab, var(--green) 11%, transparent); }
|
|
1322
|
-
.skill-tag.global { color: var(--amber); background: color-mix(in oklab, var(--amber) 12%, transparent); }
|
|
1323
|
-
.skill-detail .title-row { display: flex; align-items: center; gap: 11px; flex-wrap: wrap; }
|
|
1324
|
-
.skill-detail .path-line { font-family: var(--mono); font-size: 11px; color: var(--text3); margin-top: 9px; word-break: break-all; }
|
|
1325
|
-
.skill-detail .desc { color: var(--text2); font-size: 14px; line-height: 1.65; margin-top: 12px; max-width: 60ch; }
|
|
1326
|
-
.skill-detail .used-row {
|
|
1327
|
-
display: flex;
|
|
1328
|
-
align-items: center;
|
|
1329
|
-
gap: 9px;
|
|
1330
|
-
padding: 8px 0;
|
|
1331
|
-
border-bottom: 1px solid var(--line);
|
|
1332
|
-
font-family: var(--mono);
|
|
1333
|
-
font-size: 12px;
|
|
1334
|
-
color: var(--text2);
|
|
1335
|
-
}
|
|
1336
|
-
.skill-detail .used-row svg { width: 12px; height: 12px; fill: none; stroke: var(--text3); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
|
|
1337
|
-
.skill-detail .content-head { display: flex; align-items: center; gap: 8px; margin: 26px 0 9px; }
|
|
1338
|
-
.skill-detail .content-head .section-label { margin: 0; }
|
|
1339
|
-
.skill-detail .content-head .spacer { flex: 1; }
|
|
1340
|
-
.skill-detail pre.content {
|
|
1341
|
-
margin: 0;
|
|
1342
|
-
padding: 16px 18px;
|
|
1343
|
-
background: var(--card);
|
|
1344
|
-
border: 1px solid var(--line);
|
|
1345
|
-
border-radius: 12px;
|
|
1346
|
-
font-family: var(--mono);
|
|
1347
|
-
font-size: 11.5px;
|
|
1348
|
-
line-height: 1.7;
|
|
1349
|
-
color: var(--text2);
|
|
1350
|
-
overflow-x: auto;
|
|
1351
|
-
white-space: pre-wrap;
|
|
1352
|
-
word-break: break-word;
|
|
1353
|
-
}
|
|
1354
|
-
.split-list .list-foot { flex: none; border-top: 1px solid var(--line); padding: 8px 10px; background: var(--bg); }
|
|
1355
|
-
.skill-row.pinned { margin: 0; }
|
|
1356
|
-
|
|
1357
|
-
/* ---- repo ---- */
|
|
1358
|
-
|
|
1359
|
-
.repo-file { display: flex; gap: 13px; font-family: var(--mono); font-size: 12px; padding: 3px 0; }
|
|
1360
|
-
.repo-file .st { width: 16px; flex: none; color: var(--green); }
|
|
1361
|
-
.repo-file .st.added { color: var(--accent); }
|
|
1362
|
-
.repo-file .st.deleted { color: var(--red); }
|
|
1363
|
-
.repo-file .p { color: var(--text2); word-break: break-all; }
|
|
1364
|
-
.commit-row { display: flex; gap: 13px; align-items: baseline; font-size: 13px; padding: 5px 0; }
|
|
1365
|
-
.commit-row .hash { font-family: var(--mono); font-size: 11px; color: var(--text3); flex: none; }
|
|
1366
|
-
.commit-row .subj { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
1367
|
-
.commit-row .when { font-family: var(--mono); font-size: 10.5px; color: var(--text3); flex: none; }
|
|
1368
|
-
.base-branch-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
|
|
1369
|
-
#base-branch {
|
|
1370
|
-
height: 30px;
|
|
1371
|
-
padding: 0 10px;
|
|
1372
|
-
border: 1px solid var(--line2);
|
|
1373
|
-
border-radius: 9px;
|
|
1374
|
-
background: var(--panel2);
|
|
1375
|
-
color: var(--text);
|
|
1376
|
-
font-family: var(--mono);
|
|
1377
|
-
font-size: 12px;
|
|
1378
|
-
outline: none;
|
|
1379
|
-
cursor: pointer;
|
|
1380
|
-
max-width: 320px;
|
|
1381
|
-
}
|
|
1382
|
-
|
|
1383
|
-
.commit-row.clickable { cursor: pointer; border-radius: 8px; padding: 5px 8px; margin: 0 -8px; align-items: center; }
|
|
1384
|
-
.commit-row.clickable:hover { background: var(--panel2); }
|
|
1385
|
-
.commit-row .chev {
|
|
1386
|
-
width: 10px;
|
|
1387
|
-
height: 10px;
|
|
1388
|
-
flex: none;
|
|
1389
|
-
fill: none;
|
|
1390
|
-
stroke: var(--text3);
|
|
1391
|
-
stroke-width: 2.2;
|
|
1392
|
-
stroke-linecap: round;
|
|
1393
|
-
transition: transform 0.12s ease;
|
|
1394
|
-
}
|
|
1395
|
-
.commit-row.open .chev { transform: rotate(90deg); }
|
|
1396
|
-
.commit-diff { margin: 2px 0 8px 22px; }
|
|
1397
|
-
.commit-gh { display: inline-block; font-size: 11.5px; margin: 4px 0 2px; }
|
|
1398
|
-
.commit-head {
|
|
1399
|
-
margin: 4px 0 8px;
|
|
1400
|
-
padding: 10px 13px;
|
|
1401
|
-
background: var(--card);
|
|
1402
|
-
border: 1px solid var(--line);
|
|
1403
|
-
border-radius: 10px;
|
|
1404
|
-
font-family: var(--mono);
|
|
1405
|
-
font-size: 11px;
|
|
1406
|
-
line-height: 1.6;
|
|
1407
|
-
color: var(--text2);
|
|
1408
|
-
overflow-x: auto;
|
|
1409
|
-
white-space: pre-wrap;
|
|
1410
|
-
}
|
|
1411
|
-
.repo-diff {
|
|
1412
|
-
border: 1px solid var(--line);
|
|
1413
|
-
border-radius: 12px;
|
|
1414
|
-
background: var(--card);
|
|
1415
|
-
margin-top: 10px;
|
|
1416
|
-
}
|
|
1417
|
-
.repo-diff > summary { cursor: pointer; padding: 10px 14px; font-size: 12.5px; font-weight: 500; color: var(--text2); }
|
|
1418
|
-
.repo-diff .diff-wrap { padding: 0 14px 12px; }
|
|
1419
|
-
|
|
1420
|
-
/* ---- compare view (spec 010) ---- */
|
|
1421
|
-
|
|
1422
|
-
.compare-view { flex: 1; min-height: 0; overflow-y: auto; padding: 26px 40px; }
|
|
1423
|
-
.compare-view .inner { max-width: 980px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
|
|
1424
|
-
.compare-head h1 {
|
|
1425
|
-
margin: 0 0 2px;
|
|
1426
|
-
font-family: var(--serif);
|
|
1427
|
-
font-size: 24px;
|
|
1428
|
-
font-weight: 500;
|
|
1429
|
-
letter-spacing: -0.015em;
|
|
1430
|
-
}
|
|
1431
|
-
.compare-head .dim { font-size: 12.5px; }
|
|
1432
|
-
.compare-cols { display: flex; gap: 12px; align-items: stretch; }
|
|
1433
|
-
.compare-col {
|
|
1434
|
-
flex: 1;
|
|
1435
|
-
min-width: 0;
|
|
1436
|
-
border: 1px solid var(--line);
|
|
1437
|
-
border-radius: 13px;
|
|
1438
|
-
background: var(--card);
|
|
1439
|
-
box-shadow: var(--shadow-sm);
|
|
1440
|
-
padding: 14px;
|
|
1441
|
-
display: flex;
|
|
1442
|
-
flex-direction: column;
|
|
1443
|
-
gap: 8px;
|
|
1444
|
-
}
|
|
1445
|
-
.compare-col .col-head { display: flex; align-items: center; gap: 8px; }
|
|
1446
|
-
.compare-col .variant-letter { font-family: var(--mono); font-weight: 600; font-size: 16px; color: var(--accent); }
|
|
1447
|
-
.compare-col .col-meta { font-size: 11px; font-family: var(--mono); color: var(--text3); }
|
|
1448
|
-
.compare-col pre {
|
|
1449
|
-
margin: 0;
|
|
1450
|
-
font-family: var(--mono);
|
|
1451
|
-
font-size: 11px;
|
|
1452
|
-
line-height: 1.55;
|
|
1453
|
-
white-space: pre-wrap;
|
|
1454
|
-
word-break: break-word;
|
|
1455
|
-
overflow: auto;
|
|
1456
|
-
color: var(--text2);
|
|
1457
|
-
}
|
|
1458
|
-
.compare-col .col-stat { max-height: 140px; }
|
|
1459
|
-
.compare-col .col-handoff { max-height: 80px; color: var(--text3); }
|
|
1460
|
-
.compare-col .btn-dark { margin-top: auto; justify-content: center; }
|
|
1461
|
-
.compare-diffs { display: flex; flex-direction: column; gap: 6px; }
|
|
1462
|
-
.compare-diff { border: 1px solid var(--line); border-radius: 11px; background: var(--card); }
|
|
1463
|
-
.compare-diff > summary { cursor: pointer; padding: 8px 12px; font-size: 12.5px; font-weight: 500; color: var(--text2); }
|
|
1464
|
-
.compare-diff .diff-body { padding: 4px 10px 10px; }
|
|
1465
|
-
|
|
1466
|
-
/* ---- unified diff renderer (spec 009) ---- */
|
|
1467
|
-
|
|
1468
|
-
.diff-file { border: 1px solid var(--line); border-radius: 9px; margin: 3px 0; background: var(--bg); }
|
|
1469
|
-
.diff-file summary { cursor: pointer; padding: 5px 10px; font-family: var(--mono); font-size: 11.5px; font-weight: 600; }
|
|
1470
|
-
.diff-file pre {
|
|
1471
|
-
margin: 0;
|
|
1472
|
-
padding: 6px 10px;
|
|
1473
|
-
border-top: 1px solid var(--line);
|
|
1474
|
-
font-family: var(--mono);
|
|
1475
|
-
font-size: 11.5px;
|
|
1476
|
-
line-height: 1.55;
|
|
1477
|
-
overflow-x: auto;
|
|
1478
|
-
white-space: pre;
|
|
1479
|
-
}
|
|
1480
|
-
.diff-add { color: var(--green); }
|
|
1481
|
-
.diff-del { color: var(--red); }
|
|
1482
|
-
.diff-hunk { color: var(--accent); opacity: 0.8; }
|
|
1483
|
-
.diff-meta { color: var(--text3); opacity: 0.8; }
|
|
1484
|
-
|
|
1485
|
-
/* ---- bookmarklets (spec 011) ---- */
|
|
1486
|
-
|
|
1487
|
-
#bm-panel .bm-help { font-size: 13px; color: var(--text2); line-height: 1.65; margin: 10px 0; max-width: 56ch; }
|
|
1488
|
-
.bm-auto { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 10px; cursor: pointer; }
|
|
1489
|
-
.bm-auto input { accent-color: var(--accent); }
|
|
1490
|
-
.bm-filter {
|
|
1491
|
-
width: 100%;
|
|
1492
|
-
max-width: 340px;
|
|
1493
|
-
background: var(--panel2);
|
|
1494
|
-
border: 1px solid var(--line);
|
|
1495
|
-
border-radius: 99px;
|
|
1496
|
-
padding: 6px 13px;
|
|
1497
|
-
font-size: 12.5px;
|
|
1498
|
-
outline: none;
|
|
1499
|
-
margin: 10px 0 6px;
|
|
1500
|
-
display: block;
|
|
1501
|
-
}
|
|
1502
|
-
.bm-row { display: flex; align-items: center; gap: 8px; padding: 3px 0; min-width: 0; }
|
|
1503
|
-
a.bm {
|
|
1504
|
-
display: inline-block;
|
|
1505
|
-
padding: 4px 12px;
|
|
1506
|
-
border: 1px dashed var(--line2);
|
|
1507
|
-
border-radius: 99px;
|
|
1508
|
-
background: var(--panel2);
|
|
1509
|
-
color: var(--text);
|
|
1510
|
-
font-family: var(--mono);
|
|
1511
|
-
font-size: 12px;
|
|
1512
|
-
text-decoration: none;
|
|
1513
|
-
cursor: grab;
|
|
1514
|
-
white-space: nowrap;
|
|
1515
|
-
overflow: hidden;
|
|
1516
|
-
text-overflow: ellipsis;
|
|
1517
|
-
}
|
|
1518
|
-
a.bm:hover { border-color: var(--accent-line); color: var(--accent); text-decoration: none; }
|
|
1519
|
-
.bm-copy {
|
|
1520
|
-
background: none;
|
|
1521
|
-
border: 1px solid var(--line);
|
|
1522
|
-
color: var(--text3);
|
|
1523
|
-
padding: 3px 10px;
|
|
1524
|
-
border-radius: 99px;
|
|
1525
|
-
cursor: pointer;
|
|
1526
|
-
font-size: 11.5px;
|
|
1527
|
-
}
|
|
1528
|
-
.bm-copy:hover { border-color: var(--text3); color: var(--text); }
|
|
1529
|
-
.bm-hint { font-size: 11.5px; color: var(--text3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
1530
|
-
|
|
1531
|
-
/* ---- workflow builder (spec 012) ---- */
|
|
1532
|
-
|
|
1533
|
-
.wb-grid { flex: 1; min-height: 0; display: grid; grid-template-columns: minmax(0, 1fr) 300px; }
|
|
1534
|
-
.wb-main { overflow-y: auto; min-width: 0; }
|
|
1535
|
-
.wb-inner { max-width: 620px; margin: 0 auto; padding: 30px 40px 60px; }
|
|
1536
|
-
|
|
1537
|
-
.wb-head { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
|
|
1538
|
-
.wb-head h1 {
|
|
1539
|
-
margin: 0;
|
|
1540
|
-
font-family: var(--serif);
|
|
1541
|
-
font-size: 25px;
|
|
1542
|
-
font-weight: 500;
|
|
1543
|
-
letter-spacing: -0.015em;
|
|
1544
|
-
flex: 1;
|
|
1545
|
-
min-width: 180px;
|
|
1546
|
-
}
|
|
1547
|
-
.wb-head .btn-dark { height: 29px; }
|
|
1548
|
-
|
|
1549
|
-
.wb-meta { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
|
|
1550
|
-
.wb-name-pill {
|
|
1551
|
-
display: inline-flex;
|
|
1552
|
-
align-items: center;
|
|
1553
|
-
gap: 7px;
|
|
1554
|
-
height: 30px;
|
|
1555
|
-
padding: 0 13px;
|
|
1556
|
-
border: 1px solid var(--line);
|
|
1557
|
-
border-radius: 99px;
|
|
1558
|
-
background: var(--panel2);
|
|
1559
|
-
}
|
|
1560
|
-
.wb-name-pill svg { width: 11px; height: 11px; fill: none; stroke: var(--text3); stroke-width: 2; stroke-linecap: round; flex: none; }
|
|
1561
|
-
.wb-name-pill input {
|
|
1562
|
-
border: none;
|
|
1563
|
-
background: transparent;
|
|
1564
|
-
color: var(--text);
|
|
1565
|
-
font-family: var(--mono);
|
|
1566
|
-
font-size: 12px;
|
|
1567
|
-
font-weight: 600;
|
|
1568
|
-
outline: none;
|
|
1569
|
-
padding: 0;
|
|
1570
|
-
width: 170px;
|
|
1571
|
-
}
|
|
1572
|
-
#wb-count { font-size: 11px; }
|
|
1573
|
-
|
|
1574
|
-
.wb-load { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; margin-top: 12px; }
|
|
1575
|
-
.wb-load .wb-k { font-size: 12px; color: var(--text3); }
|
|
1576
|
-
.wb-load .chip-toggle { height: 25px; font-size: 11.5px; }
|
|
1577
|
-
|
|
1578
|
-
.wb-import {
|
|
1579
|
-
margin-top: 14px;
|
|
1580
|
-
border: 1px solid var(--accent-line);
|
|
1581
|
-
border-radius: 13px;
|
|
1582
|
-
background: var(--card);
|
|
1583
|
-
padding: 13px 14px;
|
|
1584
|
-
box-shadow: var(--shadow-sm);
|
|
1585
|
-
}
|
|
1586
|
-
.wb-import-label {
|
|
1587
|
-
font-size: 10.5px;
|
|
1588
|
-
font-weight: 600;
|
|
1589
|
-
letter-spacing: 0.09em;
|
|
1590
|
-
text-transform: uppercase;
|
|
1591
|
-
color: var(--accent);
|
|
1592
|
-
margin-bottom: 8px;
|
|
1593
|
-
}
|
|
1594
|
-
.wb-import textarea {
|
|
1595
|
-
width: 100%;
|
|
1596
|
-
border: 1px solid var(--line);
|
|
1597
|
-
border-radius: 9px;
|
|
1598
|
-
background: var(--bg);
|
|
1599
|
-
color: var(--text);
|
|
1600
|
-
font-family: var(--mono);
|
|
1601
|
-
font-size: 11.5px;
|
|
1602
|
-
line-height: 1.6;
|
|
1603
|
-
resize: vertical;
|
|
1604
|
-
outline: none;
|
|
1605
|
-
padding: 9px 11px;
|
|
1606
|
-
}
|
|
1607
|
-
.wb-import-actions { display: flex; gap: 8px; margin-top: 9px; }
|
|
1608
|
-
.wb-import-actions .btn-dark, .wb-import-actions .btn-ghost { height: 28px; font-size: 12px; }
|
|
1609
|
-
|
|
1610
|
-
#wb-steps { margin-top: 16px; }
|
|
1611
|
-
|
|
1612
|
-
/* insertion gaps: a hairline at rest, dashed slots while dragging, an accent
|
|
1613
|
-
"drop to insert" slot under the pointer */
|
|
1614
|
-
.wb-gap { position: relative; display: flex; align-items: center; justify-content: center; height: 16px; transition: height 0.12s ease; }
|
|
1615
|
-
.wb-gap-inner {
|
|
1616
|
-
width: 1.5px;
|
|
1617
|
-
height: 100%;
|
|
1618
|
-
background: var(--line2);
|
|
1619
|
-
pointer-events: none;
|
|
1620
|
-
overflow: hidden;
|
|
1621
|
-
font-size: 0;
|
|
1622
|
-
color: transparent;
|
|
1623
|
-
}
|
|
1624
|
-
.wb-dragging .wb-gap { height: 28px; }
|
|
1625
|
-
.wb-dragging .wb-gap-inner {
|
|
1626
|
-
width: 100%;
|
|
1627
|
-
height: 16px;
|
|
1628
|
-
border: 1.5px dashed var(--line2);
|
|
1629
|
-
border-radius: 9px;
|
|
1630
|
-
background: transparent;
|
|
1631
|
-
}
|
|
1632
|
-
.wb-dragging .wb-gap.over { height: 46px; }
|
|
1633
|
-
.wb-dragging .wb-gap.over .wb-gap-inner {
|
|
1634
|
-
height: 36px;
|
|
1635
|
-
border-color: var(--accent);
|
|
1636
|
-
border-radius: 11px;
|
|
1637
|
-
background: color-mix(in oklab, var(--accent) 7%, transparent);
|
|
1638
|
-
display: flex;
|
|
1639
|
-
align-items: center;
|
|
1640
|
-
justify-content: center;
|
|
1641
|
-
font-size: 11px;
|
|
1642
|
-
font-weight: 600;
|
|
1643
|
-
color: var(--accent);
|
|
1644
|
-
}
|
|
1645
|
-
/* empty canvas: one big always-visible drop slot */
|
|
1646
|
-
.wb-gap.tall, .wb-dragging .wb-gap.tall { height: 72px; }
|
|
1647
|
-
.wb-gap.tall .wb-gap-inner, .wb-dragging .wb-gap.tall .wb-gap-inner {
|
|
1648
|
-
width: 100%;
|
|
1649
|
-
height: 100%;
|
|
1650
|
-
border: 1.5px dashed var(--line2);
|
|
1651
|
-
border-radius: 13px;
|
|
1652
|
-
background: transparent;
|
|
1653
|
-
display: flex;
|
|
1654
|
-
align-items: center;
|
|
1655
|
-
justify-content: center;
|
|
1656
|
-
font-size: 12px;
|
|
1657
|
-
color: var(--text3);
|
|
1658
|
-
}
|
|
1659
|
-
.wb-gap.tall.over .wb-gap-inner, .wb-dragging .wb-gap.tall.over .wb-gap-inner {
|
|
1660
|
-
border-color: var(--accent);
|
|
1661
|
-
color: var(--accent);
|
|
1662
|
-
background: color-mix(in oklab, var(--accent) 7%, transparent);
|
|
1663
|
-
}
|
|
1664
|
-
|
|
1665
|
-
.wb-step {
|
|
1666
|
-
display: flex;
|
|
1667
|
-
gap: 12px;
|
|
1668
|
-
align-items: center;
|
|
1669
|
-
padding: 12px 15px;
|
|
1670
|
-
border: 1px solid var(--line2);
|
|
1671
|
-
border-radius: 13px;
|
|
1672
|
-
box-shadow: var(--shadow-sm);
|
|
1673
|
-
cursor: grab;
|
|
1674
|
-
background: var(--card);
|
|
1675
|
-
}
|
|
1676
|
-
.wb-step.drag-src { opacity: 0.35; }
|
|
1677
|
-
.wb-step .grip { flex: none; fill: var(--text3); }
|
|
1678
|
-
.wb-step .num { font-size: 10px; color: var(--text3); flex: none; width: 18px; }
|
|
1679
|
-
.wb-ic { width: 14px; height: 14px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linejoin: round; flex: none; }
|
|
1680
|
-
.wb-step-main { flex: 1; min-width: 0; }
|
|
1681
|
-
.wb-step-name { font-size: 12.5px; font-weight: 600; color: var(--text); }
|
|
1682
|
-
.wb-step-desc {
|
|
1683
|
-
font-size: 11px;
|
|
1684
|
-
color: var(--text3);
|
|
1685
|
-
margin-top: 2px;
|
|
1686
|
-
line-height: 1.45;
|
|
1687
|
-
overflow: hidden;
|
|
1688
|
-
text-overflow: ellipsis;
|
|
1689
|
-
white-space: nowrap;
|
|
1690
|
-
}
|
|
1691
|
-
.wb-badge {
|
|
1692
|
-
flex: none;
|
|
1693
|
-
font-size: 9.5px;
|
|
1694
|
-
font-weight: 600;
|
|
1695
|
-
letter-spacing: 0.06em;
|
|
1696
|
-
text-transform: uppercase;
|
|
1697
|
-
padding: 2px 8px;
|
|
1698
|
-
border-radius: 99px;
|
|
1699
|
-
color: var(--text2);
|
|
1700
|
-
background: var(--panel2);
|
|
1701
|
-
}
|
|
1702
|
-
.wb-badge.unknown { color: var(--amber); background: color-mix(in oklab, var(--amber) 13%, transparent); }
|
|
1703
|
-
.wb-badge.check { color: var(--green); background: color-mix(in oklab, var(--green) 12%, transparent); }
|
|
1704
|
-
.wb-remove {
|
|
1705
|
-
width: 24px;
|
|
1706
|
-
height: 24px;
|
|
1707
|
-
flex: none;
|
|
1708
|
-
display: inline-flex;
|
|
1709
|
-
align-items: center;
|
|
1710
|
-
justify-content: center;
|
|
1711
|
-
border: none;
|
|
1712
|
-
border-radius: 99px;
|
|
1713
|
-
background: transparent;
|
|
1714
|
-
color: var(--text3);
|
|
1715
|
-
cursor: pointer;
|
|
1716
|
-
font-size: 14px;
|
|
1717
|
-
}
|
|
1718
|
-
.wb-remove:hover { color: var(--red); background: color-mix(in oklab, var(--red) 10%, transparent); }
|
|
1719
|
-
.wb-flow-note { display: flex; align-items: center; gap: 9px; justify-content: center; margin-top: 2px; font-size: 11.5px; color: var(--text3); }
|
|
1720
|
-
.wb-flow-note svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
|
|
1721
|
-
|
|
1722
|
-
.wb-aside { border-left: 1px solid var(--line); background: var(--panel); overflow-y: auto; padding: 24px 16px; }
|
|
1723
|
-
.wb-hint { font-size: 11px; color: var(--text3); margin-bottom: 9px; line-height: 1.5; }
|
|
1724
|
-
#wb-palette { display: flex; flex-direction: column; gap: 6px; }
|
|
1725
|
-
.wb-skill {
|
|
1726
|
-
display: flex;
|
|
1727
|
-
align-items: center;
|
|
1728
|
-
gap: 8px;
|
|
1729
|
-
padding: 8px 12px;
|
|
1730
|
-
border: 1px solid var(--line);
|
|
1731
|
-
border-radius: 99px;
|
|
1732
|
-
background: var(--card);
|
|
1733
|
-
cursor: grab;
|
|
1734
|
-
}
|
|
1735
|
-
.wb-skill:hover { border-color: var(--accent-line); }
|
|
1736
|
-
.wb-skill .wb-ic { width: 12px; height: 12px; }
|
|
1737
|
-
.wb-skill .name { font-size: 11.5px; font-weight: 600; color: var(--text2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
1738
|
-
.wb-skill-right { margin-left: auto; display: flex; align-items: center; gap: 7px; flex: none; }
|
|
1739
|
-
.wb-skill .in-flow { width: 11px; height: 11px; fill: none; stroke: var(--green); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
|
|
1740
|
-
.wb-skill .dots { width: 10px; height: 10px; fill: var(--text3); }
|
|
1741
|
-
|
|
1742
|
-
.wb-yaml-head { display: flex; align-items: center; gap: 8px; margin: 20px 0 9px; }
|
|
1743
|
-
.wb-yaml-head .spacer { flex: 1; }
|
|
1744
|
-
.wb-yaml {
|
|
1745
|
-
margin: 0;
|
|
1746
|
-
padding: 12px 14px;
|
|
1747
|
-
background: var(--bg);
|
|
1748
|
-
border: 1px solid var(--line);
|
|
1749
|
-
border-radius: 11px;
|
|
1750
|
-
font-family: var(--mono);
|
|
1751
|
-
font-size: 10.5px;
|
|
1752
|
-
line-height: 1.7;
|
|
1753
|
-
color: var(--text2);
|
|
1754
|
-
overflow-x: auto;
|
|
1755
|
-
white-space: pre-wrap;
|
|
1756
|
-
}
|
|
1757
|
-
.wb-note { display: flex; align-items: flex-start; gap: 7px; margin-top: 10px; font-size: 11px; color: var(--text3); line-height: 1.5; }
|
|
1758
|
-
.wb-note svg { flex: none; margin-top: 1px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
|
|
1759
|
-
|
|
1760
|
-
/* narrow screens: sidebar shrinks, splits stack */
|
|
1761
|
-
@media (max-width: 900px) {
|
|
1762
|
-
#sidebar { width: 258px; min-width: 258px; }
|
|
1763
|
-
.split { grid-template-columns: 1fr; grid-template-rows: minmax(0, 45%) minmax(0, 1fr); }
|
|
1764
|
-
.split-list { border-right: none; border-bottom: 1px solid var(--line); }
|
|
1765
|
-
.wb-grid { grid-template-columns: 1fr; grid-template-rows: minmax(0, 1fr) minmax(0, 45%); }
|
|
1766
|
-
.wb-aside { border-left: none; border-top: 1px solid var(--line); }
|
|
1767
|
-
}
|