Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/editTelemetry/browser/editStats/media.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
/* Overall */
7
8
.ai-stats-status-bar {
9
margin-top: 4px;
10
margin-bottom: 4px;
11
12
hr {
13
margin-top: 8px;
14
margin-bottom: 8px;
15
}
16
17
div.header {
18
display: flex;
19
align-items: center;
20
color: var(--vscode-descriptionForeground);
21
margin-bottom: 4px;
22
font-size: 12px;
23
font-weight: 600;
24
}
25
26
div.description {
27
font-size: 11px;
28
color: var(--vscode-descriptionForeground);
29
}
30
31
.monaco-button {
32
margin-top: 5px;
33
margin-bottom: 5px;
34
}
35
36
/* Setup for New User */
37
38
.setup .chat-feature-container {
39
display: flex;
40
align-items: center;
41
gap: 5px;
42
padding: 4px;
43
}
44
45
/* Settings */
46
47
.settings {
48
display: flex;
49
flex-direction: column;
50
gap: 5px;
51
}
52
53
.settings .setting {
54
display: flex;
55
align-items: center;
56
}
57
58
.settings .setting .monaco-checkbox {
59
height: 14px;
60
width: 14px;
61
margin-right: 5px;
62
}
63
64
.settings .setting .setting-label {
65
cursor: pointer;
66
}
67
68
.settings .setting.disabled .setting-label {
69
color: var(--vscode-disabledForeground);
70
}
71
72
73
/* Contributions */
74
75
.contribution .body {
76
display: flex;
77
flex-direction: row;
78
align-items: center;
79
gap: 5px;
80
81
.description,
82
.detail-item {
83
display: flex;
84
align-items: center;
85
gap: 3px;
86
}
87
88
.detail-item,
89
.detail-item a {
90
margin-left: auto;
91
color: var(--vscode-descriptionForeground);
92
}
93
}
94
}
95
96