github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/ui/app/styles/components/task-sub-row.scss (about)

     1  $taskSubRowBackground: #f9f9f9;
     2  
     3  table tbody .task-sub-row {
     4    td {
     5      border-top: 2px solid $taskSubRowBackground;
     6      background-color: $taskSubRowBackground;
     7      padding: 0.75em 1.5em;
     8      .name-grid {
     9        display: inline-grid;
    10        grid-template-columns: auto 1fr;
    11        gap: 1rem;
    12  
    13        .task-name {
    14          display: block;
    15          width: 150px;
    16          text-overflow: ellipsis;
    17          overflow: hidden;
    18          white-space: nowrap;
    19          &:before {
    20            color: black;
    21            content: '/';
    22            display: inline-block;
    23            margin-right: 0.5rem;
    24            text-decoration: none;
    25          }
    26        }
    27  
    28        .logs-sidebar-trigger {
    29          color: $blue;
    30          text-decoration: underline;
    31          font-weight: normal;
    32          background-color: transparent;
    33          svg {
    34            color: black;
    35            margin-right: 5px;
    36            position: relative;
    37            top: 3px;
    38          }
    39        }
    40      }
    41    }
    42  }