refactor(sns): unify export date range dialog

This commit is contained in:
aits2026
2026-03-06 16:16:34 +08:00
parent f4caa51da5
commit edf38aad48
2 changed files with 81 additions and 145 deletions

View File

@@ -1705,6 +1705,44 @@
gap: 8px;
}
.export-section-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.time-range-trigger.sns-export-time-range-trigger {
border: 1px solid var(--border-color);
background: var(--bg-primary);
border-radius: 999px;
color: var(--text-primary);
font-size: 12px;
min-height: 32px;
padding: 0 10px;
display: inline-flex;
align-items: center;
gap: 8px;
cursor: pointer;
transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
&:hover:not(:disabled) {
border-color: rgba(var(--primary-rgb), 0.45);
color: var(--primary);
}
&:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.time-range-arrow {
color: var(--text-tertiary);
font-weight: 700;
line-height: 1;
}
}
.export-format-options {
display: grid;