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
+18
View File
@@ -0,0 +1,18 @@
/* Aurora Admin ProgressVariants 样式 — 对齐 组件7.txt ProgressVariants:线型/圆形/仪表盘,状态色,百分比 */
.aa-progress { font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); color: #262626; }
.aa-progress-line-wrap { display: flex; align-items: center; }
.aa-progress-line { flex: 1; height: 8px; background: #E8ECF1; border-radius: 4px; overflow: hidden; }
.aa-progress-line-fill { height: 100%; background: #2F54EB; border-radius: 4px; transition: width .3s; }
.aa-progress.is-success .aa-progress-line-fill { background: #52C41A; }
.aa-progress.is-warning .aa-progress-line-fill { background: #FA8C16; }
.aa-progress.is-error .aa-progress-line-fill { background: #F5222D; }
.aa-progress-text { margin-left: 8px; font-size: 13px; min-width: 36px; }
.aa-progress.is-success .aa-progress-text { color: #52C41A; }
.aa-progress.is-warning .aa-progress-text { color: #FA8C16; }
.aa-progress.is-error .aa-progress-text { color: #F5222D; }
.aa-progress-circle { position: relative; display: inline-flex; }
.aa-progress-circle-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 500; }
.aa-progress-circle.is-success .aa-progress-circle-text { color: #52C41A; }
.aa-progress-circle.is-warning .aa-progress-circle-text { color: #FA8C16; }
.aa-progress-circle.is-error .aa-progress-circle-text { color: #F5222D; }