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
5240 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: 28px;
10
display: flex;
11
padding-left: 2px;
12
border-radius: 5px;
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: 2px;
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 24px 0 8px;
29
text-overflow: ellipsis;
30
white-space: nowrap;
31
}
32
33
.monaco-workbench .debug-toolbar .drag-area {
34
cursor: grab;
35
width: 20px;
36
opacity: 0.5;
37
display: flex;
38
align-items: center;
39
justify-content: center;
40
}
41
42
.monaco-workbench .debug-toolbar .drag-area.dragged {
43
cursor: grabbing;
44
}
45
46
.monaco-workbench .debug-toolbar .monaco-action-bar .action-item .action-label {
47
margin-right: 0;
48
background-size: 16px;
49
background-position: center center;
50
background-repeat: no-repeat;
51
display: flex;
52
align-items: center;
53
justify-content: center;
54
}
55
56