frontend: Change custom_invite_body to use an ID.

This commit is contained in:
Vaida Plankyte 2017-07-12 11:11:06 +02:00 committed by Tim Abbott
parent 1675867f30
commit b533732c6b
2 changed files with 3 additions and 3 deletions

View File

@ -2260,7 +2260,7 @@ button.topic_edit_cancel {
max-height: 300px; max-height: 300px;
} }
#invite-user .custom_invite_body { #invite-user #custom_invite_body {
margin-top: 10px; margin-top: 10px;
} }

View File

@ -17,9 +17,9 @@
placeholder="{{ _('One or more email addresses...') }}"> placeholder="{{ _('One or more email addresses...') }}">
</textarea> </textarea>
</div> </div>
<label class="control-label" for="custom_body">{{ _('Custom invitation message (if you want to add one)') }}</label> <label class="control-label" for="custom_invite_body">{{ _('Custom invitation message (if you want to add one)') }}</label>
<div class="controls"> <div class="controls">
<textarea rows="2" class="custom_invite_body" <textarea rows="2" id="custom_invite_body"
name="custom_body" name="custom_body"
placeholder="{{ _('Custom message') }}"> placeholder="{{ _('Custom message') }}">
</textarea> </textarea>