feat: add notes field to ingredient editor #6
@@ -881,6 +881,15 @@ function UnifiedEditRecipe() {
|
|||||||
onMouseDown={(e) => e.stopPropagation()}
|
onMouseDown={(e) => e.stopPropagation()}
|
||||||
/>
|
/>
|
||||||
</div>
|
</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>
|
</div>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
|
|||||||
@@ -350,6 +350,7 @@
|
|||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 60px 60px 1fr;
|
grid-template-columns: 60px 60px 1fr;
|
||||||
gap: 0.25rem;
|
gap: 0.25rem;
|
||||||
|
margin-bottom: 0.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ingredient-inputs input {
|
.ingredient-inputs input {
|
||||||
@@ -359,6 +360,27 @@
|
|||||||
font-size: 0.9rem;
|
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 {
|
.ingredient-display {
|
||||||
font-size: 1.05rem;
|
font-size: 1.05rem;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|||||||
Reference in New Issue
Block a user