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
5241 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
.codicon-loading,
21
.codicon-tree-item-loading::before {
22
/* Use steps to throttle FPS to reduce CPU usage */
23
animation: codicon-spin 1.5s steps(30) infinite;
24
/* Ensure rotation happens around exact center to prevent wobble */
25
transform-origin: center center;
26
}
27
28
.codicon-modifier-disabled {
29
opacity: 0.4;
30
}
31
32