Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/base/browser/ui/codicons/codicon/codicon-modifiers.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
.codicon-wrench-subaction {
7
opacity: 0.5;
8
}
9
10
@keyframes codicon-spin {
11
100% {
12
transform:rotate(360deg);
13
}
14
}
15
16
.codicon-sync.codicon-modifier-spin,
17
.codicon-loading.codicon-modifier-spin,
18
.codicon-gear.codicon-modifier-spin,
19
.codicon-notebook-state-executing.codicon-modifier-spin {
20
/* Use steps to throttle FPS to reduce CPU usage */
21
animation: codicon-spin 1.5s steps(30) infinite;
22
}
23
24
.codicon-modifier-disabled {
25
opacity: 0.4;
26
}
27
28
/* custom speed & easing for loading icon */
29
.codicon-loading,
30
.codicon-tree-item-loading::before {
31
animation-duration: 1s !important;
32
animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67) !important;
33
}
34
35