Path: blob/main/src/vs/base/browser/ui/codicons/codicon/codicon-modifiers.css
3296 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/* Use steps to throttle FPS to reduce CPU usage */20animation: codicon-spin 1.5s steps(30) infinite;21}2223.codicon-modifier-disabled {24opacity: 0.4;25}2627/* custom speed & easing for loading icon */28.codicon-loading,29.codicon-tree-item-loading::before {30animation-duration: 1s !important;31animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67) !important;32}333435