Textarea for negative prompts

This commit is contained in:
JeLuF 2022-11-16 23:35:27 +01:00
parent 3555fa36aa
commit 8cebb53147
2 changed files with 9 additions and 1 deletions

View File

@ -54,7 +54,7 @@
<small>(optional)</small>
</label>
<div class="collapsible-content">
<input id="negative_prompt" name="negative_prompt" placeholder="list the things to remove from the image (e.g. fog, green)">
<textarea id="negative_prompt" name="negative_prompt" placeholder="list the things to remove from the image (e.g. fog, green)"></textarea>
</div>
</div>

View File

@ -30,6 +30,14 @@ label {
margin-top: 5px;
display: block;
}
#negative_prompt {
width: 100%;
height: 50pt;
font-size: 9px;
margin-bottom: 5px;
margin-top: 5px;
display: block;
}
.image_preview_container {
margin-top: 10pt;
}