Fix live copy edit paragraph resizing#178
Merged
pbakaus merged 1 commit intoMay 29, 2026
Merged
Conversation
pbakaus
approved these changes
May 29, 2026
mp3wizard
added a commit
to mp3wizard/impeccable
that referenced
this pull request
May 30, 2026
New upstream features: - Remove the i- command prefix from the CLI (b913668) - Fix live copy edit paragraph resizing (pbakaus#178) - Lighten IMPECCABLE wordmark weight 500 → 400 - Rework Get started section: update instructions, fix layout rhythm - Site polish: de-warm palette, refine chrome, clean up /designing (pbakaus#176) - Drop stale Codex sidecar; rely on nested skill agents (pbakaus#173) - Fix edit mode focus stealing (pbakaus#172) - CLI v2.3.1/v2.3.2 changelog entries Security findings: GHSA-p7fg-763f-g4gf (@anthropic-ai/sdk 0.81.0 transitive, Medium CVSS 4.8) Security fixes: Added @anthropic-ai/sdk >=0.91.1 override in package.json; bun install confirms clean
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.
Summary
Validation
Note
Low Risk
Localized live-browser inline edit styling with restore on teardown; no auth, data, or API surface changes.
Overview
Fixes live inline copy editing so multi-line paragraphs no longer grow in height while Edit copy is active.
During
enableInlineEdit, each editable row now snapshots its inlinewhite-space, then setsstyle.whiteSpacefromgetComputedStyleso wrapping matches the element’s normal layout.webkitUserModify: read-write-plaintext-onlyis removed; that WebKit mode was forcing Chromium to treat source newlines as visible breaks and inflate block height (e.g. hero body copy).disableInlineEditrestores the savedwhite-spaceinstead of clearing WebKit plaintext mode. The same logic is applied acrosslive-browser.jsin the canonical skill path and regenerated provider skill copies.Reviewed by Cursor Bugbot for commit ee536be. Bugbot is set up for automated code reviews on this repo. Configure here.