mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
This commit removes form-horizontal class from form element of inline topic edit form. We can safely remove this class, since all properties applied by bootstrap using this class are already overridden by specific CSS for the input element in zulip.css.
11 lines
673 B
Handlebars
11 lines
673 B
Handlebars
{{! Client-side Mustache template for rendering the topic edit form. }}
|
|
|
|
<form id="topic_edit_form">
|
|
<input type="text" value="" class="inline_topic_edit header-v" id="inline_topic_edit"
|
|
autocomplete="off" maxlength="{{ max_topic_length }}" />
|
|
<button type="button" class="topic_edit_save small_square_button animated-purple-button"><i class="fa fa-check" aria-hidden="true"></i></button>
|
|
<button type="button" class="topic_edit_cancel small_square_button small_square_x"><i class="fa fa-remove" aria-hidden="true"></i></button>
|
|
<div class="alert alert-error edit_error" style="display: none"></div>
|
|
<div class="topic_edit_spinner"></div>
|
|
</form>
|