feat(platform): add global customer time window

This commit is contained in:
lingniu
2026-07-05 19:21:52 +08:00
parent 4085268971
commit 0bfc47bc1c
4 changed files with 148 additions and 1 deletions

View File

@@ -266,6 +266,42 @@ body {
white-space: nowrap;
}
.vp-topbar-time-window {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 2px;
border: 1px solid var(--vp-border);
border-radius: 8px;
background: #f8fafc;
}
.vp-topbar-time-window label {
display: inline-flex;
align-items: center;
gap: 4px;
height: 28px;
padding: 0 6px;
color: var(--vp-text-muted);
font-size: 12px;
font-weight: 600;
}
.vp-topbar-time-window input {
width: 118px;
height: 24px;
border: 0;
border-radius: 6px;
background: #ffffff;
color: var(--vp-text);
font-size: 12px;
outline: none;
}
.vp-topbar-time-window input:focus {
box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.16);
}
.vp-topbar-quick-actions {
height: 32px;
display: inline-flex;