Do not apply hc arrow when loading items in OE (#827)

This commit is contained in:
Matt Irvine
2018-03-02 14:24:10 -08:00
committed by GitHub
parent a99c34d817
commit bb54b0280a

View File

@@ -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');
}