Make the popped-out panel the size of its window, not the size of its content - #31
Merged
Conversation
… content Popped out, the panel was sized 100% of a host element that has no height of its own, so the percentage resolved to "as tall as the content". A feed as tall as its content never scrolls, and the composer, the send targets and the status bar sat below the bottom edge of a window whose body does not scroll either: nothing could be typed, sent or chosen from the pop-out. The panel is now pinned to the window's viewport. It is exactly the window, the feed takes what is left after the header and composer, and the feed is the part that scrolls, the way it does on the page. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Popped out, the panel was
position: static; height: 100%inside a host block with no height, so it grew to fit its content: the feed never scrolled and the composer, send targets and status bar sat below the bottom of a non-scrolling window. Nothing could be typed, sent or chosen from the pop-out.Now
position: fixed; inset: 0— the panel is exactly the window and the existing flex column makes the feed the part that scrolls. Verified in the harness at 900×700: composer bottom 677, status bar 700, feed scrollable.Version 1.18.1.
🤖 Generated with Claude Code