v1.0.32: 恢复综合概览顶部数据卡呈现(stat-cards网格还原4列) - 碎片处理中心改用独立stat-cards-5修饰类保持5列,仅影响CSS与fragment.js,不动其他页面

This commit is contained in:
nanguaboss
2026-08-09 22:04:00 +08:00
parent 07dd4670f5
commit de1c227727
3 changed files with 7 additions and 3 deletions
+5 -1
View File
@@ -472,10 +472,14 @@ table.grid .ops a:hover { text-decoration: underline; }
/* ---------- 指标卡 ---------- */
.stat-cards {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-columns: repeat(4, 1fr);
gap: 14px;
margin-bottom: 16px;
}
/* 碎片处理中心专用:5 张指标卡一行排布(不影响其它页面) */
.stat-cards.stat-cards-5 {
grid-template-columns: repeat(5, 1fr);
}
.stat-card {
background: #fff;
border-radius: 6px;