From 362664c4d8b5d4dd19b0f495f2121e4e55e79978 Mon Sep 17 00:00:00 2001 From: Matt Irvine Date: Wed, 7 Feb 2018 16:31:13 -0800 Subject: [PATCH] Redo changes for object explorer arrow colors (#633) --- src/vs/base/parts/tree/browser/tree.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/vs/base/parts/tree/browser/tree.css b/src/vs/base/parts/tree/browser/tree.css index 799a68e9ad..97e014bc2c 100644 --- a/src/vs/base/parts/tree/browser/tree.css +++ b/src/vs/base/parts/tree/browser/tree.css @@ -77,6 +77,16 @@ background-image: url('expanded.svg'); } +/* {{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 { + 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 { + background-image: url('collapsed-hc.svg'); +} + .monaco-tree .monaco-tree-rows > .monaco-tree-row.has-children.loading > .content:before { background-image: url('loading.svg'); }