fix: clean up Export/Import UI (#26)

- Fix tooltip visibility (overflow: visible for export card)
- Remove unnecessary 'Include sensitive data' checkbox
- Always export all data including notification URLs
- Remove unused CSS styles for checkbox and warning
This commit is contained in:
Daniel Volz
2026-01-16 20:50:29 +01:00
committed by GitHub
parent f00f11aa55
commit 718157e472
3 changed files with 12 additions and 43 deletions
+8 -26
View File
@@ -3979,6 +3979,14 @@ h3 .reminder-icon.info-tooltip {
}
/* Export/Import Section */
.card:has(.export-import-grid) {
overflow: visible;
}
.card:has(.export-import-grid) .card-head {
overflow: visible;
}
.export-import-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
@@ -4018,32 +4026,6 @@ h3 .reminder-icon.info-tooltip {
flex: 1;
}
.export-import-checkbox {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.85rem;
color: var(--text-secondary);
cursor: pointer;
text-transform: none !important;
}
.export-import-checkbox input[type="checkbox"] {
width: 16px;
height: 16px;
cursor: pointer;
}
.export-import-warning {
font-size: 0.8rem;
color: var(--warning);
margin: 0;
padding: 0.5rem;
background: rgba(234, 179, 8, 0.1);
border-radius: 4px;
line-height: 1.4;
}
.export-import-card button,
.export-import-file-btn {
margin-top: auto;