提交 e0c482bd 编写于 作者: J jeanp413

Use dropdown.background color in debug dropdown container

上级 0d445385
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册