| b69ab31 | | | 1 | /** |
| b69ab31 | | | 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. |
| b69ab31 | | | 3 | * |
| b69ab31 | | | 4 | * This source code is licensed under the MIT license found in the |
| b69ab31 | | | 5 | * LICENSE file in the root directory of this source tree. |
| b69ab31 | | | 6 | */ |
| b69ab31 | | | 7 | |
| b69ab31 | | | 8 | .icon-size-XS:before { |
| b69ab31 | | | 9 | font-size: 80%; |
| b69ab31 | | | 10 | } |
| b69ab31 | | | 11 | .icon-size-M:before { |
| b69ab31 | | | 12 | font-size: 150%; |
| b69ab31 | | | 13 | } |
| b69ab31 | | | 14 | .icon-size-L:before { |
| b69ab31 | | | 15 | font-size: 200%; |
| b69ab31 | | | 16 | } |
| b69ab31 | | | 17 | |
| b69ab31 | | | 18 | .codicon-loading { |
| b69ab31 | | | 19 | animation: spin infinite; |
| b69ab31 | | | 20 | } |
| b69ab31 | | | 21 | @keyframes spin { |
| b69ab31 | | | 22 | 0% { |
| b69ab31 | | | 23 | transform: rotate(0); |
| b69ab31 | | | 24 | } |
| b69ab31 | | | 25 | 100% { |
| b69ab31 | | | 26 | transform: rotate(360deg); |
| b69ab31 | | | 27 | } |
| b69ab31 | | | 28 | } |
| b69ab31 | | | 29 | |
| b69ab31 | | | 30 | .icon-blue { |
| b69ab31 | | | 31 | color: var(--button-primary-background); |
| b69ab31 | | | 32 | } |
| b69ab31 | | | 33 | .icon-red { |
| b69ab31 | | | 34 | color: var(--signal-bad-bg); |
| b69ab31 | | | 35 | } |
| b69ab31 | | | 36 | .icon-yellow { |
| b69ab31 | | | 37 | color: var(--signal-medium-bg); |
| b69ab31 | | | 38 | } |
| b69ab31 | | | 39 | .icon-green { |
| b69ab31 | | | 40 | color: var(--signal-good-bg); |
| b69ab31 | | | 41 | } |