Fix mobile note archive action

This commit is contained in:
pewdiepie-archdaemon
2026-06-28 09:11:59 +00:00
parent e58d9702b7
commit 31dbc6bec6
2 changed files with 11 additions and 2 deletions
+8 -2
View File
@@ -4761,8 +4761,14 @@ function _openMobileFullscreenEdit(id, fromCard) {
const headerActions = overlay.querySelector('.note-fullscreen-actions');
const archiveBtn = form.querySelector('.note-form-archive-btn');
const deleteBtn = form.querySelector('.note-form-delete-btn');
if (headerActions && archiveBtn) headerActions.appendChild(archiveBtn);
if (headerActions && deleteBtn) headerActions.appendChild(deleteBtn);
if (headerActions && archiveBtn) {
archiveBtn.classList.remove('note-form-collapsible');
headerActions.appendChild(archiveBtn);
}
if (headerActions && deleteBtn) {
deleteBtn.classList.remove('note-form-collapsible');
headerActions.appendChild(deleteBtn);
}
// The built-in archive/delete handlers re-render the notes grid but
// leave THIS overlay sitting in front of it — looks like nothing
// happened. Add follow-up listeners that close the overlay so the
+3
View File
@@ -33887,6 +33887,9 @@ body.notes-mobile-mode.notes-drag-mode .note-card-pin.active {
.note-form-remind-btn { color: var(--accent, var(--red)) !important; }
.note-form-remind-btn > svg { color: var(--accent, var(--red)); }
.note-form-archive-btn { display: none !important; }
.note-fullscreen-actions .note-form-archive-btn {
display: inline-flex !important;
}
.note-form-save.archive-mode {
color: var(--accent, var(--red)) !important;
border-color: color-mix(in srgb, var(--accent, var(--red)) 50%, transparent) !important;