From 46802c1b12c291d490f7c940c5ff0f716ebd5748 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Fri, 21 Feb 2020 12:42:34 -0500 Subject: [PATCH] Fixes #91103 --- .../contrib/debug/browser/media/repl.css | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/contrib/debug/browser/media/repl.css b/src/vs/workbench/contrib/debug/browser/media/repl.css index ba2bbf5bccc..85fdf04761f 100644 --- a/src/vs/workbench/contrib/debug/browser/media/repl.css +++ b/src/vs/workbench/contrib/debug/browser/media/repl.css @@ -15,6 +15,8 @@ user-select: text; -webkit-user-select: text; white-space: pre; + cursor: text; + margin-left: 6px; } .repl .repl-tree.word-wrap .monaco-tl-contents { @@ -25,6 +27,14 @@ word-break: break-all; } +.repl .repl-tree .monaco-tl-twistie { + padding-right: 0; +} + +.repl .repl-tree .monaco-tl-twistie.collapsible { + cursor: pointer; +} + .monaco-workbench.mac .repl .repl-tree .monaco-tl-twistie.collapsible + .monaco-tl-contents, .monaco-workbench.mac .repl .repl-tree .monaco-tl-twistie { cursor: pointer; @@ -39,7 +49,7 @@ } .repl .repl-tree .monaco-tl-contents .arrow { - position:absolute; + position: absolute; left: 2px; opacity: 0.25; } @@ -55,9 +65,9 @@ text-decoration: underline; } -.repl .repl-tree .monaco-list-row { +/* .repl .repl-tree .monaco-list-row { cursor: text; -} +} */ .repl .repl-tree .output.expression > .value, .repl .repl-tree .evaluation-result.expression > .value { -- GitLab