mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
This commit adds bottom margin to label elements of different inputs by adding "modal-field-label" class to the label elements. Some of them already have the margin due to having dropdown-title class.
15 lines
974 B
Handlebars
15 lines
974 B
Handlebars
<div id="edit-linkifier-form">
|
|
<form class="linkifier-edit-form">
|
|
<div class="input-group name_change_container">
|
|
<label for="edit-linkifier-pattern" class="modal-field-label">{{t "Pattern" }}</label>
|
|
<input type="text" autocomplete="off" id="edit-linkifier-pattern" class="modal_text_input" name="pattern" placeholder="#(?P<id>[0-9]+)" value="{{ pattern }}" />
|
|
<div class="alert" id="edit-linkifier-pattern-status"></div>
|
|
</div>
|
|
<div class="input-group name_change_container">
|
|
<label for="edit-linkifier-url-template" class="modal-field-label">{{t "URL template" }}</label>
|
|
<input type="text" autocomplete="off" id="edit-linkifier-url-template" class="modal_text_input" name="url_template" placeholder="https://github.com/zulip/zulip/issues/{id}" value="{{ url_template }}" />
|
|
<div class="alert" id="edit-linkifier-template-status"></div>
|
|
</div>
|
|
</form>
|
|
</div>
|