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
+23
View File
@@ -0,0 +1,23 @@
/* Aurora Admin CodeInput 样式 — 对齐 组件7.txt CodeInput:验证码 / 一次性口令输入 */
.aa-code { font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); display: flex; gap: 8px; }
.aa-code-cell {
position: relative;
width: 44px; height: 48px;
border: 1px solid #E8ECF1; border-radius: 8px;
background: #fff;
display: flex; align-items: center; justify-content: center;
transition: border-color .15s, box-shadow .15s;
}
.aa-code-cell.is-focus { border-color: #2F54EB; box-shadow: 0 0 0 3px rgba(47,84,235,0.2); }
.aa-code-cell.is-filled { border-color: #B7C4FF; }
.aa-code-input {
width: 100%; height: 100%;
border: none; outline: none; background: none;
text-align: center; font-size: 20px; font-weight: 600; color: #1F2329;
padding: 0;
}
.aa-code-input::placeholder { color: #BFBFBF; font-weight: 400; }
.aa-code-cell.is-masked .aa-code-input { -webkit-text-security: disc; text-security: disc; }
.aa-code-tip { font-size: 12px; margin-top: 8px; color: #8C8C8C; }
.aa-code-tip.error { color: #F5222D; }