feat: unify governance evidence workbenches

This commit is contained in:
lingniu
2026-07-19 06:51:23 +08:00
parent f2fe5404d9
commit 3b5a66b687
6 changed files with 249 additions and 79 deletions

View File

@@ -21686,3 +21686,94 @@
padding: 10px;
}
}
/*
* Semi UI convergence: access governance and reconciliation evidence.
* Keep the queue/table stable while configuration, evidence and trends share
* the same identity, summary and scroll hierarchy.
*/
.v2-access-governance-sidesheet .v2-workspace-config-content {
padding: 10px;
}
.v2-access-governance-sidesheet .v2-access-governance {
align-content: start;
}
.v2-access-governance-sidesheet .v2-access-identity-queue-v3,
.v2-access-governance-sidesheet .v2-access-settings {
overflow: hidden;
border: 1px solid #dce5ef;
border-radius: 11px;
background: #fff;
box-shadow: 0 7px 22px rgba(31, 53, 80, .045);
}
.v2-reconcile-detail-sidesheet .v2-workspace-config-content {
padding: 0;
}
.v2-reconcile-detail-sidesheet .v2-workspace-config-summary > span:first-child strong,
.v2-reconcile-detail-sidesheet .v2-workspace-config-summary > span:nth-child(2) strong {
font-size: 13px;
}
.v2-reconcile-detail-sidesheet .v2-workspace-config-summary > span:last-child strong,
.v2-reconcile-detail-sidesheet .v2-workspace-config-summary > span:last-child em {
overflow: visible;
}
.v2-reconcile-detail-sidesheet .v2-reconcile-detail.is-sheet.semi-card {
min-height: 100%;
background: transparent;
}
.v2-reconcile-detail-sidesheet .v2-reconcile-detail.is-sheet > .semi-card-body {
background: transparent;
}
.v2-reconcile-detail-sidesheet .v2-reconcile-detail-body {
gap: 10px;
padding: 10px;
}
.v2-reconcile-trend-sidesheet .v2-workspace-config-content {
padding: 10px;
}
.v2-reconcile-trend-sidesheet .v2-workspace-config-content > #v2-reconcile-trend,
.v2-reconcile-trend-sidesheet .v2-reconcile-trend.semi-card {
min-height: 100%;
}
.v2-reconcile-trend-sidesheet .v2-reconcile-trend.semi-card {
border: 1px solid #dce5ef;
border-radius: 11px;
background: #fff;
box-shadow: 0 7px 22px rgba(31, 53, 80, .05);
}
@media (max-width: 680px) {
.v2-access-governance-sidesheet .v2-workspace-config-content,
.v2-reconcile-detail-sidesheet .v2-reconcile-detail-body,
.v2-reconcile-trend-sidesheet .v2-workspace-config-content {
padding: 8px;
}
.v2-reconcile-detail-sidesheet .v2-workspace-config-summary > span:first-child strong,
.v2-reconcile-detail-sidesheet .v2-workspace-config-summary > span:nth-child(2) strong {
font-size: 11px;
}
}
@media (max-width: 900px) and (max-height: 480px) and (orientation: landscape) {
.v2-access-governance-sidesheet .v2-access-governance {
grid-template-columns: minmax(0, 1fr);
grid-template-rows: minmax(0, 1fr) auto;
}
.v2-access-governance-sidesheet .v2-access-identity-queue-v3,
.v2-access-governance-sidesheet .v2-access-settings {
grid-column: 1;
}
}