提交 662c112a 编写于 作者: B Benjamin Pasero

panelTopBorder => panelBorder

上级 e22d5113
......@@ -373,7 +373,7 @@
// Workbench: Panel
// "panelBackground": "",
"panelTopBorder": "#2b2b4a",
"panelBorder": "#2b2b4a",
// "panelActiveTitleBorder": "",
// "panelActiveTitleForeground": "",
// "panelInactiveTitleForeground": "",
......
......@@ -409,7 +409,7 @@
// Workbench: Panel
// "panelBackground": "",
"panelTopBorder": "#2b2b4a",
"panelBorder": "#2b2b4a",
// "panelActiveTitleBorder": "",
// "panelActiveTitleForeground": "",
// "panelInactiveTitleForeground": "",
......
......@@ -25,7 +25,7 @@ import { IInstantiationService } from 'vs/platform/instantiation/common/instanti
import { ActionsOrientation, ActionBar } from 'vs/base/browser/ui/actionbar/actionbar';
import { ClosePanelAction, PanelAction, ToggleMaximizedPanelAction } from 'vs/workbench/browser/parts/panel/panelActions';
import { IThemeService, registerThemingParticipant, ITheme, ICssStyleCollector } from 'vs/platform/theme/common/themeService';
import { PANEL_BACKGROUND, PANEL_BORDER_TOP_COLOR, PANEL_ACTIVE_TITLE_COLOR, PANEL_INACTIVE_TITLE_COLOR, PANEL_ACTIVE_TITLE_BORDER } from 'vs/workbench/common/theme';
import { PANEL_BACKGROUND, PANEL_BORDER_COLOR, PANEL_ACTIVE_TITLE_COLOR, PANEL_INACTIVE_TITLE_COLOR, PANEL_ACTIVE_TITLE_BORDER } from 'vs/workbench/common/theme';
import { highContrastOutline, focus } from 'vs/platform/theme/common/colorRegistry';
export class PanelPart extends CompositePart<Panel> implements IPanelService {
......@@ -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(PANEL_BORDER_TOP_COLOR));
title.style('border-top-color', this.getColor(PANEL_BORDER_COLOR));
}
public openPanel(id: string, focus?: boolean): TPromise<Panel> {
......
......@@ -102,11 +102,11 @@ export const PANEL_BACKGROUND = registerColor('panelBackground', {
hc: editorBackground
}, nls.localize('panelBackground', "Panel background color. Panels are shown below the editor area and contain views like output and integrated terminal."));
export const PANEL_BORDER_TOP_COLOR = registerColor('panelTopBorder', {
export const PANEL_BORDER_COLOR = registerColor('panelBorder', {
dark: Color.fromRGBA(new RGBA(128, 128, 128)).transparent(0.35),
light: Color.fromRGBA(new RGBA(128, 128, 128)).transparent(0.35),
hc: highContrastBorder
}, nls.localize('panelTopBorder', "Panel border color on the top separating to the editor. Panels are shown below the editor area and contain views like output and integrated terminal."));
}, nls.localize('panelBorder', "Panel border color on the top separating to the editor. Panels are shown below the editor area and contain views like output and integrated terminal."));
export const PANEL_ACTIVE_TITLE_COLOR = registerColor('panelActiveTitleForeground', {
dark: '#E7E7E7',
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册