Question entry box is not so tall

main
Bob Mottram 2019-11-26 12:20:23 +00:00
parent 4a2e671149
commit 173ed3ac9c
1 changed files with 4 additions and 1 deletions

View File

@ -1084,7 +1084,10 @@ def htmlNewPost(translate: {},baseDir: str, \
newPostForm+=replyStr newPostForm+=replyStr
newPostForm+=' <input type="text" placeholder="'+placeholderSubject+'" name="subject">' newPostForm+=' <input type="text" placeholder="'+placeholderSubject+'" name="subject">'
newPostForm+='' newPostForm+=''
if endpoint!='newquestion':
newPostForm+=' <textarea id="message" name="message" placeholder="'+placeholderMessage+'" style="height:400px">'+mentionsStr+'</textarea>' newPostForm+=' <textarea id="message" name="message" placeholder="'+placeholderMessage+'" style="height:400px">'+mentionsStr+'</textarea>'
else:
newPostForm+=' <textarea id="message" name="message" placeholder="'+placeholderMessage+'" style="height:100px">'+mentionsStr+'</textarea>'
newPostForm+=extraFields+dateAndLocation newPostForm+=extraFields+dateAndLocation
newPostForm+=' <div class="container">' newPostForm+=' <div class="container">'
newPostForm+=' <input type="text" placeholder="'+translate['Image description']+'" name="imageDescription">' newPostForm+=' <input type="text" placeholder="'+translate['Image description']+'" name="imageDescription">'