feat(platform): add realtime customer question flow
This commit is contained in:
@@ -1530,6 +1530,79 @@ body {
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
.vp-realtime-question-board {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
|
||||
gap: 14px;
|
||||
padding: 16px;
|
||||
border-bottom: 1px solid var(--vp-border);
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.vp-realtime-question-summary {
|
||||
padding: 14px;
|
||||
border: 1px solid rgba(22, 100, 255, 0.18);
|
||||
border-radius: var(--vp-radius);
|
||||
background: #f7faff;
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
.vp-realtime-question-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.vp-realtime-question-item {
|
||||
min-height: 142px;
|
||||
padding: 12px;
|
||||
border: 1px solid var(--vp-border);
|
||||
border-radius: var(--vp-radius);
|
||||
background: #fbfcff;
|
||||
color: inherit;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
font: inherit;
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
.vp-realtime-question-item:hover,
|
||||
.vp-realtime-question-item:focus-visible {
|
||||
border-color: rgba(22, 100, 255, 0.42);
|
||||
background: #f5f9ff;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.vp-realtime-question-item:disabled {
|
||||
cursor: not-allowed;
|
||||
opacity: 0.58;
|
||||
}
|
||||
|
||||
.vp-realtime-question-item strong {
|
||||
color: var(--vp-text);
|
||||
font-size: 17px;
|
||||
line-height: 23px;
|
||||
font-weight: 700;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.vp-realtime-question-item span {
|
||||
color: var(--vp-text-muted);
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
}
|
||||
|
||||
.vp-realtime-question-item em {
|
||||
color: var(--vp-primary);
|
||||
font-size: 12px;
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.vp-realtime-next-actions {
|
||||
padding: 16px;
|
||||
border-bottom: 1px solid var(--vp-border);
|
||||
@@ -6645,6 +6718,8 @@ button.vp-realtime-command-item:focus-visible {
|
||||
.vp-time-delivery-strip,
|
||||
.vp-time-delivery-grid,
|
||||
.vp-realtime-customer-board .semi-card-body,
|
||||
.vp-realtime-question-board,
|
||||
.vp-realtime-question-grid,
|
||||
.vp-realtime-next-actions,
|
||||
.vp-realtime-customer-steps,
|
||||
.vp-time-window-monitor .semi-card-body,
|
||||
|
||||
Reference in New Issue
Block a user