Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/callHierarchy/browser/media/callHierarchy.css
4780 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 .call-hierarchy .results,
7
.monaco-workbench .call-hierarchy .message {
8
display: none;
9
}
10
11
.monaco-workbench .call-hierarchy[data-state="data"] .results {
12
display: inherit;
13
height: 100%;
14
}
15
16
.monaco-workbench .call-hierarchy[data-state="message"] .message {
17
display: flex;
18
align-items: center;
19
justify-content: center;
20
height: 100%;
21
}
22
23
.monaco-workbench .call-hierarchy .editor,
24
.monaco-workbench .call-hierarchy .tree {
25
height: 100%;
26
}
27
28
.monaco-editor .call-hierarchy .tree {
29
background-color: var(--vscode-peekViewResult-background);
30
color: var(--vscode-peekViewResult-fileForeground);
31
}
32
33
.monaco-workbench .call-hierarchy .tree .callhierarchy-element {
34
display: flex;
35
flex: 1;
36
flex-flow: row nowrap;
37
align-items: center;
38
}
39
40
.monaco-workbench .call-hierarchy .tree .callhierarchy-element .monaco-icon-label {
41
padding-left: 4px;
42
}
43
44
.monaco-editor .call-hierarchy .tree .monaco-list:focus .monaco-list-rows > .monaco-list-row.selected:not(.highlighted) {
45
background-color: var(--vscode-peekViewResult-selectionBackground);
46
color: var(--vscode-peekViewResult-selectionForeground) !important;
47
}
48
49
.monaco-editor .call-hierarchy .call-decoration {
50
background-color: var(--vscode-peekViewEditor-matchHighlightBackground);
51
border: 2px solid var(--vscode-peekViewEditor-matchHighlightBorder);
52
box-sizing: border-box;
53
}
54
55
.monaco-editor .call-hierarchy .editor .monaco-editor .monaco-editor-background,
56
.monaco-editor .call-hierarchy .editor .monaco-editor .inputarea.ime-input {
57
background-color: var(--vscode-peekViewEditor-background);
58
}
59
60
.monaco-editor .call-hierarchy .editor .monaco-editor .margin {
61
background-color: var(--vscode-peekViewEditorGutter-background);
62
}
63
64