diff --git a/src/vs/workbench/contrib/debug/browser/debugActionViewItems.ts b/src/vs/workbench/contrib/debug/browser/debugActionViewItems.ts index b942611ab1a9b3084ad68214c941052965876510..dc805770ad32e6145d7268eb13e1bb95f30d3365 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;