feat(web): unify history and account states

This commit is contained in:
lingniu
2026-07-20 04:25:46 +08:00
parent adf92ecd17
commit 04ec00d4be
7 changed files with 290 additions and 21 deletions

View File

@@ -27525,3 +27525,89 @@
padding: 9px 10px;
}
}
/*
* History and account governance now use the shared Semi UI state language
* inside secondary panels as well as their primary workspaces.
*/
.v2-history-trend > .semi-card-body > .v2-history-chart-empty.v2-state-surface,
.v2-history-trend > .semi-card-body > .v2-history-chart-loading.v2-state-surface {
min-height: 134px;
border: 0;
border-radius: 0;
}
.v2-history-trend > .semi-card-body > .v2-history-chart-loading.v2-state-surface {
position: relative;
display: grid;
top: auto;
align-content: center;
border-bottom: 0;
background: linear-gradient(180deg, #f5f9ff, #fff);
padding: 14px;
backdrop-filter: none;
}
.v2-history-trend .v2-history-chart-loading .v2-state-copy {
display: grid;
text-align: left;
}
.v2-export-job-list > .v2-history-side-loading.v2-state-surface,
.v2-export-job-list > .v2-history-side-empty.v2-state-surface {
min-height: 170px;
border: 0;
border-radius: 0;
}
.v2-history-evidence .v2-evidence-values-empty.v2-state-surface,
.v2-history-evidence .v2-history-side-empty.v2-state-surface {
min-height: 124px;
margin: 10px;
}
.v2-user-filter-empty.v2-state-surface {
min-height: 250px;
border: 0;
border-radius: 0;
}
.v2-user-filter-empty.v2-state-surface > .v2-state-empty.v2-user-filter-empty.semi-empty {
min-height: 0;
}
.v2-user-assigned-filter-empty.v2-state-surface {
min-height: 132px;
margin-top: 9px;
}
.v2-user-assigned-filter-empty.v2-state-surface > .v2-state-empty.v2-user-assigned-filter-empty.semi-empty {
min-height: 0;
margin-top: 0;
border: 0;
background: transparent;
}
.v2-user-vehicle-empty.v2-state-surface {
min-height: 176px;
margin-top: 10px;
}
@media (max-width: 680px) {
.v2-history-trend > .semi-card-body > .v2-history-chart-empty.v2-state-surface,
.v2-history-trend > .semi-card-body > .v2-history-chart-loading.v2-state-surface {
min-height: 116px;
}
.v2-user-filter-empty.v2-state-surface {
min-height: 184px;
}
.v2-user-assigned-filter-empty.v2-state-surface {
min-height: 118px;
}
.v2-user-vehicle-empty.v2-state-surface {
min-height: 164px;
}
}