+Benutzer filter, u. Spalte

This commit is contained in:
Simon Martens
2026-01-28 19:37:19 +01:00
parent 5c9cbcd4ac
commit b5985cba18
19 changed files with 1031 additions and 100 deletions

View File

@@ -195,6 +195,14 @@
@apply border-l-4 border-zinc-300 font-bold;
}
.filter-list-row:nth-child(odd) {
@apply bg-stone-50;
}
.filter-list-row:nth-child(even) {
@apply bg-white;
}
.legacy-toggle-icon {
transition: transform 150ms ease;
}
@@ -219,6 +227,18 @@
@apply ml-4 bg-stone-100 py-0.5 px-2.5 rounded font-sans text-base text-center;
}
.baende-sort-button {
@apply transition-colors;
}
.baende-sort-button:hover {
@apply text-slate-900;
}
.baende-sort-button:hover i {
@apply text-slate-900;
}
.container-normal {
@apply w-full max-w-(--breakpoint-xl) mx-auto px-3 py-4 relative;
}
@@ -625,6 +645,15 @@
animation: spin 1s ease-out infinite;
}
.htmx-indicator {
@apply hidden;
}
.htmx-request .htmx-indicator,
.htmx-indicator.htmx-request {
@apply inline-flex;
}
body.htmx-request #simplesearchform #sumbmitbutton {
@apply cursor-wait pointer-events-none;
}