Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/debug/browser/media/callStackWidget.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
.multiCallStackFrame {
7
.header {
8
display: flex;
9
10
align-items: center;
11
height: 24px;
12
background: var(--vscode-multiDiffEditor-headerBackground);
13
border-top: 1px solid var(--vscode-multiDiffEditor-border);
14
color: var(--vscode-foreground);
15
padding: 0 5px;
16
}
17
18
.title {
19
flex-grow: 1;
20
overflow: hidden;
21
text-overflow: ellipsis;
22
white-space: nowrap;
23
24
&[role="link"] {
25
cursor: pointer;
26
}
27
28
.monaco-icon-label::before {
29
height: auto;
30
}
31
}
32
33
&.collapsed {
34
.header {
35
border-bottom: 1px solid var(--vscode-multiDiffEditor-border);
36
}
37
38
.editorParent {
39
display: none;
40
}
41
}
42
43
.collapse-button {
44
width: 16px;
45
min-height: 1px; /* show even if empty */
46
line-height: 0;
47
48
a {
49
cursor: pointer;
50
}
51
}
52
53
.actions {
54
display: flex;
55
align-items: center;
56
gap: 8px;
57
margin-right: 12px;
58
}
59
}
60
61
.multiCallStackWidget {
62
.multiCallStackFrameContainer {
63
background: none !important;
64
}
65
}
66
67
.monaco-editor .call-stack-go-to-file-link {
68
text-decoration: underline;
69
cursor: pointer;
70
color: var(--vscode-editorLink-activeForeground) !important;
71
}
72
73