Align chat UI with design tokens - #331791
Merged
Lee Murray (mrleemurray) merged 1 commit intoAug 20, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Aligns the chat interface with VS Code’s design-token system.
Changes:
- Replaces hardcoded sizing, spacing, typography, radius, and stroke values.
- Standardizes compact controls and codicon sizing.
- Adopts theme-aware separator and shadow colors.
💡 Configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Contributor
Justin Chen (justschen)
approved these changes
Aug 20, 2026
Lee Murray (mrleemurray)
deleted the
mrleemurray/gentle-salmon-dinosaur
branch
August 20, 2026 17:25
|
|
||
| .chat-list-at-bottom .chat-progress-reservable > .value:has(> .rendered-markdown:last-child) { | ||
| padding-bottom: 37px; | ||
| padding-bottom: var(--vscode-spacing-size360); |
Collaborator
There was a problem hiding this comment.
AI Review: This padding is a structural reservation, not visual spacing. When working progress is appended, the rule stops matching and the row normalizes to 81px; replacing 37px with the 36px spacing token makes the reserved state normalize to 80px first, reintroducing a one-pixel height change that can disturb bottom-scroll anchoring. Keep the 37px structural literal or derive an exactly equivalent reservation.
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.
Aligns the chat widget styling with the VS Code design system by replacing hardcoded visual values with semantic design tokens.
Changes
16px + 3pxpadding calculations.Validation
chat.css.git diff --check.