github.com/hernad/nomad@v1.6.112/ui/app/styles/components/task-sub-row.scss (about) 1 /** 2 * Copyright (c) HashiCorp, Inc. 3 * SPDX-License-Identifier: MPL-2.0 4 */ 5 6 $taskSubRowBackground: #f9f9f9; 7 8 table tbody .task-sub-row { 9 td { 10 border-top: 2px solid $taskSubRowBackground; 11 background-color: $taskSubRowBackground; 12 padding: 0.75em 1.5em; 13 .name-grid { 14 display: inline-grid; 15 grid-template-columns: auto 1fr; 16 gap: 1rem; 17 18 .task-name { 19 display: block; 20 width: 150px; 21 text-overflow: ellipsis; 22 overflow: hidden; 23 white-space: nowrap; 24 &:before { 25 color: black; 26 content: '/'; 27 display: inline-block; 28 margin-right: 0.5rem; 29 text-decoration: none; 30 } 31 } 32 33 .logs-sidebar-trigger { 34 color: $blue; 35 text-decoration: underline; 36 font-weight: normal; 37 background-color: transparent; 38 svg { 39 color: black; 40 margin-right: 5px; 41 position: relative; 42 top: 3px; 43 } 44 } 45 } 46 } 47 }