Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/debug/browser/media/breakpointWidget.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-editor .zone-widget .zone-widget-container.breakpoint-widget {
7
display: flex;
8
border-color: #007ACC;
9
background: var(--vscode-editor-background);
10
11
.breakpoint-select-container {
12
display: flex;
13
justify-content: center;
14
flex-direction: column;
15
padding: 0 10px;
16
flex-shrink: 0;
17
}
18
19
.monaco-select-box {
20
min-width: 100px;
21
min-height: 18px;
22
padding: 2px 20px 2px 8px;
23
}
24
25
.breakpoint-select-container:after {
26
right: 14px;
27
}
28
29
.inputContainer {
30
flex: 1;
31
}
32
33
.select-breakpoint-container {
34
display: flex;
35
align-items: center;
36
gap: 10px;
37
flex-grow: 1;
38
width: 0;
39
}
40
41
.select-breakpoint-container .monaco-button {
42
padding-left: 8px;
43
padding-right: 8px;
44
line-height: 14px;
45
flex-grow: 0;
46
width: initial;
47
}
48
49
.select-breakpoint-container .select-box-container,
50
.select-mode-container {
51
display: flex;
52
justify-content: center;
53
flex-direction: column;
54
width: 300px;
55
}
56
57
.select-breakpoint-container .select-box-container {
58
width: 300px;
59
}
60
61
.select-mode-container .select-box-container {
62
width: 100px;
63
margin-right: 10px;
64
}
65
66
.select-breakpoint-container:after {
67
right: 14px;
68
}
69
70
}
71
72