github.com/argoproj/argo-cd/v3@v3.2.1/ui/src/app/applications/components/utils.scss (about)

     1  @import 'node_modules/argo-ui/src/styles/theme';
     2  
     3  .propagation-policy-list {
     4      display: flex;
     5      justify-content: left;
     6  }
     7  
     8  .propagation-policy-option {
     9      display: flex;
    10      align-items: center;
    11      padding-right: 2em;
    12  
    13      label {
    14          font-size: 15px;
    15          cursor: pointer;
    16  
    17          @include themify($themes) {
    18              color: themed('light-argo-gray-6');        
    19          }
    20      }
    21  
    22      input {
    23          cursor: pointer;
    24      }
    25  }
    26  
    27  .radio-button {
    28      margin-right: 0.1em;       
    29  }
    30  
    31  i.utils-health-status-icon {
    32      min-width: 13px;
    33      text-align: center;
    34  }
    35  
    36  .status-button {
    37      display: inline;
    38      border-radius: 5px;
    39      vertical-align: middle;
    40      padding: 2px;
    41      border: 1px solid $argo-color-gray-5;
    42      &:hover {
    43          background-color: $argo-color-gray-4;
    44      }
    45  }
    46  
    47  .icon.spin {
    48      animation: spin 2s linear infinite; 
    49      width: 0.5em;
    50      height: 0.5em;
    51      vertical-align: -0.05em;
    52      overflow: visible;
    53  }
    54  
    55  @keyframes spin {
    56      0% {
    57          transform: rotate(0deg);
    58      }
    59      100% {
    60          transform: rotate(360deg);
    61      }
    62  }
    63  
    64  .delete-dialog-icon {
    65      &.warning {
    66          color: #f4c030;
    67      }
    68      
    69      &.info {
    70          color: #0DADEA;
    71      }
    72  }