Merge pull request #493 from JeLuF/negative

Textarea for negative prompts
This commit is contained in:
cmdr2 2022-11-18 17:07:37 +05:30 committed by GitHub
commit c6f0e19e2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -53,7 +53,7 @@
<small>(optional)</small> <small>(optional)</small>
</label> </label>
<div class="collapsible-content"> <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>
</div> </div>

View File

@ -36,6 +36,14 @@ code {
display: block; display: block;
border: 2px solid var(--background-color2); border: 2px solid var(--background-color2);
} }
#negative_prompt {
width: 100%;
height: 50pt;
font-size: 9px;
margin-bottom: 5px;
margin-top: 5px;
display: block;
}
.image_preview_container { .image_preview_container {
margin-top: 10pt; margin-top: 10pt;
} }