feat: add notes field to ingredient editor #6

Merged
pkartch merged 1 commits from feature/ingredient-notes-field into main 2025-11-01 05:22:00 +00:00
2 changed files with 31 additions and 0 deletions

View File

@@ -881,6 +881,15 @@ function UnifiedEditRecipe() {
onMouseDown={(e) => e.stopPropagation()}
/>
</div>
<input
type="text"
className="ingredient-notes-input"
value={ingredient.notes || ''}
onChange={(e) => updateIngredient(index, 'notes', e.target.value)}
placeholder="Notes (e.g., sifted, room temperature)"
draggable={false}
onMouseDown={(e) => e.stopPropagation()}
/>
</div>
<button

View File

@@ -350,6 +350,7 @@
display: grid;
grid-template-columns: 60px 60px 1fr;
gap: 0.25rem;
margin-bottom: 0.25rem;
}
.ingredient-inputs input {
@@ -359,6 +360,27 @@
font-size: 0.9rem;
}
.ingredient-notes-input {
width: 100%;
padding: 0.25rem 0.5rem;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 0.85rem;
font-style: italic;
color: #666;
}
.ingredient-notes-input::placeholder {
color: #999;
font-style: italic;
}
.ingredient-notes-input:focus {
outline: none;
border-color: #2e7d32;
color: #333;
}
.ingredient-display {
font-size: 1.05rem;
cursor: pointer;