feat(platform): add vehicle priority queue
This commit is contained in:
@@ -672,6 +672,82 @@ body {
|
||||
line-height: 18px;
|
||||
}
|
||||
|
||||
.vp-vehicle-priority-queue {
|
||||
padding: 12px;
|
||||
border: 1px solid rgba(255, 127, 0, 0.2);
|
||||
border-radius: var(--vp-radius);
|
||||
background: #fffaf3;
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.vp-vehicle-priority-queue-head {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.vp-vehicle-priority-queue-head > div {
|
||||
display: grid;
|
||||
gap: 2px;
|
||||
}
|
||||
|
||||
.vp-vehicle-priority-queue-head .semi-typography-secondary {
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
}
|
||||
|
||||
.vp-vehicle-priority-queue-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.vp-vehicle-priority-queue-item {
|
||||
min-height: 118px;
|
||||
padding: 10px 12px;
|
||||
border: 1px solid rgba(255, 127, 0, 0.2);
|
||||
border-radius: 8px;
|
||||
background: #fff;
|
||||
color: inherit;
|
||||
cursor: pointer;
|
||||
font: inherit;
|
||||
text-align: left;
|
||||
display: grid;
|
||||
gap: 7px;
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
.vp-vehicle-priority-queue-item:hover,
|
||||
.vp-vehicle-priority-queue-item:focus-visible {
|
||||
border-color: rgba(255, 127, 0, 0.48);
|
||||
box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.08);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.vp-vehicle-priority-queue-item strong {
|
||||
color: var(--vp-text);
|
||||
font-size: 18px;
|
||||
line-height: 24px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.vp-vehicle-priority-queue-item span {
|
||||
color: var(--vp-text-muted);
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.vp-vehicle-priority-queue-item em {
|
||||
color: var(--vp-primary);
|
||||
font-size: 12px;
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
line-height: 18px;
|
||||
}
|
||||
|
||||
.vp-fleet-next-actions {
|
||||
display: grid;
|
||||
gap: 9px;
|
||||
@@ -8237,6 +8313,7 @@ button.vp-realtime-command-item:focus-visible {
|
||||
.vp-customer-cockpit-actions,
|
||||
.vp-customer-vehicle-monitor,
|
||||
.vp-customer-vehicle-monitor-grid,
|
||||
.vp-vehicle-priority-queue-grid,
|
||||
.vp-customer-cockpit .semi-card-body,
|
||||
.vp-customer-cockpit-metrics,
|
||||
.vp-customer-cockpit-trust,
|
||||
|
||||
Reference in New Issue
Block a user