mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
This commit adds modal_text_input class to text inputs in modals to set width of them as set by bootstrap. This class is used to set the width of inputs to 206px, as we will be removing the boostrap rule which sets width of the input in further commits.
11 lines
482 B
Handlebars
11 lines
482 B
Handlebars
<form id="add-user-group-form">
|
|
<div>
|
|
<label for="user_group_name">{{t "Name" }}</label>
|
|
<input type="text" name="name" id="user_group_name" class="modal_text_input" maxlength="100" placeholder="{{t 'marketing' }}" />
|
|
</div>
|
|
<div>
|
|
<label for="user_group_description">{{t "Description" }}</label>
|
|
<input type="text" name="description" id="user_group_description" maxlength="300" placeholder="{{t 'Marketing team' }}" />
|
|
</div>
|
|
</form>
|