From 49cab14b99f1774db329dab37bc4360af770a9fd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 10 Aug 2026 21:37:32 +0000 Subject: [PATCH 1/2] Initial plan From f2077d386a159221442cd5571b224f3f8f9b90fd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 10 Aug 2026 21:42:46 +0000 Subject: [PATCH 2/2] Add omnichat window border and shadow Co-authored-by: meganrogge <29464607+meganrogge@users.noreply.github.com> --- .../contrib/agentsVoice/browser/agentsVoiceWindowService.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/agentsVoice/browser/agentsVoiceWindowService.ts b/src/vs/workbench/contrib/agentsVoice/browser/agentsVoiceWindowService.ts index 5cd47a49cc3f76..fbffa2ce15349c 100644 --- a/src/vs/workbench/contrib/agentsVoice/browser/agentsVoiceWindowService.ts +++ b/src/vs/workbench/contrib/agentsVoice/browser/agentsVoiceWindowService.ts @@ -31,6 +31,7 @@ import { isDark } from '../../../../platform/theme/common/theme.js'; import { IAccessibilityService } from '../../../../platform/accessibility/common/accessibility.js'; import { resolveVoiceGlowColors } from '../../chat/browser/voiceClient/voiceGlow.js'; import { editorBackground } from '../../../../platform/theme/common/colorRegistry.js'; +import { editorWidgetBorder, widgetShadow } from '../../../../platform/theme/common/colors/editorColors.js'; import { inputBackground, inputBorder } from '../../../../platform/theme/common/colors/inputColors.js'; import { AgentsVoiceWidget } from './agentsVoiceWidget.js'; import { bindWidgetToController } from './agentsVoiceWidgetBinding.js'; @@ -140,11 +141,13 @@ export class AgentsVoiceWindowService extends Disposable implements IAgentsVoice const theme = this.themeService.getColorTheme(); const bgColor = theme.getColor(editorBackground)?.toString() ?? '#1e1e1e'; const inputBg = theme.getColor(inputBackground)?.toString() ?? '#3C3C3C'; - const inputBd = theme.getColor(inputBorder)?.toString() ?? 'transparent'; + const inputBd = theme.getColor(inputBorder)?.toString() ?? theme.getColor(editorWidgetBorder)?.toString() ?? 'transparent'; + const shadow = theme.getColor(widgetShadow)?.toString() ?? 'transparent'; auxiliaryWindow.container.style.setProperty('--vscode-agents-background', bgColor); auxiliaryWindow.container.style.backgroundColor = inputBg; auxiliaryWindow.container.style.border = `1px solid ${inputBd}`; + auxiliaryWindow.container.style.boxShadow = `0 2px 8px ${shadow}`; auxiliaryWindow.container.style.boxSizing = 'border-box'; auxiliaryWindow.window.document.body.style.setProperty('background-color', inputBg, 'important');