-
Notifications
You must be signed in to change notification settings - Fork 30.9k
/
Copy pathnotebookToolbar.css
102 lines (83 loc) · 3.42 KB
/
notebookToolbar.css
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*---------------------------------------------------------------------------------------------
* 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 li a[tabindex="0"]:focus {
outline: none !important;
}
.monaco-workbench .notebookOverlay .notebook-toolbar-container .notebook-toolbar-left .monaco-action-bar li:has(a:focus) {
outline-width: 1px;
outline-style: solid;
outline-offset: -1px;
outline-color: var(--vscode-focusBorder);
opacity: 1;
}
.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 .notebook-action-view-item-unified .monaco-dropdown {
pointer-events: none;
}
.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: var(--vscode-toolbar-activeBackground);
}
.monaco-workbench .notebookOverlay .notebook-toolbar-container .monaco-action-bar .action-item .codicon-notebook-state-error {
color: var(--vscode-notebookStatusErrorIcon-foreground);
}