github.com/freiheit-com/kuberpult@v1.24.2-0.20240328135542-315d5630abe6/services/frontend-service/src/ui/components/CommitInfo/CommitInfo.scss (about)

     1  /*This file is part of kuberpult.
     2  
     3  Kuberpult is free software: you can redistribute it and/or modify
     4  it under the terms of the Expat(MIT) License as published by
     5  the Free Software Foundation.
     6  
     7  Kuberpult is distributed in the hope that it will be useful,
     8  but WITHOUT ANY WARRANTY; without even the implied warranty of
     9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    10  MIT License for more details.
    11  
    12  You should have received a copy of the MIT License
    13  along with kuberpult. If not, see <https://directory.fsf.org/wiki/License:Expat>.
    14  
    15  Copyright 2023 freiheit.com*/
    16  
    17  .commit-page {
    18      .next-prev-buttons {
    19          display: flex;
    20          flex-direction: row;
    21      }
    22  
    23      .history-button-container {
    24          width: auto;
    25          padding: 5px;
    26      }
    27  
    28      table,
    29      th,
    30      td {
    31          border: 1px solid var(--mdc-theme-primary);
    32          border-collapse: collapse;
    33      }
    34  
    35      table {
    36          width: 100%;
    37      }
    38  
    39      .metadata {
    40          th.hash {
    41              width: 25%;
    42          }
    43  
    44          th.message {
    45              width: 50%;
    46          }
    47  
    48          th.apps {
    49              width: 25%;
    50          }
    51      }
    52  
    53      .events {
    54          th.date {
    55              width: 25%;
    56          }
    57  
    58          th.description {
    59              width: 50%;
    60          }
    61  
    62          th.environments {
    63              width: 25%;
    64          }
    65      }
    66  }