fix icons for various status; move menu entry to the other panels (#5319)

This commit is contained in:
Anthony Dresser
2019-05-02 14:31:58 -07:00
committed by GitHub
parent 495254b0be
commit 1bfdce9642
4 changed files with 7 additions and 7 deletions

View File

@@ -46,10 +46,10 @@
}
.monaco-tree .monaco-tree-rows > .monaco-tree-row > .content > .task-group > .task-icon.not-started {
content: url('status_queuedtask.svg');
background-image: url('status_queuedtask.svg');
}
.vs-dark .monaco-tree .monaco-tree-rows > .monaco-tree-row > .content > .task-group > .task-icon.not-started,
.hc-black .monaco-tree .monaco-tree-rows > .monaco-tree-row > .content > .task-group > .task-icon.not-started {
content: url('status_queuedtask_inverse.svg');
background-image: url('status_queuedtask_inverse.svg');
}

View File

@@ -85,7 +85,7 @@ Registry.as<PanelRegistry>(PanelExtensions.Panels).registerPanel(new PanelDescri
(<ext.IWorkbenchContributionsRegistry>Registry.as(ext.Extensions.Workbench)).registerWorkbenchContribution(StatusUpdater, LifecyclePhase.Restored);
MenuRegistry.appendMenuItem(MenuId.MenubarViewMenu, {
group: '3_views',
group: '4_panels',
command: {
id: TASKS_PANEL_ID,
title: localize({ key: 'miViewTasks', comment: ['&& denotes a mnemonic'] }, "&&Tasks")