Skip to content

Commit

Permalink
make it also conspicuous when kernel is busy
Browse files Browse the repository at this point in the history
  • Loading branch information
parmentelat committed Nov 14, 2023
1 parent 09b6fae commit d0c25a8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions style/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,30 @@ button.jp-NotebookTrustedStatus {
color: var(--jp-error-color3);
}
}
.jp-Notebook-ExecutionIndicator[data-status="busy"] {
background-color: var(--jp-warn-color1);

& path {
fill: var(--jp-warn-color3);
}
width: 250px;
& svg {
margin: 0px;
}
& :first-child {
display: flex;
flex-wrap: nowrap;
justify-content: space-around;

& >svg {
stroke: black;
}
}
& >:first-child::after {
content: "Kernel is busy, please wait !!";
color: var(--jp-warn-color3);
}
}


/*
Expand Down

0 comments on commit d0c25a8

Please sign in to comment.