diff --git a/src/vs/workbench/parts/debug/browser/breakpointWidget.ts b/src/vs/workbench/parts/debug/browser/breakpointWidget.ts index 5f7c20da330ae38864077a1abc11bdcfa6cf3828..fa262f6dc8364ff43ddcfd5014e5e822d5462d2c 100644 --- a/src/vs/workbench/parts/debug/browser/breakpointWidget.ts +++ b/src/vs/workbench/parts/debug/browser/breakpointWidget.ts @@ -41,7 +41,7 @@ export class BreakpointWidget extends ZoneWidget { dom.addClass(this.inputBox.inputElement, platform.isWindows ? 'windows' : platform.isMacintosh ? 'mac' : 'linux'); this.inputBox.value = (breakpoint && breakpoint.condition) ? breakpoint.condition : ''; // TODO@Isidor check with Alex why does the editor steal focus - setTimeout(() => this.inputBox.focus(), 100); + setTimeout(() => this.inputBox.focus(), 150); let disposed = false; const toDispose: [lifecycle.IDisposable] = [this.inputBox, this]; diff --git a/src/vs/workbench/parts/debug/browser/media/breakpointWidget.css b/src/vs/workbench/parts/debug/browser/media/breakpointWidget.css index 44039a8803fd8a870ded0bc9ddab81d627fd4951..d8476bcdb5dbc5f33a470792f02c16965482ccd5 100644 --- a/src/vs/workbench/parts/debug/browser/media/breakpointWidget.css +++ b/src/vs/workbench/parts/debug/browser/media/breakpointWidget.css @@ -3,6 +3,11 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ +.monaco-editor .zone-widget .zone-widget-container.breakpoint-widget { + border-top-color: #E89208; + border-bottom-color: #E89208; +} + .monaco-editor .breakpoint-widget .input { font-family: Monaco, Menlo, Consolas, "Droid Sans Mono", "Inconsolata", "Courier New", monospace, "Droid Sans Fallback"; line-height: 22px;