Aurora Admin v1.2.0: 79 components x 5 ends, doc site, contracts batch 1, playground, regression, deploy ready

This commit is contained in:
aurora-admin
2026-09-10 19:21:56 +08:00
commit 51ce3a28f7
654 changed files with 49082 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
/* Aurora Admin FixedColumnTable 样式 — 左右列固定 + 横向滚动 */
.aa-fixtable-wrap { position: relative; max-width: 100%; overflow-x: auto; border: 1px solid #E8ECF1; border-radius: 8px; background: #fff; }
.aa-fixtable { width: 100%; border-collapse: collapse; font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); font-size: 14px; min-width: 760px; }
.aa-fixtable th { text-align: left; padding: 12px 14px; background: #FAFAFA; color: #1F2329; font-weight: 600; border-bottom: 1px solid #E8ECF1; white-space: nowrap; }
.aa-fixtable td { padding: 11px 14px; color: #262626; border-bottom: 1px solid #E8ECF1; white-space: nowrap; }
.aa-fixtable tbody tr:hover td { background: #F5F7FA; }
.aa-fixtable .aa-fixed { position: sticky; background: #fff; z-index: 1; }
.aa-fixtable thead .aa-fixed { z-index: 3; }
.aa-fixtable .aa-fixed-left { left: 0; box-shadow: 6px 0 8px -6px rgba(0,0,0,0.12); }
.aa-fixtable .aa-fixed-right { right: 0; box-shadow: -6px 0 8px -6px rgba(0,0,0,0.12); }
.aa-fixtable tbody tr:hover .aa-fixed { background: #F5F7FA; }
.aa-fixtable .is-muted { color: #8C8C8C; }
.aa-fixtable-wrap .aa-hint { padding: 8px 12px; font-size: 12px; color: #8C8C8C; border-top: 1px solid #E8ECF1; }