Skip to content

Commit 8b5ece7

Browse files
author
Miguel Solorio
authored
Merge pull request #112431 from microsoft/misolori/notebook-color-icons
Fix notebook status bar icon colors
2 parents c11e928 + f93c8a0 commit 8b5ece7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
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)