Agents: Adjust padding and border radius for harness dropdown button#312359
Merged
mrleemurray merged 2 commits intomainfrom Apr 24, 2026
Merged
Agents: Adjust padding and border radius for harness dropdown button#312359mrleemurray merged 2 commits intomainfrom
mrleemurray merged 2 commits intomainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Refines the visual styling of the AI Customization “harness” dropdown button within the AI customization management editor UI.
Changes:
- Adjusts the harness dropdown button padding.
- Updates the harness dropdown button border radius.
- Tweaks hover styling behavior for the button.
Comments suppressed due to low confidence (1)
src/vs/workbench/contrib/chat/browser/aiCustomization/media/aiCustomizationManagement.css:218
.harness-dropdown-buttonusescolor: var(--vscode-dropdown-foreground)but no longer setsbackgroundin its default state. In many themes--vscode-dropdown-foregroundis chosen to contrast specifically with--vscode-dropdown-background, so rendering it on the sidebar background can reduce contrast/legibility. Consider restoring the defaultbackground: var(--vscode-dropdown-background)(or switching to a more appropriate foreground token for a transparent background).
.ai-customization-management-editor .harness-dropdown-button {
display: flex;
align-items: center;
gap: 6px;
width: 100%;
padding: 3px 6px;
border: 1px solid var(--vscode-dropdown-border, transparent);
border-radius: 6px;
color: var(--vscode-dropdown-foreground);
cursor: pointer;
font-size: 12px;
text-align: left;
}
…CustomizationManagement.css Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
connor4312
approved these changes
Apr 24, 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.
Refine the styling of the harness dropdown button by adjusting its padding and border radius for improved appearance.