Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/interactive/browser/media/interactive.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 {
7
box-sizing: border-box;
8
}
9
10
.interactive-editor .input-cell-container .input-focus-indicator {
11
position: absolute;
12
left: 0px;
13
height: 19px;
14
}
15
16
.interactive-editor .input-cell-container .input-focus-indicator::before {
17
border-left: 3px solid transparent;
18
border-radius: 2px;
19
margin-left: 4px;
20
content: "";
21
position: absolute;
22
width: 0px;
23
height: 100%;
24
z-index: 10;
25
left: 0px;
26
top: 0px;
27
height: 100%;
28
}
29
30
.interactive-editor .input-cell-container .run-button-container {
31
position: absolute;
32
}
33
34
.interactive-editor .input-cell-container .run-button-container .monaco-toolbar .actions-container {
35
justify-content: center;
36
}
37
38