mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 09:08:48 +01:00
Chat input styling: border radius, icon colors, toolbar tweaks (#294351)
* Chat input styling: border radius, icon colors, toolbar tweaks * Swap all send icons to arrowUp, fix toolbar icon colors * Fix missing semicolon, move inline styles to CSS class * Update 2026 theme chat input radius to radius-lg * Update descriptionForeground to #888888 in 2026 dark theme * Revert background agent Copilot CLI customizations
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
"foreground": "#bfbfbf",
|
||||
"disabledForeground": "#666666",
|
||||
"errorForeground": "#f48771",
|
||||
"descriptionForeground": "#999999",
|
||||
"descriptionForeground": "#888888",
|
||||
"icon.foreground": "#888888",
|
||||
"focusBorder": "#3994BCB3",
|
||||
"textBlockQuote.background": "#242526",
|
||||
|
||||
@@ -242,16 +242,16 @@
|
||||
/* Chat Widget */
|
||||
.monaco-workbench .interactive-session .chat-input-container {
|
||||
box-shadow: inset var(--shadow-sm);
|
||||
border-radius: var(--radius-md);
|
||||
border-radius: var(--radius-lg);
|
||||
}
|
||||
|
||||
.monaco-workbench .interactive-session .interactive-input-part .chat-editor-container .interactive-input-editor .monaco-editor,
|
||||
.monaco-workbench .interactive-session .chat-editing-session .chat-editing-session-container {
|
||||
border-radius: var(--radius-sm) var(--radius-sm) 0 0;
|
||||
border-radius: var(--radius-lg) var(--radius-lg) 0 0;
|
||||
}
|
||||
|
||||
.monaco-workbench .interactive-input-part:has(.chat-editing-session > .chat-editing-session-container) .chat-input-container {
|
||||
border-radius: 0 0 var(--radius-md) var(--radius-md);
|
||||
border-radius: 0 0 var(--radius-lg) var(--radius-lg);
|
||||
}
|
||||
|
||||
.monaco-workbench .part.panel .interactive-session,
|
||||
|
||||
Reference in New Issue
Block a user