myrlin-workbook 1.2.0-alpha.2 → 1.2.0-alpha.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/web/public/styles.css +16 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "myrlin-workbook",
|
|
3
|
-
"version": "1.2.0-alpha.
|
|
3
|
+
"version": "1.2.0-alpha.3",
|
|
4
4
|
"description": "Browser-based project manager for AI coding assistants (Claude Code, ChatGPT Codex). Multi-provider session discovery, search, live terminals, docs, kanban, themes.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -10224,13 +10224,25 @@ html {
|
|
|
10224
10224
|
fades to transparent before reaching the xterm canvas; the xterm
|
|
10225
10225
|
canvas paints over the pane background, so text contrast is never
|
|
10226
10226
|
reduced by the tint (Pitfall F mitigation). */
|
|
10227
|
+
/* Per-design 2026-05-11: pane-provider visual treatment bumped to be
|
|
10228
|
+
noticeable at-a-glance for mixed-provider grids. Combines a 3px solid
|
|
10229
|
+
accent strip at top (was 1px), a deeper top-fade tint (was 24px), and
|
|
10230
|
+
a 2px bottom accent. Whole-pane subtle background tint via color-mix
|
|
10231
|
+
(12% saturation) sits BEHIND the xterm canvas; xterm paints opaque
|
|
10232
|
+
over its own area so text contrast is never reduced (Pitfall F). */
|
|
10227
10233
|
.terminal-pane[data-provider="claude"]:not(.terminal-pane-empty) {
|
|
10228
|
-
border-top:
|
|
10229
|
-
|
|
10234
|
+
border-top: 3px solid var(--provider-claude-accent);
|
|
10235
|
+
border-bottom: 2px solid var(--provider-claude-accent);
|
|
10236
|
+
background:
|
|
10237
|
+
linear-gradient(180deg, var(--provider-claude-tint) 0, transparent 64px),
|
|
10238
|
+
color-mix(in srgb, var(--mauve) 4%, var(--bg-primary));
|
|
10230
10239
|
}
|
|
10231
10240
|
.terminal-pane[data-provider="codex"]:not(.terminal-pane-empty) {
|
|
10232
|
-
border-top:
|
|
10233
|
-
|
|
10241
|
+
border-top: 3px solid var(--provider-codex-accent);
|
|
10242
|
+
border-bottom: 2px solid var(--provider-codex-accent);
|
|
10243
|
+
background:
|
|
10244
|
+
linear-gradient(180deg, var(--provider-codex-tint) 0, transparent 64px),
|
|
10245
|
+
color-mix(in srgb, var(--green) 4%, var(--bg-primary));
|
|
10234
10246
|
}
|
|
10235
10247
|
|
|
10236
10248
|
/* 2px provider stripe on the left edge of the project accordion. */
|