feat(platform): add history export next actions

This commit is contained in:
lingniu
2026-07-06 03:26:39 +08:00
parent 6a15503c7b
commit 08f2b62362
3 changed files with 250 additions and 1 deletions

View File

@@ -10765,6 +10765,108 @@ button.vp-realtime-command-item:focus-visible {
white-space: nowrap;
}
.vp-history-next-export-strip {
margin-top: 12px;
border: 1px solid rgba(45, 136, 255, 0.18);
border-radius: var(--vp-radius);
background: #fff;
display: grid;
grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1.28fr) minmax(190px, 0.58fr);
overflow: hidden;
}
.vp-history-next-export-copy {
padding: 16px 18px;
border-right: 1px solid var(--vp-border);
background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
display: grid;
gap: 10px;
align-content: start;
}
.vp-history-next-export-grid {
padding: 12px;
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 10px;
}
.vp-history-next-export-item {
min-height: 112px;
padding: 12px;
border: 1px solid rgba(22, 100, 255, 0.12);
border-radius: 8px;
background: #fbfcff;
color: inherit;
cursor: pointer;
font: inherit;
text-align: left;
display: grid;
gap: 8px;
align-content: start;
}
.vp-history-next-export-item:hover,
.vp-history-next-export-item:focus-visible,
.vp-history-next-export-action:hover,
.vp-history-next-export-action:focus-visible {
border-color: rgba(22, 100, 255, 0.42);
background: #f5f9ff;
box-shadow: var(--vp-shadow-sm);
outline: none;
}
.vp-history-next-export-item strong {
color: var(--vp-text);
font-size: 18px;
line-height: 24px;
word-break: break-word;
}
.vp-history-next-export-item span {
color: var(--vp-text-muted);
font-size: 12px;
line-height: 18px;
word-break: break-word;
}
.vp-history-next-export-actions {
padding: 12px;
border-left: 1px solid var(--vp-border);
background: #fafcff;
display: grid;
gap: 8px;
}
.vp-history-next-export-action {
min-height: 44px;
padding: 8px 10px;
border: 1px solid rgba(22, 100, 255, 0.13);
border-radius: 8px;
background: #fff;
color: inherit;
cursor: pointer;
font: inherit;
text-align: left;
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
}
.vp-history-next-export-action:disabled {
cursor: not-allowed;
opacity: 0.62;
}
.vp-history-next-export-action span {
color: var(--vp-primary);
font-size: 12px;
font-weight: 700;
line-height: 18px;
white-space: nowrap;
}
.vp-history-evidence-chain {
margin-top: 16px;
border: 1px solid rgba(22, 100, 255, 0.18);
@@ -13948,6 +14050,8 @@ button.vp-realtime-command-item:focus-visible {
.vp-trajectory-impact-grid,
.vp-history-delivery-conclusion-strip,
.vp-history-delivery-conclusion-metrics,
.vp-history-next-export-strip,
.vp-history-next-export-grid,
.vp-history-evidence-chain,
.vp-history-evidence-chain-grid,
.vp-trip-review-summary-grid,
@@ -14075,7 +14179,9 @@ button.vp-realtime-command-item:focus-visible {
}
.vp-history-delivery-conclusion-copy,
.vp-history-delivery-conclusion-actions {
.vp-history-delivery-conclusion-actions,
.vp-history-next-export-copy,
.vp-history-next-export-actions {
border-left: 0;
border-right: 0;
border-bottom: 1px solid var(--vp-border);