File size: 1,448 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
table.github-deployments-logs {
border-collapse: collapse;
margin-bottom: 0;
thead th span {
font-weight: 500;
}
th,
td {
padding: 8px 0;
font-weight: normal;
}
tr th {
padding: 8px 0 16px 0;
color: var(--studio-gray-60, #50575e);
}
thead tr,
tbody tr:not(:last-of-type) {
border-bottom: 1px solid var(--color-border-subtle);
}
tbody tr td {
padding-top: 20px;
padding-bottom: 20px;
}
tbody tr:last-of-type {
td {
padding-bottom: 0;
}
}
td {
vertical-align: middle !important;
padding-right: 32px;
> * {
white-space: nowrap;
}
&:has(.github-deployments-commit-author) {
padding-right: 64px;
}
&:last-child {
padding-left: 32px;
padding-right: 0;
text-align: right;
}
}
tr.github-deployments-run-item {
cursor: pointer;
}
}
td.github-deployments-logs-content {
text-align: left !important;
padding-left: 0 !important;
.github-deployments-loading-placeholder {
margin-bottom: 0;
}
.show-more {
text-decoration: underline;
}
pre {
background-color: transparent;
border-left: 1px solid;
margin: 5px 0;
}
}
.github-deployments-runs {
width: 100%;
.action-panel {
overflow: auto;
}
.card {
margin-left: 1px;
margin-right: 1px;
}
}
.github-deployments-commit-author {
display: inline-flex;
gap: 8px;
align-items: center;
width: max-content;
img {
width: 40px;
height: 40px;
flex-shrink: 0;
border-radius: 50%;
}
}
|