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

     1  @import 'node_modules/argo-ui/src/styles/config';
     2  @import 'node_modules/argo-ui/src/styles/theme';
     3  
     4  .application-node-info {
     5      &__manifest {
     6          overflow-x: auto;
     7  
     8          .tabs__content {
     9              background-color: white;
    10              @include themify($themes){
    11                  background-color: themed('background-2');
    12              }
    13          }
    14  
    15          &--raw {
    16              font-family: 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Courier, monospace;
    17              white-space: pre;
    18              font-size: 12px;
    19              color: gray;
    20              padding: 0 0 0 12px;
    21              line-height: 2em;
    22          }
    23      }
    24  
    25      &__labels {
    26          line-height: 28px;
    27      }
    28  
    29      &__label {
    30          background-color: $argo-color-gray-5;
    31          color: white;
    32          border-radius: 5px;
    33          padding: 4px;
    34          display: inline-block;
    35          margin-right: 2px;
    36          line-height: 14px;
    37      }
    38  
    39      &__checkboxes {
    40          text-align: right;
    41          label {
    42              padding-right: 2em;
    43              color: $argo-color-gray-8;
    44              @include themify($themes){
    45                  color: themed('text-2');
    46              }
    47          }
    48      }
    49      &__err_msg {
    50          padding-right: 2em;
    51          color: $argo-failed-color;
    52      }
    53      &__container {
    54          display: flex;
    55          align-items: center;
    56          flex-direction: row;
    57          line-height: 1.8;
    58          border-bottom: 1px solid rgba(222, 230, 235, 0.7);
    59  
    60          &--name {
    61              width: 15%;
    62          }
    63          &--highlight {
    64              font-style: italic;
    65          }
    66  
    67          &--hint {
    68              text-decoration: underline;
    69              text-decoration-style: dashed;
    70              cursor: pointer;
    71              &:hover {
    72                  text-decoration: none;
    73              }
    74          }
    75          &:last-child {
    76              border-bottom: none;
    77          }
    78      }
    79  }