feat(platform): surface customer next actions

This commit is contained in:
lingniu
2026-07-05 14:00:13 +08:00
parent c7866b3ad2
commit 2574a3bfa0
3 changed files with 103 additions and 3 deletions

View File

@@ -460,6 +460,57 @@ body {
gap: 12px;
}
.vp-fleet-next-actions {
display: grid;
gap: 9px;
}
.vp-fleet-next-action {
min-height: 98px;
padding: 12px;
border: 1px solid rgba(22, 100, 255, 0.18);
border-radius: var(--vp-radius);
background: #ffffff;
color: inherit;
text-align: left;
cursor: pointer;
font: inherit;
display: grid;
grid-template-columns: 70px minmax(0, 1fr);
gap: 7px 10px;
align-content: start;
}
.vp-fleet-next-action:hover,
.vp-fleet-next-action:focus-visible {
border-color: rgba(22, 100, 255, 0.42);
background: #f5f9ff;
outline: none;
}
.vp-fleet-next-action strong {
color: var(--vp-text);
font-size: 15px;
line-height: 22px;
font-weight: 700;
}
.vp-fleet-next-action span {
grid-column: 1 / -1;
color: var(--vp-text-muted);
font-size: 12px;
line-height: 18px;
}
.vp-fleet-next-action em {
grid-column: 1 / -1;
color: var(--vp-primary);
font-size: 12px;
font-style: normal;
font-weight: 700;
line-height: 18px;
}
.vp-fleet-monitor-actions {
display: grid;
gap: 8px;