diff --git a/src/sql/workbench/parts/tasks/browser/media/error.svg b/src/sql/workbench/parts/tasks/browser/media/error.svg new file mode 100644 index 0000000000..309574a48e --- /dev/null +++ b/src/sql/workbench/parts/tasks/browser/media/error.svg @@ -0,0 +1 @@ +globalerror_red \ No newline at end of file diff --git a/src/sql/workbench/parts/tasks/browser/media/tasksPanel.css b/src/sql/workbench/parts/tasks/browser/media/tasksPanel.css index 228bb507dc..be26f37907 100644 --- a/src/sql/workbench/parts/tasks/browser/media/tasksPanel.css +++ b/src/sql/workbench/parts/tasks/browser/media/tasksPanel.css @@ -45,7 +45,7 @@ display: inline-block; } -.monaco-tree .monaco-tree-rows > .monaco-tree-row > .content > .task-group > .task-icon.not-started { +.vs .monaco-tree .monaco-tree-rows > .monaco-tree-row > .content > .task-group > .task-icon.not-started { background-image: url('status_queuedtask.svg'); } @@ -63,14 +63,14 @@ background-image: url("loading_inverse.svg"); } -.vs .monaco-tree .monaco-tree-rows > .monaco-tree-row > .content > .task-group > .task-icon.success, -.vs-dark .monaco-tree .monaco-tree-rows > .monaco-tree-row > .content > .task-group > .task-icon.success, -.hc-black .monaco-tree .monaco-tree-rows > .monaco-tree-row > .content > .task-group > .task-icon.success { +.monaco-tree .monaco-tree-rows > .monaco-tree-row > .content > .task-group > .task-icon.success { background-image: url("status_success.svg"); } -.vs .monaco-tree .monaco-tree-rows > .monaco-tree-row > .content > .task-group > .task-icon.canceled, -.vs-dark .monaco-tree .monaco-tree-rows > .monaco-tree-row > .content > .task-group > .task-icon.canceled, -.hc-black .monaco-tree .monaco-tree-rows > .monaco-tree-row > .content > .task-group > .task-icon.canceled { +.monaco-tree .monaco-tree-rows > .monaco-tree-row > .content > .task-group > .task-icon.canceled { background-image: url("status_cancelled.svg"); } + +.monaco-tree .monaco-tree-rows > .monaco-tree-row > .content > .task-group > .task-icon.error { + background-image: url("error.svg"); +}