UI: expand-to-canvas, session navigation, plugin SDK fixes (#49483)

* Plugins: fix signal SDK circular re-exports and reserved commands TDZ

* UI: add expand-to-canvas button and in-app session navigation

* changelog: UI expand/navigate and plugin TDZ/import fixes
This commit is contained in:
Val Alexander
2026-03-18 00:07:53 -05:00
committed by GitHub
parent 0354d49a82
commit 5464ad113e
12 changed files with 296 additions and 84 deletions

View File

@@ -1312,6 +1312,96 @@
font: inherit;
}
/* Code block wrapper chrome (generated by markdown renderer) */
.code-block-wrapper {
position: relative;
border-radius: 6px;
overflow: hidden;
margin-top: 0.75em;
}
.code-block-wrapper pre {
margin: 0;
border-radius: 0 0 6px 6px;
}
.code-block-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
padding: 4px 8px 4px 12px;
background: rgba(0, 0, 0, 0.25);
font-size: 12px;
line-height: 1;
}
:root[data-theme-mode="light"] .code-block-header {
background: rgba(0, 0, 0, 0.08);
}
.code-block-lang {
color: var(--muted);
font-family: var(--mono);
font-size: 11px;
text-transform: lowercase;
user-select: none;
}
.code-block-copy {
appearance: none;
border: none;
background: transparent;
color: var(--muted);
font-size: 11px;
font-family: var(--font-body);
cursor: pointer;
padding: 2px 6px;
border-radius: var(--radius-sm);
transition:
color 150ms ease,
background 150ms ease;
}
.code-block-copy:hover {
color: var(--text);
background: rgba(255, 255, 255, 0.1);
}
:root[data-theme-mode="light"] .code-block-copy:hover {
background: rgba(0, 0, 0, 0.08);
}
.code-block-copy__done {
display: none;
}
.code-block-copy.copied .code-block-copy__idle {
display: none;
}
.code-block-copy.copied .code-block-copy__done {
display: inline;
color: var(--success, #22c55e);
}
.json-collapse {
margin-top: 0.75em;
}
.json-collapse summary {
cursor: pointer;
font-size: 12px;
color: var(--muted);
padding: 4px 8px;
user-select: none;
}
.json-collapse summary:hover {
color: var(--text);
}
/* ===========================================
Lists
=========================================== */