mirror of
https://github.com/zulip/zulip.git
synced 2026-07-21 21:05:48 +08:00
Similar to what mentioned in 2e196fd5d3
previous sea-green colour didn't meet the WCAG AA standard
guidelines for color contrast. This changes meets WCAG AAA
standard.
11 lines
662 B
Handlebars
11 lines
662 B
Handlebars
{{! Client-side Mustache template for rendering the topic edit form. }}
|
|
|
|
<form id="topic_edit_form" class="form-horizontal">
|
|
<input type="text" value="" class="inline_topic_edit header-v" id="inline_topic_edit"
|
|
autocomplete="off" />
|
|
<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>
|