feat(platform): add time window next action strip
This commit is contained in:
@@ -4051,6 +4051,108 @@ body {
|
||||
align-self: end;
|
||||
}
|
||||
|
||||
.vp-time-next-action-strip {
|
||||
margin-top: 14px;
|
||||
border: 1px solid rgba(22, 100, 255, 0.18);
|
||||
border-radius: var(--vp-radius);
|
||||
background: #fff;
|
||||
display: grid;
|
||||
grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr) minmax(180px, 0.52fr);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.vp-time-next-action-copy {
|
||||
padding: 16px;
|
||||
border-right: 1px solid var(--vp-border);
|
||||
background: #f7fbff;
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
.vp-time-next-action-grid {
|
||||
padding: 12px;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.vp-time-next-action-item {
|
||||
min-height: 116px;
|
||||
padding: 12px;
|
||||
border: 1px solid rgba(22, 100, 255, 0.13);
|
||||
border-radius: 8px;
|
||||
background: #fbfcff;
|
||||
color: inherit;
|
||||
cursor: pointer;
|
||||
font: inherit;
|
||||
text-align: left;
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
.vp-time-next-action-item:hover,
|
||||
.vp-time-next-action-item:focus-visible,
|
||||
.vp-time-next-action-button:hover,
|
||||
.vp-time-next-action-button:focus-visible {
|
||||
border-color: rgba(22, 100, 255, 0.42);
|
||||
background: #f5f9ff;
|
||||
box-shadow: var(--vp-shadow-sm);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.vp-time-next-action-item strong {
|
||||
color: var(--vp-text);
|
||||
font-size: 18px;
|
||||
line-height: 24px;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.vp-time-next-action-item span {
|
||||
color: var(--vp-text-muted);
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.vp-time-next-action-actions {
|
||||
padding: 12px;
|
||||
border-left: 1px solid var(--vp-border);
|
||||
background: #fafcff;
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.vp-time-next-action-button {
|
||||
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-time-next-action-button:disabled {
|
||||
cursor: not-allowed;
|
||||
opacity: 0.62;
|
||||
}
|
||||
|
||||
.vp-time-next-action-button span {
|
||||
color: var(--vp-primary);
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
line-height: 18px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.vp-result-summary-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
@@ -14206,6 +14308,8 @@ button.vp-realtime-command-item:focus-visible {
|
||||
.vp-mileage-mini-charts,
|
||||
.vp-time-service-path,
|
||||
.vp-time-service-path-grid,
|
||||
.vp-time-next-action-strip,
|
||||
.vp-time-next-action-grid,
|
||||
.vp-playback-layout,
|
||||
.vp-playback-timeline {
|
||||
grid-template-columns: 1fr;
|
||||
@@ -14287,6 +14391,8 @@ button.vp-realtime-command-item:focus-visible {
|
||||
.vp-history-delivery-conclusion-actions,
|
||||
.vp-history-next-export-copy,
|
||||
.vp-history-next-export-actions,
|
||||
.vp-time-next-action-copy,
|
||||
.vp-time-next-action-actions,
|
||||
.vp-notification-orchestration-copy,
|
||||
.vp-notification-orchestration-actions {
|
||||
border-left: 0;
|
||||
|
||||
Reference in New Issue
Block a user