feat(platform): add customer question shortcuts
This commit is contained in:
@@ -559,6 +559,54 @@ body {
|
||||
line-height: 18px;
|
||||
}
|
||||
|
||||
.vp-fleet-question-grid {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.vp-fleet-question-item {
|
||||
min-height: 58px;
|
||||
padding: 10px 12px;
|
||||
border: 1px solid rgba(22, 100, 255, 0.14);
|
||||
border-radius: var(--vp-radius);
|
||||
background: #ffffff;
|
||||
color: inherit;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
font: inherit;
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
gap: 5px 10px;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.vp-fleet-question-item:hover,
|
||||
.vp-fleet-question-item:focus-visible {
|
||||
border-color: rgba(22, 100, 255, 0.42);
|
||||
background: #f5f9ff;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.vp-fleet-question-item strong {
|
||||
color: var(--vp-text);
|
||||
font-size: 13px;
|
||||
line-height: 19px;
|
||||
}
|
||||
|
||||
.vp-fleet-question-item span {
|
||||
grid-column: 1 / 2;
|
||||
color: var(--vp-text-muted);
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.vp-fleet-question-item .semi-tag {
|
||||
grid-column: 2 / 3;
|
||||
grid-row: 1 / span 2;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.vp-fleet-monitor-time {
|
||||
padding: 12px;
|
||||
border: 1px solid rgba(0, 164, 184, 0.22);
|
||||
|
||||
Reference in New Issue
Block a user