Files
aurora-admin/frameworks/Select.css
T

39 lines
2.5 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* Aurora Admin Select 样式 — 对齐 components.css 与 select.json 契约(触发器同 Input) */
.aa-select { position: relative; display: inline-block; min-width: 220px; }
.aa-select-trigger {
display: flex; align-items: center; gap: 8px; min-height: 32px; height: auto;
padding: 2px 28px 2px 12px; background: #fff; border: 1px solid #E8ECF1;
border-radius: 4px; box-sizing: border-box; cursor: pointer; transition: border-color .15s, box-shadow .15s;
font-size: 14px; color: #262626; flex-wrap: wrap; position: relative;
}
.aa-select-trigger:hover { border-color: #2F54EB; }
.aa-select.is-open .aa-select-trigger { border-color: #2F54EB; box-shadow: 0 0 0 2px rgba(47,84,235,0.2); }
.aa-select.is-disabled .aa-select-trigger { background: #F5F5F5; border-color: transparent; color: #BFBFBF; cursor: not-allowed; }
.aa-select-trigger .placeholder { color: #BFBFBF; }
.aa-select-trigger .caret { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); transition: transform .15s; color: #8C8C8C; }
.aa-select.is-open .caret { transform: translateY(-50%) rotate(180deg); }
.aa-select-trigger .tag {
display: inline-flex; align-items: center; gap: 4px; background: #F0F5FF; color: #2F54EB;
border-radius: 2px; padding: 1px 6px; font-size: 12px; line-height: 20px;
}
.aa-select-trigger .tag .x { cursor: pointer; }
.aa-select-panel {
position: absolute; z-index: 10; top: calc(100% + 4px); left: 0; right: 0;
background: #fff; border-radius: 4px; box-shadow: 0 4px 16px rgba(0,0,0,0.12);
max-height: 256px; overflow-y: auto; padding: 4px 0;
}
.aa-select-search { padding: 6px 8px; border-bottom: 1px solid #F0F0F0; }
.aa-select-search input { width: 100%; box-sizing: border-box; border: 1px solid #E8ECF1; border-radius: 4px; padding: 4px 8px; font-size: 13px; outline: none; }
.aa-select-search input:focus { border-color: #2F54EB; }
.aa-select-group-label { padding: 6px 12px; font-size: 12px; color: #8C8C8C; }
.aa-select-option {
display: flex; align-items: center; gap: 8px; padding: 0 12px; height: 32px; cursor: pointer;
font-size: 14px; color: #262626; box-sizing: border-box;
}
.aa-select-option:hover { background: #F5F7FA; }
.aa-select-option.is-selected { background: #F0F5FF; color: #2F54EB; }
.aa-select-option .check { visibility: hidden; margin-left: auto; }
.aa-select-option.is-selected .check { visibility: visible; }
.aa-select-option.is-disabled { color: #BFBFBF; cursor: not-allowed; }
.aa-select-empty { padding: 16px 12px; text-align: center; color: #BFBFBF; font-size: 13px; }