Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: set border for chat file trees #197170

Merged
merged 2 commits into from
Nov 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/vs/workbench/contrib/chat/browser/media/chat.css
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,6 @@
gap: 6px;
}

.interactive-response-progress-tree .monaco-list,
.chat-used-context-list .monaco-list {
border: none;
border-radius: 4px;
Expand All @@ -526,10 +525,10 @@
gap: 6px;
}

.interactive-response-progress-tree,
.interactive-session .chat-used-context-list {
border: 1px solid var(--vscode-chat-requestBorder);
border-radius: 4px;
padding: 4px;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This padding was intentional fwiw. It did cause some side effects for lists that scrolled though which I do want to fix.

Without it, we get this:
CleanShot 2023-11-01 at 14 11 27@2x

margin-bottom: 8px;
}

Expand Down