Add help text to random prompt thingey

This commit is contained in:
somebody
2022-08-25 16:06:35 -05:00
parent a951433a1a
commit bed49deb0f
2 changed files with 4 additions and 1 deletions

View File

@@ -1064,6 +1064,8 @@ body {
}
#random_game_prompt{
display: flex;
flex-direction: column;
grid-area: textarea;
}

View File

@@ -70,8 +70,9 @@
<!------------ Input Area--------------------->
<div class="inputrow" id="inputrow_container">
<div id="random_game_prompt" class="hidden">
<input type="text" autocomplete="off" style="width: 100%;" id="themetext" placeholder="Theme for Random Story" oninput='if (this.value != "") {
<input type="text" autocomplete="off" id="themetext" placeholder="Theme for Random Story" oninput='if (this.value != "") {
document.getElementById("input_text").value = "";'/>
<span class="help_text" style="margin:0px;margin-top:5px;">The AI can create a prompt for you! Optionally type in one or more themes above, or let the AI do it's thing.</span>
</div>
<textarea autocomplete="off" row=5 id="input_text" placeholder="Enter Prompt Here" oninput='if (this.value != "") {
document.getElementById("themetext").value = "";