feat(platform): add notification orchestration strip
This commit is contained in:
@@ -8751,6 +8751,109 @@ button.vp-realtime-command-item:focus-visible {
|
||||
align-self: end;
|
||||
}
|
||||
|
||||
.vp-notification-orchestration-strip {
|
||||
margin-bottom: 16px;
|
||||
border: 1px solid rgba(22, 100, 255, 0.18);
|
||||
border-radius: var(--vp-radius);
|
||||
background: #fff;
|
||||
display: grid;
|
||||
grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.34fr) minmax(190px, 0.52fr);
|
||||
overflow: hidden;
|
||||
box-shadow: var(--vp-shadow-sm);
|
||||
}
|
||||
|
||||
.vp-notification-orchestration-copy {
|
||||
padding: 18px;
|
||||
border-right: 1px solid var(--vp-border);
|
||||
background: #f7fbff;
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
.vp-notification-orchestration-grid {
|
||||
padding: 14px;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, minmax(0, 1fr));
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.vp-notification-orchestration-item {
|
||||
min-height: 124px;
|
||||
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-notification-orchestration-item:hover,
|
||||
.vp-notification-orchestration-item:focus-visible,
|
||||
.vp-notification-orchestration-action:hover,
|
||||
.vp-notification-orchestration-action:focus-visible {
|
||||
border-color: rgba(22, 100, 255, 0.42);
|
||||
background: #f5f9ff;
|
||||
box-shadow: var(--vp-shadow-sm);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.vp-notification-orchestration-item strong {
|
||||
color: var(--vp-text);
|
||||
font-size: 18px;
|
||||
line-height: 24px;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.vp-notification-orchestration-item span {
|
||||
color: var(--vp-text-muted);
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.vp-notification-orchestration-actions {
|
||||
padding: 14px;
|
||||
border-left: 1px solid var(--vp-border);
|
||||
background: #fafcff;
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.vp-notification-orchestration-action {
|
||||
min-height: 46px;
|
||||
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-notification-orchestration-action:disabled {
|
||||
cursor: not-allowed;
|
||||
opacity: 0.62;
|
||||
}
|
||||
|
||||
.vp-notification-orchestration-action span {
|
||||
color: var(--vp-primary);
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
line-height: 18px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.vp-notification-question-board {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
|
||||
@@ -13995,6 +14098,8 @@ button.vp-realtime-command-item:focus-visible {
|
||||
.vp-alert-command-grid,
|
||||
.vp-notification-customer-board .semi-card-body,
|
||||
.vp-notification-customer-steps,
|
||||
.vp-notification-orchestration-strip,
|
||||
.vp-notification-orchestration-grid,
|
||||
.vp-notification-question-board,
|
||||
.vp-notification-question-grid,
|
||||
.vp-notification-coverage-board,
|
||||
@@ -14181,7 +14286,9 @@ button.vp-realtime-command-item:focus-visible {
|
||||
.vp-history-delivery-conclusion-copy,
|
||||
.vp-history-delivery-conclusion-actions,
|
||||
.vp-history-next-export-copy,
|
||||
.vp-history-next-export-actions {
|
||||
.vp-history-next-export-actions,
|
||||
.vp-notification-orchestration-copy,
|
||||
.vp-notification-orchestration-actions {
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
border-bottom: 1px solid var(--vp-border);
|
||||
|
||||
Reference in New Issue
Block a user