github.com/argoproj/argo-cd/v2@v2.10.9/ui/src/app/settings/components/settings-overview/settings-overview.scss (about)

     1  @import 'node_modules/argo-ui/src/styles/config';
     2  @import 'node_modules/argo-ui/src/styles/theme';
     3  
     4  .settings-overview {
     5      &__redirect-panel {
     6          margin: 18px 0;
     7      }
     8  
     9      
    10      &__redirect-panel {
    11          position: relative;
    12          padding: 20px;
    13          font-size: 16px;
    14          @include themify($themes) {
    15              background-color: themed('background-2'); 
    16              color: themed('text-2');;                
    17          }
    18          border-radius: 4px;
    19          box-shadow: 1px 2px 3px rgba(#000, .1);
    20          cursor: pointer;
    21  
    22          &:hover {
    23              @include themify($themes) {
    24                  background-color: themed('light-argo-teal-1');                               
    25              }
    26          }
    27  
    28          &__ico {
    29              position: relative;
    30              top: -5px;
    31              float: left;
    32              margin-right: 10px;
    33              font-size: 1.6em;
    34              color: $argo-success-color;
    35          }
    36  
    37          &__content {
    38              overflow: hidden;
    39              width: auto;
    40              padding-right: 30px;
    41          }
    42  
    43          &__title {
    44              font-size: 1.2em;
    45              color: $argo-color-teal-6;
    46          }
    47  
    48          &__description {
    49              font-size: .8125em;
    50              @include themify($themes) {                
    51                  color: themed('text-1');;                
    52              }
    53          }
    54  
    55          &__arrow {
    56              position: absolute;
    57              top: 50%;
    58              right: 30px;
    59              transform: translateY(-50%);
    60              font-size: 1.4em;
    61              color: $argo-color-gray-7;
    62          }
    63      }
    64  }