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

     1  @import 'node_modules/argo-ui/src/styles/config';
     2  
     3  .application-deployment-history {
     4      &__item {
     5          cursor: pointer;
     6          position: relative;
     7          color: $argo-color-gray-6;
     8          border-radius: $border-radius;
     9          box-shadow: 1px 1px 3px $argo-color-gray-5;
    10          margin-top: 1em;
    11          background: white;
    12          overflow: hidden;
    13  
    14          & > .columns {
    15              padding: 1em;
    16          }
    17  
    18          & > .columns:first-child {
    19              border-top-left-radius: $border-radius;
    20              border-bottom-left-radius: $border-radius;
    21              background-color: $argo-color-teal-1;
    22          }
    23      }
    24  
    25      &__item-menu {
    26          position: absolute;
    27          top: 1em;
    28          right: 1em;
    29      }
    30  
    31      .white-box {
    32          margin-top: 1em;
    33          padding: 0;
    34          box-shadow: none;
    35      }
    36  
    37      .white-box__details p {
    38          margin-left: -1em;
    39      }
    40  }