feat(platform): save reusable customer views

This commit is contained in:
lingniu
2026-07-05 19:38:30 +08:00
parent 2e0b13dfb5
commit e1126a6fcc
4 changed files with 203 additions and 2 deletions

View File

@@ -353,6 +353,36 @@ body {
color: var(--vp-primary);
}
.vp-topbar-saved-views {
display: inline-flex;
align-items: center;
gap: 4px;
max-width: 260px;
overflow: hidden;
}
.vp-topbar-saved-views button {
max-width: 118px;
height: 28px;
padding: 0 8px;
border: 1px solid rgba(22, 119, 255, 0.18);
border-radius: 8px;
background: rgba(22, 119, 255, 0.06);
color: var(--vp-primary);
cursor: pointer;
font-size: 12px;
font-weight: 600;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.vp-topbar-saved-views button:hover,
.vp-topbar-saved-views button:focus-visible {
background: #ffffff;
outline: none;
}
.vp-topbar-release {
color: var(--vp-text-subtle);
font-size: 12px;