Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/notebook/browser/media/notebookChatEditController.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
.monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .view-zones .cell-editor-container > div {
7
padding: 12px 16px;
8
}
9
10
/** Cell delete higlight */
11
.monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .view-zones .cell-inner-container {
12
background-color: var(--vscode-diffEditor-removedLineBackground);
13
padding: 8px 0;
14
margin-bottom: 16px;
15
}
16
17
/** Cell insert higlight */
18
.monaco-workbench .notebookOverlay .monaco-list .monaco-list-row.code-cell-row.nb-insertHighlight .cell-focus-indicator,
19
.monaco-workbench .notebookOverlay .monaco-list .monaco-list-row.markdown-cell-row.nb-insertHighlight {
20
background-color: var(--vscode-diffEditor-insertedLineBackground, var(--vscode-diffEditor-insertedTextBackground)) !important;
21
}
22
23
.notebookOverlay .cell .cell-statusbar-container .monaco-workbench .notebookOverlay .monaco-list .monaco-list-row.code-cell-row.nb-insertHighlight .cell-focus-indicator .cell-inner-container,
24
.notebookOverlay .cell .cell-statusbar-container .monaco-workbench .notebookOverlay .monaco-list .monaco-list-row.markdown-cell-row.nb-insertHighlight .cell-focus-indicator .cell-inner-container,
25
.monaco-workbench .notebookOverlay .monaco-list .monaco-list-row.code-cell-row.nb-insertHighlight .monaco-editor-background,
26
.monaco-workbench .notebookOverlay .monaco-list .monaco-list-row.markdown-cell-row.nb-insertHighlight .monaco-editor-background,
27
.monaco-workbench .notebookOverlay .monaco-list .monaco-list-row.code-cell-row.nb-insertHighlight .margin-view-overlays,
28
.monaco-workbench .notebookOverlay .monaco-list .monaco-list-row.markdown-cell-row.nb-insertHighlight .margin-view-overlays,
29
.monaco-workbench .notebookOverlay .monaco-list .monaco-list-row.code-cell-row.nb-insertHighlight .cell-statusbar-container {
30
background-color: var(--vscode-diffEditor-insertedLineBackground, var(--vscode-diffEditor-insertedTextBackground)) !important;
31
}
32
.monaco-workbench .notebookOverlay .monaco-list .monaco-list-row.markdown-cell-row.nb-insertHighlight .cell-statusbar-container {
33
background-color: inherit !important;
34
}
35
36
.monaco-workbench .notebookOverlay .view-zones .cell-editor-part {
37
outline: solid 1px var(--vscode-notebook-cellBorderColor);
38
}
39
40
41
.monaco-workbench .notebookOverlay .view-zones .cell-editor-container > div > div {
42
line-height: initial;
43
overflow-x: hidden;
44
font-family: var(--notebook-editor-font-family);
45
}
46
47
.monaco-workbench .notebookOverlay .view-zones .cell-editor-container > div > div span {
48
font-family: var(--notebook-editor-font-family);
49
font-size: var(--notebook-editor-font-size);
50
font-weight: var(--notebook-editor-font-weight);
51
}
52
53
.monaco-workbench .notebookOverlay .view-zones .cell-editor-part {
54
outline: solid 1px var(--vscode-notebook-cellBorderColor);
55
}
56
57