mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-08 10:02:56 +08:00
* fix(control-ui): make long /btw side results scrollable The BTW side-result card in Control UI expanded to the full height of its content on desktop, so answers taller than the viewport couldn't be read. Constrain the result body with a max-height and overflow:auto so it scrolls in place, while keeping the existing mobile overlay behavior intact. - Add max-height/min(55vh,480px), overflow:auto, and overscroll-behavior:contain to .chat-side-result__body for non-mobile viewports. - Reset those rules inside the mobile media query so the whole card still scrolls as a fixed overlay. - Add a lightweight browser test that verifies the body is scrollable on desktop and the mobile overlay still scrolls as a whole. * test(ui): consolidate side-result scroll coverage * chore: keep release notes in PR metadata * test(ui): verify side-result scroll interactions --------- Co-authored-by: Peter Steinberger <steipete@gmail.com>