Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/interactive/browser/interactiveEditor.css
3296 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
.interactive-editor .input-cell-container:focus-within .input-editor-container>.monaco-editor {
7
outline: solid 1px var(--vscode-notebook-focusedCellBorder);
8
}
9
10
.interactive-editor .input-cell-container .input-editor-container>.monaco-editor {
11
outline: solid 1px var(--vscode-notebook-inactiveFocusedCellBorder);
12
}
13
14
.interactive-editor .input-cell-container .input-focus-indicator {
15
top: 8px;
16
}
17
18
.interactive-editor .input-cell-container .monaco-editor-background,
19
.interactive-editor .input-cell-container .margin-view-overlays {
20
background-color: var(--vscode-notebook-cellEditorBackground, var(--vscode-editor-background));
21
}
22
23