Welcome to mirror list, hosted at ThFree Co, Russian Federation.

notebookToolbar.css « media « browser « notebook « contrib « workbench « vs « src - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7ddb6665a70a8d6719a05d9957981aa43c31b19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

.monaco-workbench .notebookOverlay .notebook-toolbar-container {
	width: 100%;
	display: none;
	margin-top: 2px;
	margin-bottom: 2px;
	contain: style;
}

.monaco-workbench .notebookOverlay .notebook-toolbar-container .monaco-action-bar .action-item {
	height: 22px;
	display: flex;
	align-items: center;
	border-radius: 5px;
	margin-right: 8px;
}

.monaco-workbench .notebookOverlay .notebook-toolbar-container > .monaco-scrollable-element {
	flex: 1;
}

.monaco-workbench .notebookOverlay .notebook-toolbar-container > .monaco-scrollable-element .notebook-toolbar-left {
	padding: 0px 0px 0px 8px;
}

.monaco-workbench .notebookOverlay .notebook-toolbar-container .notebook-toolbar-right {
	display: flex;
	padding: 0px 0px 0px 0px;
}

.monaco-workbench .notebookOverlay .notebook-toolbar-container .monaco-action-bar .action-item  .kernel-label {
	background-size: 16px;
	padding: 0px 5px 0px 3px;
	border-radius: 5px;
	font-size: 13px;
	height: 22px;
}

.monaco-workbench .notebookOverlay .notebook-toolbar-container .notebook-toolbar-left .monaco-action-bar .action-item .action-label.separator {
	margin: 5px 0px !important;
	padding: 0px !important;
}

.monaco-workbench .notebookOverlay .notebook-toolbar-container .monaco-action-bar .action-item:not(.disabled):hover {
	background-color: var(--vscode-toolbar-hoverBackground);
}

.monaco-workbench .notebookOverlay .notebook-toolbar-container .monaco-action-bar .action-item .action-label {
	background-size: 16px;
	padding-left: 2px;
}

.monaco-workbench .notebook-action-view-item .action-label {
	display: inline-flex;
}

.monaco-workbench .notebookOverlay .notebook-toolbar-container .monaco-action-bar .action-item .notebook-label {
	background-size: 16px;
	padding: 0px 5px 0px 2px;
	border-radius: 5px;
	background-color: unset;
}

.monaco-workbench .notebookOverlay .notebook-toolbar-container .monaco-action-bar .action-item.disabled .notebook-label {
	opacity: 0.4;
}

.monaco-workbench .notebookOverlay .notebook-toolbar-container .monaco-action-bar:not(.vertical) .action-item.active .action-label:not(.disabled) {
	background-color: unset;
}

.monaco-workbench .notebookOverlay .notebook-toolbar-container .monaco-action-bar:not(.vertical) .action-label:not(.disabled):hover {
	background-color: unset;
}

.monaco-workbench .notebookOverlay .notebook-toolbar-container .monaco-action-bar:not(.vertical) .action-item.active {
	background-color: unset;
}

.monaco-workbench .notebookOverlay .notebook-toolbar-container .monaco-action-bar .action-item .codicon-notebook-state-error {
	color: var(--notebook-cell-status-icon-error);
}