github.com/argoproj/argo-cd/v2@v2.10.9/ui/src/app/shared/components/editable-panel/editable-panel.scss (about)

     1  @import 'node_modules/argo-ui/src/styles/config';
     2  
     3  .editable-panel {
     4      position: relative;
     5  
     6      input {
     7          z-index: 10;
     8      }
     9  
    10      &__buttons {
    11          position: absolute;
    12          top: 30px;
    13          right: 3em;
    14      }
    15  
    16      .form-field__select {
    17          line-height: 15px;
    18          padding: 0;
    19      }
    20  
    21      .white-box__details-row {
    22          position: relative;
    23      }
    24  
    25      .argo-form-row__error-msg {
    26          position: absolute;
    27          top: 0;
    28      }
    29  
    30      &--disabled::after {
    31          content: '';
    32          border-radius: 4px;
    33          position: absolute;
    34          display: block;
    35          background: rgba($argo-color-gray-6, 0.2);
    36          left: 0;
    37          right: 0;
    38          top: 0;
    39          bottom: 0;
    40      }
    41  }