fix: keep web-probe screenshot summaries bounded
This commit is contained in:
@@ -943,6 +943,52 @@ select {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.table-frame {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.runs-table,
|
||||
.runs-table tbody,
|
||||
.runs-table tr,
|
||||
.runs-table td {
|
||||
display: block;
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.runs-table {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.runs-table thead {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.runs-table tr {
|
||||
padding: 10px 12px;
|
||||
border-bottom: 1px solid #edf0f4;
|
||||
}
|
||||
|
||||
.runs-table td {
|
||||
display: grid;
|
||||
grid-template-columns: 82px minmax(0, 1fr);
|
||||
gap: 8px;
|
||||
padding: 6px 0;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.runs-table td::before {
|
||||
content: attr(data-label);
|
||||
color: var(--muted);
|
||||
font-size: 10px;
|
||||
font-weight: 800;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.run-identity div {
|
||||
grid-template-columns: 54px minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.run-timeline {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user