Datenbank bereinigt / Gitea-Integration gefixt

Dieser Commit ist enthalten in:
hendrik_gebhardt@gmx.de
2026-01-04 00:24:11 +00:00
committet von Server Deploy
Ursprung 395598c2b0
Commit c21be47428
37 geänderte Dateien mit 30993 neuen und 809 gelöschten Zeilen

Datei anzeigen

@ -413,6 +413,14 @@
gap: var(--spacing-2);
}
/* Avatar Container für mehrere Avatare */
.list-cell-assignee .avatar-container {
display: flex;
align-items: center;
gap: 2px;
flex-shrink: 0;
}
.list-cell-assignee .avatar {
width: 24px;
height: 24px;
@ -424,6 +432,12 @@
font-weight: var(--font-semibold);
color: white;
flex-shrink: 0;
cursor: pointer;
transition: transform 0.2s;
}
.list-cell-assignee .avatar:hover {
transform: scale(1.1);
}
.list-cell-assignee select {
@ -440,6 +454,28 @@
outline: none;
}
/* Hide assignee dropdown - show only avatars */
.list-cell-assignee .assignee-select {
display: none;
}
/* Empty avatar placeholder */
.list-cell-assignee .avatar-empty {
background: var(--border-color) !important;
color: var(--text-muted);
border: 1px solid var(--border-light);
}
/* Show dropdown when editing */
.list-cell-assignee.editing .assignee-select {
display: block;
flex: 1;
}
.list-cell-assignee.editing .avatar-container {
display: none;
}
/* Empty State */
.list-empty {
display: flex;