mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Fix bug where collapsed OE icon never appeared for selected element (#453)
This commit is contained in:
@@ -77,10 +77,14 @@
|
|||||||
background-image: url('expanded.svg');
|
background-image: url('expanded.svg');
|
||||||
}
|
}
|
||||||
|
|
||||||
.monaco-tree .monaco-tree-rows.show-twisties > .monaco-tree-row.selected > .content:before {
|
.monaco-tree .monaco-tree-rows.show-twisties > .monaco-tree-row.has-children.selected.expanded > .content:before {
|
||||||
background-image: url('expanded-hc.svg');
|
background-image: url('expanded-hc.svg');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.monaco-tree .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 {
|
.monaco-tree .monaco-tree-rows > .monaco-tree-row.has-children.loading > .content:before {
|
||||||
background-image: url('loading.svg');
|
background-image: url('loading.svg');
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user