Skip to content

Commit

Permalink
Makes the cell editor border grey when not focused (#14195)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhuebner authored Sep 19, 2024
1 parent 4a0228b commit b8ecd13
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/notebook/src/browser/style/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@
margin: 0px 16px 0px 10px;
}

.theia-notebook-cell.focused .theia-notebook-cell-editor-container {
/* Only mark an editor cell focused if the editor has focus */
.theia-notebook-cell-editor-container:has(.monaco-editor.focused) {
outline-color: var(--theia-notebook-focusedEditorBorder);
}

Expand Down

0 comments on commit b8ecd13

Please sign in to comment.