Fix 2px double border above account panel content in Agents window#318649
Merged
Conversation
Co-authored-by: eli-w-king <201316543+eli-w-king@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
eli-w-king
May 27, 2026 23:33
View session
Contributor
There was a problem hiding this comment.
Pull request overview
This PR targets a visual glitch in the Agents window account/profile hover panel where the separator line above the subscription/dashboard content renders at 2px due to stacked adjacent borders.
Changes:
- Removes the
border-topfrom.sessions-account-titlebar-panel-contentto prevent a double-thickness separator when it follows the header directly.
Show a summary per file
| File | Description |
|---|---|
| src/vs/sessions/contrib/accountMenu/browser/media/accountTitleBarWidget.css | Adjusts panel separator styling to avoid a double border in the account hover panel. |
Copilot's findings
- Files reviewed: 1/1 changed files
- Comments generated: 1
Comment on lines
223
to
227
| .agent-sessions-workbench .sessions-account-titlebar-panel-content { | ||
| display: flex; | ||
| flex-direction: column; | ||
| min-height: 0; | ||
| border-top: 1px solid var(--vscode-menu-separatorBackground, var(--vscode-disabledForeground)); | ||
| } |
mrleemurray
approved these changes
May 28, 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.
The top border above the plan title (e.g. "Copilot Enterprise") in the Agents window account/profile panel renders as 2px instead of 1px.
.sessions-account-titlebar-panel-headerand its sibling.sessions-account-titlebar-panel-contenteach contribute a 1px separator —border-bottomon the header andborder-topon the content — stacking into a visible 2px line.border-topfrom.sessions-account-titlebar-panel-content; the header'sborder-bottomalready supplies the separator.