Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/outline/browser/outlinePane.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 .outline-pane {
7
display: flex;
8
flex-direction: column;
9
}
10
11
.monaco-workbench .outline-pane .outline-progress {
12
width: 100%;
13
height: 2px;
14
padding-bottom: 3px;
15
position: absolute;
16
}
17
18
.monaco-workbench .outline-pane .outline-tree {
19
height: 100%;
20
}
21
22
.monaco-workbench .outline-pane .outline-message {
23
display: none;
24
padding: 10px 22px 0 22px;
25
opacity: 0.5;
26
position: absolute;
27
pointer-events: none;
28
}
29
30
.monaco-workbench .outline-pane.message .outline-message {
31
display: inherit;
32
}
33
34
.monaco-workbench .outline-pane.message .outline-progress,
35
.monaco-workbench .outline-pane.message .outline-tree {
36
display: none;
37
}
38
39