fix(workflow-search): unclip block-name highlight shadow on the left#4670
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
PR SummaryLow Risk Overview Reviewed by Cursor Bugbot for commit a3d1ad7. Configure here. |
a3d1ad7 to
ee691ea
Compare
Greptile SummaryThis PR fixes a cosmetic clipping bug where the left edge of the workflow-search orange highlight on block names appeared sharp (missing the rounded corner) because
Confidence Score: 5/5Safe to merge — the change is two identical one-line CSS additions that fix a visual clipping artefact with no behavioural side effects. Both the display No files require special attention. Important Files Changed
Reviews (1): Last reviewed commit: "fix(workflow-search): unclip block-name ..." | Re-trigger Greptile |
ee691ea to
f58c9e1
Compare
The editor title h2 uses truncate (overflow:hidden) so the search highlight's -3px box-shadow was getting clipped on the left, exposing the mark's sharp edge. Replaces overflow:hidden with overflow:clip plus a 3px overflow-clip-margin so the shadow can bleed past the clip boundary without shifting the title text or breaking truncation. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
f58c9e1 to
c76be68
Compare
Summary
` uses `truncate` (overflow:hidden) with no left padding, so the workflow-search highlight's `-3px` box-shadow was getting clipped, exposing the mark's sharp left edge.
` and the rename `` so the shadow renders symmetrically (matching the subblock-label highlight) and the title doesn't shift when toggling rename.
Before / After: the left edge of the orange highlight on the block name now has the same rounded corner as the right edge, and matches the appearance of the highlight on subblock labels like "Messages".
Test plan