mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +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.
6 lines
313 B
Handlebars
6 lines
313 B
Handlebars
<div class="input-group" name="{{botname}}" id="{{botname}}_{{key}}">
|
|
<label for="{{botname}}_{{key}}_input" class="modal-field-label">{{key}}</label>
|
|
<input type="text" name="{{key}}" id="{{botname}}_{{key}}_input" class="modal_text_input"
|
|
maxlength=1000 placeholder="{{value}}" value="" />
|
|
</div>
|