FEAT-1: Tiere list page — Gridify filters (Status/Geschlecht/Farbschlag), sort, paging + German strings

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-05 23:54:44 +02:00
parent f162ef4fed
commit 9b586dd7fa
4 changed files with 504 additions and 4 deletions

View File

@@ -155,3 +155,195 @@ a {
padding: 1.5rem 2rem;
}
}
/* ── Shared UI ───────────────────────────────────────────────── */
.muted {
color: var(--color-text-muted);
margin: 0.25rem 0;
}
.page-head {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 1rem;
flex-wrap: wrap;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.4rem;
min-height: 44px;
padding: 0.5rem 1rem;
border: 1px solid var(--color-border);
border-radius: 0.5rem;
background: var(--color-surface);
color: var(--color-text);
font: inherit;
cursor: pointer;
text-decoration: none;
}
.btn:hover:not(:disabled) {
background: var(--color-accent-soft);
}
.btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.btn--primary {
background: var(--color-accent);
border-color: var(--color-accent);
color: #fff;
}
.btn--primary:hover:not(:disabled) {
filter: brightness(0.95);
background: var(--color-accent);
}
.btn--danger {
border-color: #b54a4a;
color: #b54a4a;
}
.input,
select,
textarea {
font: inherit;
padding: 0.5rem 0.6rem;
border: 1px solid var(--color-border);
border-radius: 0.5rem;
background: var(--color-surface);
color: var(--color-text);
min-height: 44px;
width: 100%;
}
textarea {
min-height: 5rem;
resize: vertical;
}
.alert {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
padding: 0.75rem 1rem;
border-radius: 0.5rem;
margin: 0.75rem 0;
}
.alert--error {
background: #fbeaea;
border: 1px solid #e3b3b3;
color: #8a2f2f;
}
/* ── Filters ─────────────────────────────────────────────────── */
.filters {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
align-items: flex-end;
margin: 1rem 0;
}
.filters .input[type='search'] {
flex: 1 1 12rem;
}
.field {
display: flex;
flex-direction: column;
gap: 0.25rem;
font-size: 0.85rem;
color: var(--color-text-muted);
}
.field > select,
.field > .input {
min-width: 9rem;
}
/* ── Card list (mobile-first); table-like rows on wider screens ── */
.card-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.gerbil-card {
display: grid;
grid-template-columns: 1fr auto;
gap: 0.25rem 0.75rem;
align-items: center;
padding: 0.75rem 1rem;
border: 1px solid var(--color-border);
border-radius: 0.6rem;
background: var(--color-surface);
text-decoration: none;
color: var(--color-text);
}
.gerbil-card:hover {
background: var(--color-accent-soft);
}
.gerbil-card__name {
font-weight: 600;
}
.gerbil-card__meta {
font-size: 0.85rem;
color: var(--color-text-muted);
}
.badge {
justify-self: end;
font-size: 0.72rem;
padding: 0.15rem 0.5rem;
border-radius: 1rem;
background: var(--color-accent-soft);
color: var(--color-accent);
white-space: nowrap;
}
.badge--deceased {
background: #ececec;
color: #666;
}
.badge--givenaway {
background: #e7eef6;
color: #3a6ea5;
}
@media (min-width: 768px) {
.gerbil-card {
grid-template-columns: 2fr 1fr 1.5fr 1fr auto;
grid-auto-flow: column;
}
.badge {
justify-self: start;
}
}
.pager {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
margin: 1.5rem 0;
}