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

     1  @import 'node_modules/argo-ui/src/styles/config';
     2  @import 'node_modules/argo-ui/src/styles/theme';
     3  
     4  .application-deployment-history {
     5      &__item {
     6          position: relative;
     7          @include themify($themes) {
     8              background: themed('background-2');
     9              color: themed('text-1');
    10          }
    11          border-radius: $border-radius;
    12          box-shadow: 1px 1px 3px $argo-color-gray-5;
    13          margin-top: 1em;
    14  
    15          & > .columns {
    16              padding: 1em;
    17          }
    18  
    19          & > .columns:first-child {
    20              border-top-left-radius: $border-radius;
    21              border-bottom-left-radius: $border-radius;            
    22              @include themify($themes) {
    23                  background: themed('light-argo-teal-1');
    24                  color: themed('text-2');
    25              }
    26          }
    27      }
    28  
    29      &__item-menu {
    30          position: absolute;
    31          top: 1em;
    32          right: 1em;
    33      }
    34  
    35      &__show-parameter-details {
    36          margin: 20px 0px;
    37      }
    38  
    39      .white-box {
    40          margin-top: 1em;
    41          padding: 0;
    42          box-shadow: none;
    43      }
    44  
    45      .white-box__details p {
    46          margin-left: -1em;
    47      }
    48  
    49      .collapsible-section {
    50          margin-top: 20px;
    51          padding: 20px;
    52          border: 1px solid;
    53          box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
    54          border-radius: '4px';
    55          @include themify($themes) {
    56              border-color: themed('border');
    57              box-shadow: themed('shadow');
    58          }
    59      }
    60  
    61      .separator {
    62          height: 2px;
    63          margin: 1em 0;
    64          width: 100%;
    65          background-color: $argo-color-gray-5;
    66      }
    67  }