Textbox style on confirm form

main
Bob Mottram 2023-07-08 12:55:42 +01:00
parent beb9f8a033
commit ea1815a92e
2 changed files with 28 additions and 1 deletions

View File

@ -224,6 +224,15 @@ input[type=text] {
user-select: all;
white-space: nowrap;
}
.message {
margin-left: 0%;
margin-right: 0%;
width: 90%;
hyphens: auto;
text-wrap: pretty;
text-align: justify;
direction: ltr;
}
.hashtagswarm img {
width: 5%;
min-width: 5%;
@ -279,6 +288,15 @@ input[type=text] {
user-select: all;
white-space: nowrap;
}
.message {
margin-left: 0%;
margin-right: 0%;
width: 100%;
hyphens: auto;
text-wrap: pretty;
text-align: justify;
direction: ltr;
}
.hashtagswarm img {
width: 10%;
min-width: 10%;
@ -337,6 +355,15 @@ input[type=text] {
user-select: all;
white-space: nowrap;
}
.message {
margin-left: 0%;
margin-right: 0%;
width: 100%;
hyphens: auto;
text-wrap: pretty;
text-align: justify;
direction: ltr;
}
.hashtagswarm img {
width: 10%;
min-width: 10%;

View File

@ -388,7 +388,7 @@ def html_confirm_block(translate: {}, base_dir: str,
translate['No'] + '</button></a><br>\n'
block_str += \
' <b><label class="labels">' + \
translate['Reason'] + '</label></b>\n' + \
translate['Reason'] + '</label></b><br>\n' + \
' <textarea id="message" ' + \
'name="blockReason" style="height:200px" spellcheck="false">' + \
'</textarea>\n'