15 lines
1.2 KiB
CSS
15 lines
1.2 KiB
CSS
/* Aurora Admin MessagePro 样式 — 对齐 组件7.txt MessagePro:顶部居中全局提示,可堆叠,自动消失 */
|
|
|
|
.aa-message-wrap { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 3000;
|
|
display: flex; flex-direction: column; gap: 8px; pointer-events: none; font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); }
|
|
.aa-message { pointer-events: auto; min-width: 200px; max-width: 440px; background: #fff; border: 1px solid #E8ECF1;
|
|
border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.12); padding: 10px 14px; display: flex; align-items: center; gap: 8px; font-size: 14px; color: #262626; }
|
|
.aa-message-icon { width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; color: #fff; font-size: 11px; text-align: center; line-height: 16px; }
|
|
.aa-message.is-success .aa-message-icon { background: #52C41A; }
|
|
.aa-message.is-error .aa-message-icon { background: #F5222D; }
|
|
.aa-message.is-warning .aa-message-icon { background: #FA8C16; }
|
|
.aa-message.is-info .aa-message-icon { background: #2F54EB; }
|
|
.aa-message.is-loading .aa-message-icon { background: #2F54EB; }
|
|
.aa-message-content { flex: 1; }
|
|
.aa-message-close { color: #8C8C8C; cursor: pointer; font-size: 14px; line-height: 1; }
|