addons/components/Icon.cssblame
View source
b69ab311/**
b69ab312 * Copyright (c) Meta Platforms, Inc. and affiliates.
b69ab313 *
b69ab314 * This source code is licensed under the MIT license found in the
b69ab315 * LICENSE file in the root directory of this source tree.
b69ab316 */
b69ab317
b69ab318.icon-size-XS:before {
b69ab319 font-size: 80%;
b69ab3110}
b69ab3111.icon-size-M:before {
b69ab3112 font-size: 150%;
b69ab3113}
b69ab3114.icon-size-L:before {
b69ab3115 font-size: 200%;
b69ab3116}
b69ab3117
b69ab3118.codicon-loading {
b69ab3119 animation: spin infinite;
b69ab3120}
b69ab3121@keyframes spin {
b69ab3122 0% {
b69ab3123 transform: rotate(0);
b69ab3124 }
b69ab3125 100% {
b69ab3126 transform: rotate(360deg);
b69ab3127 }
b69ab3128}
b69ab3129
b69ab3130.icon-blue {
b69ab3131 color: var(--button-primary-background);
b69ab3132}
b69ab3133.icon-red {
b69ab3134 color: var(--signal-bad-bg);
b69ab3135}
b69ab3136.icon-yellow {
b69ab3137 color: var(--signal-medium-bg);
b69ab3138}
b69ab3139.icon-green {
b69ab3140 color: var(--signal-good-bg);
b69ab3141}