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

     1  @import 'node_modules/argo-ui/src/styles/config';
     2  @import 'node_modules/argo-ui/src/styles/theme';
     3  
     4  .application-resources-diff {
     5      &__checkboxes {
     6          text-align: right;
     7          label {
     8              padding-right: 2em;
     9              color: $argo-color-gray-8;
    10              @include themify($themes){
    11                  color: themed('text-2');
    12              }
    13          }
    14      }
    15      &__diff {
    16          font-size: 10pt;
    17          &__title {
    18              font-weight: bold;
    19              .diff__collapse {
    20                  position: absolute;
    21                  right: 0;
    22                  cursor: pointer;
    23                  margin-left: auto;
    24                  margin-right: 1.5rem;
    25                  color: #495763;
    26                  font-size: 20px;
    27              }
    28          }
    29      }
    30  }
    31  
    32  .custom-diff-hunk {           
    33      color: $argo-color-gray-6;
    34      border-bottom: 1px dashed;
    35      @include themify($themes){
    36          border-bottom: 1px dashed themed('text-2');
    37      }
    38  }