feat(#248): admin tag page complete overhaul — tree panel, merge, subtree delete, new edit components #249

Merged
marcel merged 51 commits from feat/issue-221-tag-hierarchy into main 2026-04-17 10:24:10 +02:00
Showing only changes of commit 61976e9479 - Show all commits

View File

@@ -27,7 +27,8 @@ function toggleCollapse() {
</script>
<li role="treeitem" aria-selected={isActive} aria-expanded={hasChildren ? !isCollapsed : undefined}>
<div class="flex items-center" style="padding-left: {depth * 12}px">
<!-- 16px per level matches standard tree-view spacing and is large enough to be scannable -->
<div class="flex items-center" style="padding-left: {depth * 16}px">
{#if hasChildren}
<button
onclick={toggleCollapse}