Fix excessive padding on terminal tool progress part action bar icons#291648
Merged
meganrogge merged 5 commits intomainfrom Jan 29, 2026
Merged
Fix excessive padding on terminal tool progress part action bar icons#291648meganrogge merged 5 commits intomainfrom
meganrogge merged 5 commits intomainfrom
Conversation
Reset margin to 0 for .monaco-action-bar .codicon inside .progress-container to match other action bars in VS Code. Co-authored-by: meganrogge <29464607+meganrogge@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix excessive padding on terminal tool progress part icons
Fix excessive padding on terminal tool progress part action bar icons
Jan 29, 2026
Collaborator
|
@copilot we only want to change this for the chat terminal progress part, not all monaco |
Move the codicon margin reset from chat.css to chatTerminalToolProgressPart.css to only affect the chat terminal action bar, not all monaco action bars. Co-authored-by: meganrogge <29464607+meganrogge@users.noreply.github.com>
Contributor
Author
meganrogge
approved these changes
Jan 29, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes excessive horizontal spacing on action bar icons in the terminal tool progress part. The issue was caused by a broad CSS rule that applied margin: 0 .2em to all codicons inside .progress-container, including those within action bars.
Changes:
- Added a CSS reset rule to remove the margin from codicons specifically within the terminal tool progress part's action bar, ensuring they have standard action bar spacing
Tyriar
approved these changes
Jan 29, 2026
auto-merge was automatically disabled
January 29, 2026 21:40
Pull request was closed
auto-merge was automatically disabled
January 29, 2026 21:43
Pull request was closed
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.
Action bar icons in the terminal tool progress part had excessive horizontal spacing due to
.interactive-item-container .progress-container .codicon { margin: 0 .2em; }applying to all codicons, including those inside.monaco-action-bar.Changes
chatTerminalToolProgressPart.cssto reset margin specifically for the terminal tool progress part action bar, matching standard action bar spacingThis scoped fix ensures only the chat terminal action bar icons are affected, without impacting other monaco action bars elsewhere in the UI.
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.