18 lines
1.3 KiB
CSS
18 lines
1.3 KiB
CSS
/* Aurora Admin Calendar 样式 — 月历组件,可选中日期,标记今天 */
|
|
|
|
.aa-calendar { width: 320px; background: #fff; border: 1px solid #E8ECF1; border-radius: 8px; padding: 12px;
|
|
font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); color: #262626; box-sizing: border-box; }
|
|
.aa-calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
|
|
.aa-calendar-title { font-size: 14px; font-weight: 500; color: #1F2329; }
|
|
.aa-calendar-nav { width: 28px; height: 28px; border: none; background: none; cursor: pointer; color: #595959; border-radius: 4px; font-size: 16px; }
|
|
.aa-calendar-nav:hover { background: #F0F5FF; color: #2F54EB; }
|
|
.aa-calendar-week, .aa-calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
|
|
.aa-calendar-week { margin-bottom: 4px; }
|
|
.aa-calendar-weekday { text-align: center; font-size: 12px; color: #8C8C8C; padding: 4px 0; }
|
|
.aa-calendar-cell { text-align: center; padding: 6px 0; font-size: 13px; cursor: pointer; border-radius: 6px; }
|
|
.aa-calendar-cell:hover { background: #F0F5FF; }
|
|
.aa-calendar-cell.is-out { color: #BFBFBF; }
|
|
.aa-calendar-cell.is-today { color: #2F54EB; font-weight: 600; }
|
|
.aa-calendar-cell.is-selected { background: #2F54EB; color: #fff; }
|
|
.aa-calendar-cell.is-selected.is-today { color: #fff; }
|