fix: harden channel retry attribution and operations UI
This commit is contained in:
+139
-14
@@ -2633,6 +2633,13 @@ h3 {
|
||||
|
||||
.uplink-content {
|
||||
color: var(--color-text-strong);
|
||||
display: -webkit-box;
|
||||
line-height: 1.6;
|
||||
min-width: 320px;
|
||||
overflow: hidden;
|
||||
overflow-wrap: anywhere;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 3;
|
||||
}
|
||||
|
||||
.uplink-detail {
|
||||
@@ -8725,30 +8732,113 @@ h3 {
|
||||
color: var(--color-text-strong);
|
||||
}
|
||||
|
||||
.downstream-attempt-table {
|
||||
border-top: 0;
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
padding: 0;
|
||||
.downstream-attempt-timeline {
|
||||
border-top: 0 !important;
|
||||
display: grid !important;
|
||||
gap: var(--space-4) !important;
|
||||
grid-template-columns: 1fr !important;
|
||||
padding: var(--space-2) 0 0 !important;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.downstream-attempt-table > div {
|
||||
.downstream-attempt-timeline::before {
|
||||
background: var(--color-border);
|
||||
bottom: 24px;
|
||||
content: '';
|
||||
left: 19px;
|
||||
position: absolute;
|
||||
top: 28px;
|
||||
width: 2px;
|
||||
}
|
||||
|
||||
.downstream-attempt-card {
|
||||
align-items: start;
|
||||
border-top: 1px solid var(--color-border);
|
||||
display: grid;
|
||||
gap: var(--space-4);
|
||||
grid-template-columns: minmax(110px, .7fr) minmax(190px, 1.1fr) minmax(260px, 1.5fr) minmax(180px, 1fr);
|
||||
min-width: 820px;
|
||||
padding: var(--space-3) 0;
|
||||
grid-template-columns: 40px minmax(0, 1fr);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.downstream-attempt-table .downstream-attempt-table__header {
|
||||
.downstream-attempt-marker {
|
||||
align-items: center;
|
||||
background: var(--color-bg-subtle);
|
||||
border: 2px solid var(--color-border);
|
||||
border-radius: 50%;
|
||||
color: var(--color-text-muted);
|
||||
display: flex;
|
||||
font-size: var(--font-size-sm);
|
||||
font-weight: 600;
|
||||
font-weight: 700;
|
||||
height: 40px;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
width: 40px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.downstream-attempt-table > p {
|
||||
.downstream-attempt-marker--success { background: #ecfdf3; border-color: #86efac; color: #15803d; }
|
||||
.downstream-attempt-marker--danger { background: #fef2f2; border-color: #fca5a5; color: #b91c1c; }
|
||||
.downstream-attempt-marker--info { background: #eff6ff; border-color: #93c5fd; color: #1d4ed8; }
|
||||
|
||||
.downstream-attempt-card__body {
|
||||
background: var(--color-bg-subtle);
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: var(--radius-md);
|
||||
display: grid;
|
||||
gap: var(--space-4);
|
||||
padding: var(--space-4);
|
||||
}
|
||||
|
||||
.downstream-attempt-card__body > header {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.downstream-attempt-card dl {
|
||||
display: grid;
|
||||
gap: var(--space-3);
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.downstream-attempt-card dl > div {
|
||||
display: grid;
|
||||
gap: var(--space-1);
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.downstream-attempt-card dt {
|
||||
color: var(--color-text-muted);
|
||||
font-size: var(--font-size-xs);
|
||||
}
|
||||
|
||||
.downstream-attempt-card dd {
|
||||
color: var(--color-text-strong);
|
||||
font-size: var(--font-size-sm);
|
||||
margin: 0;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
.downstream-attempt-card__identifiers dd {
|
||||
font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
|
||||
}
|
||||
|
||||
.downstream-attempt-result {
|
||||
align-items: center;
|
||||
background: var(--color-surface);
|
||||
border-radius: var(--radius-sm);
|
||||
display: flex;
|
||||
gap: var(--space-4);
|
||||
justify-content: space-between;
|
||||
padding: var(--space-3);
|
||||
}
|
||||
|
||||
.downstream-attempt-result--error {
|
||||
background: #fef2f2;
|
||||
color: #b91c1c;
|
||||
}
|
||||
|
||||
.downstream-attempt-timeline > p {
|
||||
color: var(--color-text-muted);
|
||||
margin: var(--space-3) 0 0;
|
||||
}
|
||||
@@ -9619,7 +9709,42 @@ h3 {
|
||||
}
|
||||
|
||||
.admin-uplink-table-card .ui-table {
|
||||
min-width: 1160px;
|
||||
min-width: 1500px;
|
||||
}
|
||||
|
||||
.gateway-exception-list-heading {
|
||||
align-items: flex-start;
|
||||
border-bottom: 1px solid var(--color-border);
|
||||
gap: var(--space-5);
|
||||
margin: 0;
|
||||
padding: var(--space-5) var(--space-6);
|
||||
}
|
||||
|
||||
.gateway-exception-list-heading > div {
|
||||
display: grid;
|
||||
gap: var(--space-1);
|
||||
}
|
||||
|
||||
.gateway-exception-list-heading h2,
|
||||
.gateway-exception-list-heading p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.gateway-exception-page .report-task-table-card > .ui-pagination {
|
||||
border-top: 1px solid var(--color-border);
|
||||
padding: var(--space-4) var(--space-6);
|
||||
}
|
||||
|
||||
@media (max-width: 720px) {
|
||||
.downstream-attempt-card dl {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.downstream-attempt-result {
|
||||
align-items: flex-start;
|
||||
flex-direction: column;
|
||||
gap: var(--space-2);
|
||||
}
|
||||
}
|
||||
|
||||
.admin-uplink-table-card .ui-table th {
|
||||
|
||||
Reference in New Issue
Block a user