提交 7432cfa1 编写于 作者: B Benjamin Pasero

panel.border isn't being applied when contrast color is specified (fixes #26074)

上级 8425399f
......@@ -104,7 +104,7 @@ export class PanelPart extends CompositePart<Panel> implements IPanelService {
container.style('background-color', this.getColor(PANEL_BACKGROUND));
const title = this.getTitleArea();
title.style('border-top-color', this.getColor(contrastBorder) || this.getColor(PANEL_BORDER_COLOR));
title.style('border-top-color', this.getColor(PANEL_BORDER_COLOR) || this.getColor(contrastBorder));
}
public openPanel(id: string, focus?: boolean): TPromise<Panel> {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册