diff --git a/demo/index.html b/demo/index.html index c8017cc..b9b6a7b 100644 --- a/demo/index.html +++ b/demo/index.html @@ -162,6 +162,24 @@ .mode-toggle button:hover:not(.active) { background:var(--bg-hover); border-color:var(--border-accent); } + /* ── Agent selector buttons ── */ + .agent-selector { + display:flex; gap:0; margin-top:6px; + } + .agent-selector button { + flex:1; padding:5px 8px; border:1px solid var(--border); + background:#fff; color:var(--text-dim); cursor:pointer; + font-size:11px; font-weight:500; transition: all .12s; + } + .agent-selector button:first-child { border-radius:var(--radius-sm) 0 0 var(--radius-sm); } + .agent-selector button:last-child { border-radius:0 var(--radius-sm) var(--radius-sm) 0; } + .agent-selector button:hover:not(.active) { + background:var(--bg-hover); border-color:var(--border-accent); + } + .agent-selector button.active { color:#fff; z-index:1; } + .agent-selector button.agent-claude.active { background:var(--purple); border-color:var(--purple); } + .agent-selector button.agent-codex.active { background:#0ea5e9; border-color:#0ea5e9; } + .agent-selector button.agent-zcode.active { background:#f59e0b; border-color:#f59e0b; } #sidebar .modules { padding:4px 0; } @@ -386,11 +404,16 @@ - +