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: restore slash command input border radius #194354

Merged
merged 1 commit into from
Sep 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: restore slash command input border radius
  • Loading branch information
joyceerhl committed Sep 27, 2023
commit 5c5b59a29a29bf7be682a5bc25a06ba32f671571
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ class InputEditorDecorations extends Disposable {
const theme = this.themeService.getColorTheme();
this.codeEditorService.registerDecorationType(decorationDescription, slashCommandTextDecorationType, {
color: theme.getColor(chatSlashCommandForeground)?.toString(),
backgroundColor: theme.getColor(chatSlashCommandBackground)?.toString()
backgroundColor: theme.getColor(chatSlashCommandBackground)?.toString(),
borderRadius: '3px'
});
this.codeEditorService.registerDecorationType(decorationDescription, variableTextDecorationType, {
color: theme.getColor(chatSlashCommandForeground)?.toString(),
Expand Down
Loading