Skip to content

Commit

Permalink
fix: restore slash command input border radius (microsoft#194354)
Browse files Browse the repository at this point in the history
  • Loading branch information
joyceerhl committed Sep 27, 2023
1 parent d9c889a commit 80e3d4e
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit 80e3d4e

Please sign in to comment.