zulip/templates/zerver/delete_message.html
Vaida Plankyte c9bc803118 frontend: Change inaccurate aria-hidden assignments on buttons.
This either removes aria-hidden=true assignments from buttons with
text, or adds a span to only hide the 'x' symbol rather than the
button for closing buttons.
2017-07-17 16:40:28 -07:00

17 lines
900 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div id="delete_message_modal" class="modal hide fade new-style" tabindex="-1" role="dialog" aria-labelledby="delete_message_modal_label" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="{{ _('Close') }}"><span aria-hidden="true">×</span></button>
<h3 id="delete_message_modal_label">{{ _("Delete message") }} </h3>
</div>
<div class="modal-body">
<div class="content">
<p><strong>{{ _("Are you sure you want to delete this message?") }}</strong></p>
</div>
<div id="delete-message-error"></div>
</div>
<div class="modal-footer">
<button class="button rounded" data-dismiss="modal">{{ _("Cancel") }}</button>
<button class="button rounded btn-danger" id="do_delete_message_button">{{ _("Yes, delete this message") }}</button>
</div>
</div>