Show archive folder counts

This commit is contained in:
DonVoo 2026-07-12 17:06:58 +02:00
parent 514a7723bf
commit 422308e7e6
3 changed files with 97 additions and 6 deletions

View file

@ -123,6 +123,21 @@ body.resizing { cursor: col-resize; user-select: none; }
/* Ordnerbaum */
.tree-node { padding: 4px 12px 4px 24px; cursor: pointer; white-space: nowrap; }
a.tree-node { display: block; color: inherit; text-decoration: none; }
.tree-node.folder {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
align-items: center;
gap: 8px;
}
.tree-label {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
}
.tree-count {
color: var(--ol-muted);
font-size: 11px;
}
.tree-node.account { padding-left: 12px; font-weight: 600; color: var(--ol-blue-dark); }
.tree-node:hover { background: #e5eff8; }
.tree-node.active { background: var(--ol-sel); box-shadow: inset 2px 0 0 var(--ol-blue); }