Skip to content

Commit f93c8a0

Browse files
author
Miguel Solorio
committed
Fix notebook status bar icon colors (fixes #112323)
1 parent 940b5f4 commit f93c8a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2191,12 +2191,12 @@ registerThemingParticipant((theme, collector) => {
21912191

21922192
const cellStatusSuccessIcon = theme.getColor(cellStatusIconSuccess);
21932193
if (cellStatusSuccessIcon) {
2194-
collector.addRule(`.monaco-workbench .notebookOverlay .cell-statusbar-container .cell-run-status .codicon-check { color: ${cellStatusSuccessIcon} }`);
2194+
collector.addRule(`.monaco-workbench .notebookOverlay .cell-statusbar-container .cell-run-status .codicon-notebook-state-success { color: ${cellStatusSuccessIcon} }`);
21952195
}
21962196

21972197
const cellStatusErrorIcon = theme.getColor(cellStatusIconError);
21982198
if (cellStatusErrorIcon) {
2199-
collector.addRule(`.monaco-workbench .notebookOverlay .cell-statusbar-container .cell-run-status .codicon-error { color: ${cellStatusErrorIcon} }`);
2199+
collector.addRule(`.monaco-workbench .notebookOverlay .cell-statusbar-container .cell-run-status .codicon-notebook-state-error { color: ${cellStatusErrorIcon} }`);
22002200
}
22012201

22022202
const cellStatusRunningIcon = theme.getColor(cellStatusIconRunning);

0 commit comments

Comments
 (0)