a lot of stuff
ci / docker (backend, backend/Dockerfile, backend) (push) Successful in 14m29s
ci / docker (frontend, frontend/Dockerfile, frontend) (push) Successful in 14m28s

This commit is contained in:
2025-10-16 00:38:03 +02:00
parent 5b420a6b62
commit aef34791f3
21 changed files with 2987 additions and 736 deletions
+151 -28
View File
@@ -221,14 +221,16 @@ button.icon-button.ghost:hover:not([disabled]) {
.app-bar__main {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 1rem;
}
.app-bar__meta {
display: flex;
flex-direction: column;
gap: 0.2rem;
flex: 0 0 auto;
}
.app-bar h1 {
@@ -257,6 +259,52 @@ button.icon-button.ghost:hover:not([disabled]) {
margin: 0;
}
.app-bar__search {
display: flex;
align-items: center;
gap: 0.5rem;
flex: 1 1 320px;
max-width: 420px;
min-width: 240px;
margin: 0 auto;
}
.app-bar__search input[type='search'] {
flex: 1;
min-width: 180px;
padding: 0.4rem 0.6rem;
border-radius: 4px;
border: 1px solid var(--border);
background: var(--surface-subtle);
color: var(--fg);
}
.app-bar__search input[type='search']:focus {
outline: 2px solid var(--accent);
outline-offset: 1px;
}
.app-bar__search-clear {
border: none;
background: transparent;
color: var(--accent);
font-weight: 600;
font-size: 0.85rem;
cursor: pointer;
padding: 0.2rem 0.3rem;
}
.app-bar__search-clear:hover {
text-decoration: underline;
}
.app-bar__right {
display: flex;
align-items: center;
gap: 0.75rem;
margin-left: auto;
}
.app-main {
flex: 1;
display: grid;
@@ -363,6 +411,34 @@ button.icon-button.ghost:hover:not([disabled]) {
pointer-events: none;
}
.document-drag-preview__folder-thumb {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
pointer-events: none;
}
.document-drag-preview__folder-thumb svg {
width: 48px;
height: 48px;
color: var(--accent-strong, var(--accent));
}
.document-drag-preview__folder-placeholder {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
color: rgba(255, 255, 255, 0.9);
}
.document-drag-preview__count {
position: absolute;
bottom: 4px;
@@ -852,6 +928,80 @@ button.icon-button.ghost:hover:not([disabled]) {
color: currentColor;
}
.sidebar-tag-cloud {
display: flex;
flex-wrap: wrap;
gap: 0.35rem;
padding: 0.25rem 0 0.1rem;
}
.sidebar-tag-pill {
border: 1px solid var(--sidebar-pill-border, rgba(15, 23, 42, 0.08));
border-radius: 999px;
padding: 0.25rem 0.6rem;
font-size: 0.75rem;
font-weight: 500;
line-height: 1;
cursor: pointer;
background: var(--surface-soft);
color: var(--fg);
transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.sidebar-tag-pill:hover {
transform: none;
box-shadow: 0 2px 6px rgba(15, 23, 42, 0.16);
border-color: var(--accent-soft, rgba(59, 130, 246, 0.35));
}
.sidebar-tag-pill:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
.sidebar-tag-pill.active {
border-color: var(--accent);
box-shadow: 0 0 0 1px var(--accent);
}
.sidebar-correspondent-list {
list-style: none;
margin: 0.4rem 0 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.sidebar-correspondent-item {
display: block;
width: 100%;
background: transparent;
border-radius: 4px;
padding: 0.35rem 0.5rem;
text-align: left;
color: var(--fg);
cursor: pointer;
font-size: 0.85rem;
transition: background 0.15s ease, box-shadow 0.15s ease;
}
.sidebar-correspondent-item:hover {
background: var(--sidebar-hover-bg);
box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}
.sidebar-correspondent-item:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
.sidebar-correspondent-item.active {
background: var(--accent-soft, rgba(59, 130, 246, 0.18));
box-shadow: 0 0 0 1px var(--accent-soft, rgba(59, 130, 246, 0.24));
}
.documents-panel {
padding: 1.25rem 1.25rem 0 1.25rem;
@@ -893,7 +1043,6 @@ button.icon-button.ghost:hover:not([disabled]) {
}
.documents-panel .documents-scroll {
flex: 1;
overflow-y: auto;
border: none;
background: transparent;
@@ -1064,32 +1213,6 @@ button.icon-button.ghost:hover:not([disabled]) {
min-width: 180px;
}
.tag-filters {
display: flex;
flex-wrap: wrap;
gap: 0.32rem;
}
.tag-filter {
border: 1px solid var(--border);
background: var(--surface-subtle);
color: var(--fg);
padding: 0.25rem 0.6rem;
border-radius: 2px;
cursor: pointer;
font-size: 0.85rem;
transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.tag-filter:hover {
filter: brightness(0.97);
}
.tag-filter.active {
box-shadow: 0 0 0 1px currentColor inset;
transform: translateY(-1px);
}
.filter-actions {
display: flex;
gap: 0.32rem;