Show archive folder counts
This commit is contained in:
parent
514a7723bf
commit
422308e7e6
3 changed files with 97 additions and 6 deletions
15
frontend-js/dist/style.css
vendored
15
frontend-js/dist/style.css
vendored
|
|
@ -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); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue