fix: config/debug UI overflow (#1715)

Thanks @saipreetham589.

Co-authored-by: SaiPreetham <saipreetham.pesu@gmail.com>
This commit is contained in:
Peter Steinberger
2026-01-25 13:20:37 +00:00
parent 97487a51a0
commit 22cf2b6766
4 changed files with 7 additions and 2 deletions

View File

@@ -30,6 +30,7 @@ Docs: https://docs.clawd.bot
- Dev: add prek pre-commit hooks + dependabot config for weekly updates. (#1720) Thanks @dguido. - Dev: add prek pre-commit hooks + dependabot config for weekly updates. (#1720) Thanks @dguido.
### Fixes ### Fixes
- Web UI: fix config/debug layout overflow, scrolling, and code block sizing. (#1715) Thanks @saipreetham589.
- Web UI: show Stop button during active runs, swap back to New session when idle. (#1664) Thanks @ndbroadbent. - Web UI: show Stop button during active runs, swap back to New session when idle. (#1664) Thanks @ndbroadbent.
- Web UI: clear stale disconnect banners on reconnect; allow form saves with unsupported schema paths but block missing schema. (#1707) Thanks @Glucksberg. - Web UI: clear stale disconnect banners on reconnect; allow form saves with unsupported schema paths but block missing schema. (#1707) Thanks @Glucksberg.
- Web UI: hide internal `message_id` hints in chat bubbles. - Web UI: hide internal `message_id` hints in chat bubbles.

View File

@@ -593,6 +593,7 @@
border: 1px solid var(--border); border: 1px solid var(--border);
max-height: 360px; max-height: 360px;
overflow: auto; overflow: auto;
max-width: 100%;
} }
:root[data-theme="light"] .code-block, :root[data-theme="light"] .code-block,

View File

@@ -7,7 +7,7 @@
display: grid; display: grid;
grid-template-columns: 260px minmax(0, 1fr); grid-template-columns: 260px minmax(0, 1fr);
gap: 0; gap: 0;
min-height: calc(100vh - 160px); height: calc(100vh - 160px);
margin: -16px; margin: -16px;
border-radius: var(--radius-xl); border-radius: var(--radius-xl);
overflow: hidden; overflow: hidden;
@@ -24,6 +24,8 @@
flex-direction: column; flex-direction: column;
background: var(--bg-accent); background: var(--bg-accent);
border-right: 1px solid var(--border); border-right: 1px solid var(--border);
min-height: 0;
overflow: hidden;
} }
:root[data-theme="light"] .config-sidebar { :root[data-theme="light"] .config-sidebar {
@@ -245,7 +247,7 @@
min-height: 0; min-height: 0;
min-width: 0; min-width: 0;
background: var(--panel); background: var(--panel);
overflow-y: auto; overflow: hidden;
} }
/* Actions Bar */ /* Actions Bar */

View File

@@ -539,6 +539,7 @@
.stack { .stack {
display: grid; display: grid;
gap: 12px; gap: 12px;
grid-template-columns: minmax(0, 1fr);
} }
.filters { .filters {