forked from irinazheltisheva/vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpart.css
More file actions
108 lines (91 loc) · 2.46 KB
/
Copy pathpart.css
File metadata and controls
108 lines (91 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
.monaco-workbench .part {
box-sizing: border-box;
overflow: hidden;
}
.monaco-workbench .part > .drop-block-overlay.visible {
visibility: visible;
}
.monaco-workbench .part > .drop-block-overlay {
position: absolute;
top: 0;
width: 100%;
height: 100%;
visibility: hidden;
opacity: 0;
z-index: 10;
}
.monaco-workbench .part > .title {
display: none; /* Parts have to opt in to show title area */
}
.monaco-workbench .part > .title {
height: 35px;
display: flex;
box-sizing: border-box;
overflow: hidden;
}
.monaco-workbench .part > .title {
padding-left: 8px;
padding-right: 8px;
}
.monaco-workbench .part > .title > .title-label {
line-height: 35px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.monaco-workbench .part > .title > .title-label {
padding-left: 12px;
}
.monaco-workbench .part > .title > .title-label h2 {
font-size: 11px;
cursor: default;
font-weight: normal;
margin: 0;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.monaco-workbench .part > .title > .title-label a {
text-decoration: none;
font-size: 13px;
cursor: default;
}
.monaco-workbench .part > .title > .title-actions {
height: 35px;
flex: 1;
padding-left: 5px;
}
.monaco-workbench .part > .title > .title-actions .action-label {
display: block;
height: 35px;
line-height: 35px;
min-width: 28px;
background-size: 16px;
background-position: center center;
background-repeat: no-repeat;
}
.monaco-workbench .part > .title > .title-actions .action-label .label {
display: none;
}
.monaco-workbench .part > .title > .title-actions .action-label.codicon {
color: inherit;
}
.monaco-workbench .part > .content {
font-size: 13px;
}
.monaco-workbench .part > .content > .monaco-progress-container,
.monaco-workbench .part.editor > .content .monaco-progress-container {
position: absolute;
left: 0;
top: 33px; /* at the bottom of the 35px height title container */
z-index: 5; /* on top of things */
height: 2px;
}
.monaco-workbench .part > .content > .monaco-progress-container .progress-bit,
.monaco-workbench .part.editor > .content .monaco-progress-container .progress-bit {
height: 2px;
}