-
Notifications
You must be signed in to change notification settings - Fork 31.5k
/
Copy pathchatEditorOverlay.css
91 lines (76 loc) · 2.63 KB
/
chatEditorOverlay.css
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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
.chat-editor-overlay-widget {
padding: 0px;
color: var(--vscode-button-foreground);
background-color: var(--vscode-button-background);
border-radius: 5px;
border: 1px solid var(--vscode-contrastBorder);
display: flex;
align-items: center;
z-index: 10;
box-shadow: 0 2px 8px var(--vscode-widget-shadow);
overflow: hidden;
}
@keyframes pulse {
0% {
box-shadow: 0 2px 8px 0 var(--vscode-widget-shadow);
}
50% {
box-shadow: 0 2px 8px 4px var(--vscode-widget-shadow);
}
100% {
box-shadow: 0 2px 8px 0 var(--vscode-widget-shadow);
}
}
.chat-editor-overlay-widget.busy {
animation: pulse ease-in 2.3s infinite;
}
.chat-editor-overlay-widget .chat-editor-overlay-progress {
align-items: center;
display: none;
padding: 0px 5px;
font-size: 12px;
font-variant-numeric: tabular-nums;
}
.chat-editor-overlay-widget.busy .chat-editor-overlay-progress {
display: inline-flex;
}
.chat-editor-overlay-widget.busy .chat-editor-overlay-progress .busy-label {
padding: 5px;
/* font-style: italic; */
}
.chat-editor-overlay-widget.busy .chat-editor-overlay-toolbar {
display: none;
}
.chat-editor-overlay-widget .action-item > .action-label {
padding: 5px;
font-size: 12px;
}
.chat-editor-overlay-widget .action-item:first-child > .action-label {
padding-left: 7px;
}
.chat-editor-overlay-widget .action-item:last-child > .action-label {
padding-right: 7px;
}
.chat-editor-overlay-widget.busy .chat-editor-overlay-progress .codicon,
.chat-editor-overlay-widget .action-item > .action-label.codicon {
color: var(--vscode-button-foreground);
}
.chat-editor-overlay-widget .monaco-action-bar .action-item.disabled > .action-label.codicon::before,
.chat-editor-overlay-widget .monaco-action-bar .action-item.disabled > .action-label.codicon,
.chat-editor-overlay-widget .monaco-action-bar .action-item.disabled > .action-label,
.chat-editor-overlay-widget .monaco-action-bar .action-item.disabled > .action-label:hover {
color: var(--vscode-button-foreground);
opacity: 0.7;
}
.chat-editor-overlay-widget .action-item.label-item {
font-variant-numeric: tabular-nums;
}
.chat-editor-overlay-widget .monaco-action-bar .action-item.label-item > .action-label,
.chat-editor-overlay-widget .monaco-action-bar .action-item.label-item > .action-label:hover {
color: var(--vscode-button-foreground);
opacity: 1;
}