diff --git a/CHANGELOG.md b/CHANGELOG.md index 5afd3a1de..b7db22b5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ - Docs: document built-in model shorthands + precedence (user config wins). ### Fixes +- Control UI: prevent overlapping action buttons in Discord guild rules on narrow layouts. - Android: tapping the foreground service notification brings the app to the front. (#179) — thanks @Syhids - Cron tool passes `id` to the gateway for update/remove/run/runs (keeps `jobId` input). (#180) — thanks @adamgall - Control UI: chat view uses page scroll with sticky header/sidebar and fixed composer (no inner scroll frame). diff --git a/ui/src/styles/components.css b/ui/src/styles/components.css index 716b58598..78a14c295 100644 --- a/ui/src/styles/components.css +++ b/ui/src/styles/components.css @@ -334,6 +334,7 @@ .list { display: grid; gap: 12px; + container-type: inline-size; } .list-item { @@ -371,12 +372,27 @@ min-width: 220px; } +.list-meta .btn { + padding: 6px 10px; +} + .list-meta .field input, .list-meta .field textarea, .list-meta .field select { width: 100%; } +@container (max-width: 560px) { + .list-item { + grid-template-columns: 1fr; + } + + .list-meta { + min-width: 0; + text-align: left; + } +} + .chip-row { display: flex; flex-wrap: wrap;