feat: add retry wave visibility controls
This commit is contained in:
+69
-2
@@ -450,6 +450,11 @@ a {
|
||||
background: #fff0d9;
|
||||
}
|
||||
|
||||
.badge.success {
|
||||
color: var(--accent);
|
||||
background: #d7eee6;
|
||||
}
|
||||
|
||||
.badge.error {
|
||||
color: var(--red);
|
||||
background: #ffece7;
|
||||
@@ -622,9 +627,29 @@ a {
|
||||
background: #e5eaef;
|
||||
}
|
||||
|
||||
.meta-retry {
|
||||
color: #0f5045;
|
||||
background: #d2eee4;
|
||||
}
|
||||
|
||||
.meta-first-list-pill {
|
||||
display: inline-flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.meta-first-mini {
|
||||
border-radius: 999px;
|
||||
padding: 2px 6px;
|
||||
background: rgba(198, 84, 37, 0.09);
|
||||
color: #8d421e;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.request-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1.05fr 1.35fr 1.6fr;
|
||||
grid-template-columns: minmax(150px, 1fr) minmax(220px, 1.25fr) minmax(260px, 1.5fr) minmax(180px, 1.05fr);
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
@@ -653,6 +678,46 @@ a {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.reasoning-retry-block {
|
||||
grid-column: span 2;
|
||||
border-color: rgba(22, 107, 92, 0.16);
|
||||
background:
|
||||
radial-gradient(circle at 0% 0%, rgba(22, 107, 92, 0.1), transparent 42%),
|
||||
rgba(255, 250, 240, 0.82);
|
||||
}
|
||||
|
||||
.retry-chip-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.retry-first-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.retry-first-chip {
|
||||
border: 1px solid rgba(22, 107, 92, 0.18);
|
||||
border-radius: 999px;
|
||||
padding: 4px 8px;
|
||||
color: #12463c;
|
||||
background: rgba(22, 107, 92, 0.1);
|
||||
font-size: 11px;
|
||||
font-weight: 750;
|
||||
}
|
||||
|
||||
.retry-first-chip.pending {
|
||||
color: var(--muted);
|
||||
background: rgba(30, 33, 29, 0.05);
|
||||
}
|
||||
|
||||
.compact-chip {
|
||||
padding: 3px 7px;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
min-width: 960px;
|
||||
@@ -946,9 +1011,11 @@ form {
|
||||
}
|
||||
|
||||
.request-head,
|
||||
.request-grid {
|
||||
.request-grid,
|
||||
.reasoning-retry-block {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
grid-column: auto;
|
||||
}
|
||||
|
||||
.info-row {
|
||||
|
||||
Reference in New Issue
Block a user