github.com/argoproj/argo-cd/v2@v2.10.9/ui/src/app/applications/components/application-summary/application-summary.scss (about)

     1  @import 'node_modules/argo-ui/src/styles/config';
     2  @import 'node_modules/argo-ui/src/styles/theme';
     3  
     4  .application-summary {
     5      &__labels {
     6          line-height: 28px;
     7          display: flex;
     8          align-items: center;
     9          height: 100%;
    10          flex-wrap: wrap;
    11          padding-top: 0.5em;
    12      }
    13  
    14      &__label {
    15          background-color: $argo-color-gray-5;
    16          color: white;
    17          border-radius: 5px;
    18          padding: 4px;
    19          line-height: 14px;
    20          margin: 0.3em 0;
    21          margin-right: 2px;
    22      }
    23  
    24      &__sort-icon {
    25          cursor: pointer;
    26          position: absolute;
    27          font-size: 1.3em;
    28          left: -1em;
    29  
    30          &.fa-sort-up {
    31              top: 10px;
    32          }
    33  
    34          &.fa-sort-down {
    35              bottom: 10px;
    36          }
    37      }
    38      &__remove-icon {
    39          cursor: pointer;
    40          position: absolute;
    41          top: 1em;
    42          right: 1em;
    43      }
    44  
    45      .argo-field {
    46          line-height: 1.15;
    47      }
    48  
    49      .white-box__details p {
    50          font-weight: 500;
    51          @include themify($themes) {            
    52              color: themed('text-1');
    53          }
    54      }
    55  
    56      .white-box__details-row .row {
    57          padding-left: 1em;
    58          padding-right: 1em;
    59      }
    60  
    61      .white-box__details-row .row .columns:last-child {
    62          padding-left: 1em;
    63      }
    64  
    65      .select {
    66          padding-bottom: 0;
    67      }
    68  
    69      .row.application-retry-options {
    70          .columns.application-retry-options__item{
    71              padding-left: 0;
    72              padding-right: 10px;
    73          }
    74  
    75          .argo-form-row__error-msg {
    76              position: static;
    77              line-height: 1;
    78          }
    79      }
    80  }