skill_creator: Make window resizable and form scrollable (#57754) (cherry-pick to preview)#57839
Merged
Merged
Conversation
The Skill Creator window previously couldn't be resized — its minimum size was set to the same dimensions as its initial size, so users couldn't make it smaller or shorter. Its contents also didn't scroll, so on smaller windows the Skill Content editor would be squeezed below its usable size. This change: - Lowers the window's minimum size to 500×420 so it can be resized in both directions. - Wraps the form body in a scrollable container with a vertical scrollbar. - Replaces `flex_1 + min_h_0` on the form fields and Skill Content wrapper with `flex_grow + flex_shrink_0`. Combined with the existing `min_h(160)` on the body editor, this means: - When there's extra vertical space, the Skill Content editor grows to fill it. - When the window is short, the form keeps its content at natural size and the outer container scrolls instead of crushing the editor. Closes AI-315 Release Notes: - Made the Skill Creator window resizable and its contents scrollable when the window is smaller than the form.
MartinYe1234
approved these changes
May 27, 2026
This was referenced May 27, 2026
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.
Cherry-pick of #57754 to preview
The Skill Creator window previously couldn't be resized — its minimum
size was set to the same dimensions as its initial size, so users
couldn't make it smaller or shorter. Its contents also didn't scroll, so
on smaller windows the Skill Content editor would be squeezed below its
usable size.
This change:
both directions.
scrollbar.
flex_1 + min_h_0on the form fields and Skill Contentwrapper with
flex_grow + flex_shrink_0. Combined with the existingmin_h(160)on the body editor, this means:fill it.
and the outer container scrolls instead of crushing the editor.
Closes AI-315
Release Notes:
when the window is smaller than the form.