Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/debug/browser/media/debugToolBar.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 .debug-toolbar {
7
position: absolute;
8
z-index: 2520; /* Below quick input at 2550, above custom titlebar toolbar at 2500 */
9
height: 26px;
10
display: flex;
11
padding-left: 7px;
12
border-radius: 4px;
13
left: 0;
14
top: 0;
15
-webkit-app-region: no-drag;
16
}
17
18
.monaco-workbench .debug-toolbar .monaco-action-bar .action-item {
19
margin-right: 4px;
20
}
21
22
.monaco-workbench .debug-toolbar .monaco-action-bar .action-item.select-container {
23
margin-right: 7px;
24
}
25
26
.monaco-workbench .debug-toolbar .monaco-action-bar .action-item.select-container .monaco-select-box,
27
.monaco-workbench .start-debug-action-item .select-container .monaco-select-box {
28
padding: 0 22px 0 6px;
29
}
30
31
.monaco-workbench .debug-toolbar .drag-area {
32
cursor: grab;
33
width: 16px;
34
opacity: 0.5;
35
display: flex;
36
align-items: center;
37
justify-content: center;
38
}
39
40
.monaco-workbench .debug-toolbar .drag-area.dragged {
41
cursor: grabbing;
42
}
43
44
.monaco-workbench .debug-toolbar .monaco-action-bar .action-item .action-label {
45
margin-right: 0;
46
background-size: 16px;
47
background-position: center center;
48
background-repeat: no-repeat;
49
display: flex;
50
align-items: center;
51
justify-content: center;
52
}
53
54