From bb54b0280a062305f0773e111d5ab14448ef026d Mon Sep 17 00:00:00 2001 From: Matt Irvine Date: Fri, 2 Mar 2018 14:24:10 -0800 Subject: [PATCH] Do not apply hc arrow when loading items in OE (#827) --- src/vs/base/parts/tree/browser/tree.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/base/parts/tree/browser/tree.css b/src/vs/base/parts/tree/browser/tree.css index 97e014bc2c..2b70373216 100644 --- a/src/vs/base/parts/tree/browser/tree.css +++ b/src/vs/base/parts/tree/browser/tree.css @@ -78,12 +78,12 @@ } /* {{SQL CARBON EDIT}} -- Display a high-contrast arrow when an expandable item is selected and expanded */ -.monaco-tree.focused .monaco-tree-rows.show-twisties > .monaco-tree-row.has-children.selected.expanded > .content:before { +.monaco-tree.focused .monaco-tree-rows.show-twisties > .monaco-tree-row.has-children.selected.expanded:not(.loading) > .content:before { background-image: url('expanded-hc.svg'); } /* {{SQL CARBON EDIT}} -- Display a high-contrast arrow when an expandable item is selected and collapsed */ -.monaco-tree.focused .monaco-tree-rows.show-twisties > .monaco-tree-row.has-children.selected > .content:before { +.monaco-tree.focused .monaco-tree-rows.show-twisties > .monaco-tree-row.has-children.selected:not(.loading) > .content:before { background-image: url('collapsed-hc.svg'); }