feat(platform): add vehicle list customer questions
This commit is contained in:
@@ -2158,6 +2158,90 @@ button.vp-realtime-command-item:focus-visible {
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
.vp-vehicle-question-board {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.vp-vehicle-question-summary {
|
||||
min-height: 156px;
|
||||
padding: 14px;
|
||||
border: 1px solid rgba(22, 100, 255, 0.22);
|
||||
border-radius: var(--vp-radius);
|
||||
background: #f6f9ff;
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
.vp-vehicle-question-summary strong {
|
||||
color: var(--vp-text);
|
||||
font-size: 19px;
|
||||
line-height: 25px;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.vp-vehicle-question-summary span {
|
||||
color: var(--vp-text-muted);
|
||||
font-size: 13px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
.vp-vehicle-question-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.vp-vehicle-question-item {
|
||||
min-height: 156px;
|
||||
padding: 12px;
|
||||
border: 1px solid var(--vp-border);
|
||||
border-radius: 8px;
|
||||
background: #fbfcff;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
font: inherit;
|
||||
display: grid;
|
||||
gap: 9px;
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
.vp-vehicle-question-item:disabled {
|
||||
cursor: not-allowed;
|
||||
opacity: 0.62;
|
||||
}
|
||||
|
||||
.vp-vehicle-question-item:not(:disabled):hover,
|
||||
.vp-vehicle-question-item:not(:disabled):focus-visible {
|
||||
border-color: rgba(22, 100, 255, 0.42);
|
||||
background: #f5f9ff;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.vp-vehicle-question-item strong {
|
||||
color: var(--vp-text);
|
||||
font-size: 18px;
|
||||
line-height: 24px;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.vp-vehicle-question-item span {
|
||||
color: var(--vp-text-muted);
|
||||
font-size: 13px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
.vp-vehicle-question-item em {
|
||||
color: #1664ff;
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
align-self: end;
|
||||
}
|
||||
|
||||
.vp-vehicle-decision-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
@@ -6708,6 +6792,8 @@ button.vp-realtime-command-item:focus-visible {
|
||||
.vp-vehicle-service-grid,
|
||||
.vp-vehicle-lookup-head,
|
||||
.vp-vehicle-lookup-grid,
|
||||
.vp-vehicle-question-board,
|
||||
.vp-vehicle-question-grid,
|
||||
.vp-vehicle-decision-grid,
|
||||
.vp-vehicle-package-board,
|
||||
.vp-vehicle-package-grid,
|
||||
|
||||
Reference in New Issue
Block a user