Path: blob/main/src/vs/base/browser/ui/codicons/codicon/codicon-modifiers.css
5241 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45.codicon-wrench-subaction {6opacity: 0.5;7}89@keyframes codicon-spin {10100% {11transform:rotate(360deg);12}13}1415.codicon-sync.codicon-modifier-spin,16.codicon-loading.codicon-modifier-spin,17.codicon-gear.codicon-modifier-spin,18.codicon-notebook-state-executing.codicon-modifier-spin,19.codicon-loading,20.codicon-tree-item-loading::before {21/* Use steps to throttle FPS to reduce CPU usage */22animation: codicon-spin 1.5s steps(30) infinite;23/* Ensure rotation happens around exact center to prevent wobble */24transform-origin: center center;25}2627.codicon-modifier-disabled {28opacity: 0.4;29}303132