From e0c482bdb0ed9968d413a20a1c5e4492406fad58 Mon Sep 17 00:00:00 2001 From: jeanp413 Date: Mon, 4 May 2020 23:48:14 -0500 Subject: [PATCH] Use dropdown.background color in debug dropdown container --- .../workbench/contrib/debug/browser/debugActionViewItems.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/debug/browser/debugActionViewItems.ts b/src/vs/workbench/contrib/debug/browser/debugActionViewItems.ts index b942611ab1a..dc805770ad3 100644 --- a/src/vs/workbench/contrib/debug/browser/debugActionViewItems.ts +++ b/src/vs/workbench/contrib/debug/browser/debugActionViewItems.ts @@ -124,7 +124,9 @@ export class StartDebugActionViewItem implements IActionViewItem { this.toDispose.push(attachStylerCallback(this.themeService, { selectBorder, selectBackground }, colors => { this.container.style.border = colors.selectBorder ? `1px solid ${colors.selectBorder}` : ''; selectBoxContainer.style.borderLeft = colors.selectBorder ? `1px solid ${colors.selectBorder}` : ''; - this.start.style.backgroundColor = colors.selectBackground ? `${colors.selectBackground}` : ''; + const selectBackgroundColor = colors.selectBackground ? `${colors.selectBackground}` : ''; + this.container.style.backgroundColor = selectBackgroundColor; + this.start.style.backgroundColor = selectBackgroundColor; })); this.debugService.getConfigurationManager().getDynamicProviders().then(providers => { this.providers = providers; -- GitLab