Lisää kansion poisto -toiminto dokumenttien hallintaan

- Poisto-nappi (🗑) näkyy kansion päällä hover-tilassa
- Vahvistusikkuna ennen poistoa
- Kansion dokumentit ja alikansiot siirtyvät ylätasolle poistettaessa

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-12 00:24:01 +02:00
parent 7ed17c163f
commit f913a87b14
2 changed files with 12 additions and 1 deletions

View File

@@ -1621,6 +1621,9 @@ span.empty {
transition: background 0.15s, border-color 0.15s;
}
.doc-folder-item:hover { background: #e5e7eb; }
.doc-folder-delete { background: none; border: none; cursor: pointer; font-size: 0.75rem; padding: 0 0.15rem; opacity: 0; transition: opacity 0.15s; margin-left: 0.25rem; }
.doc-folder-item:hover .doc-folder-delete { opacity: 0.6; }
.doc-folder-delete:hover { opacity: 1 !important; }
#doc-breadcrumbs a { color: var(--primary-color); text-decoration: none; font-weight: 500; }
#doc-breadcrumbs a:hover { text-decoration: underline; }