Files
aurora-admin/frameworks/CodeInput.css
T

24 lines
1.1 KiB
CSS

/* 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; }