FEAT-5: add gender-filtered animal pickers to Probeverpaarung parents

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-06 00:07:32 +02:00
parent a1d02c0d4e
commit 16a0016de9
4 changed files with 135 additions and 2 deletions

View File

@@ -560,3 +560,40 @@ textarea {
padding: 0.1rem 0.35rem;
border-radius: 0.3rem;
}
.animal-picker {
position: relative;
margin-bottom: 0.5rem;
}
.animal-picker__results {
list-style: none;
margin: 0.25rem 0 0;
padding: 0;
border: 1px solid var(--color-border);
border-radius: 0.5rem;
background: var(--color-surface);
max-height: 14rem;
overflow-y: auto;
}
.animal-picker__item {
display: block;
width: 100%;
text-align: left;
background: none;
border: none;
padding: 0.5rem 0.75rem;
font: inherit;
color: var(--color-text);
cursor: pointer;
min-height: 44px;
}
.animal-picker__item:hover {
background: var(--color-accent-soft);
}
.animal-picker__hint {
padding: 0.5rem 0.75rem;
}