Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/notebook/browser/media/notebookKernelActionViewItem.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 .kernel-action-view-item {
7
border-radius: 5px;
8
}
9
.monaco-workbench .kernel-action-view-item:hover {
10
background-color: var(--vscode-toolbar-hoverBackground);
11
}
12
13
.monaco-workbench .kernel-action-view-item .action-label {
14
display: inline-flex;
15
}
16
17
.monaco-workbench .kernel-action-view-item .kernel-label {
18
font-size: 11px;
19
padding: 3px 5px 3px 3px;
20
border-radius: 5px;
21
height: 16px;
22
display: inline-flex;
23
vertical-align: text-bottom;
24
}
25
26