From 197c6d651288677223f4c619d43a9d57dd540f8a Mon Sep 17 00:00:00 2001 From: isidor Date: Mon, 28 Dec 2015 16:02:10 +0100 Subject: [PATCH] debug: more orange for breakpoint widget --- src/vs/workbench/parts/debug/browser/breakpointWidget.ts | 2 +- .../workbench/parts/debug/browser/media/breakpointWidget.css | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/debug/browser/breakpointWidget.ts b/src/vs/workbench/parts/debug/browser/breakpointWidget.ts index 5f7c20da330..fa262f6dc83 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 44039a8803f..d8476bcdb5d 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; -- GitLab