Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/contrib/inlineProgress/browser/inlineProgressWidget.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
.inline-editor-progress-decoration {
7
display: inline-block;
8
width: 1em;
9
height: 1em;
10
}
11
12
.inline-progress-widget {
13
display: flex !important;
14
justify-content: center;
15
align-items: center;
16
}
17
18
.inline-progress-widget .icon {
19
font-size: 80% !important;
20
}
21
22
.inline-progress-widget:hover .icon {
23
font-size: 90% !important;
24
animation: none;
25
}
26
27
.inline-progress-widget:hover .icon::before {
28
content: var(--vscode-icon-x-content);
29
font-family: var(--vscode-icon-x-font-family);
30
}
31
32