mirror of https://github.com/zulip/zulip.git
frontend: Fix unnecessary aria-hidden assignments in informational overlay modals.
Fixes #6024.
This commit is contained in:
parent
ca19cb6900
commit
4b728eda1b
|
@ -1,5 +1,5 @@
|
|||
<div class="overlay-modal" id="keyboard-shortcuts" tabindex="-1" role="dialog"
|
||||
aria-label="{{ _('Keyboard shortcuts') }}" aria-hidden="true">
|
||||
aria-label="{{ _('Keyboard shortcuts') }}">
|
||||
<div class="modal-body" tabindex="0">
|
||||
<div>
|
||||
<table class="hotkeys_table table table-striped table-bordered table-condensed">
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<div class="overlay-modal hide" id="markdown-help" tabindex="-1" role="dialog"
|
||||
aria-label="{{ _('Message formatting') }}" aria-hidden="true">
|
||||
aria-label="{{ _('Message formatting') }}">
|
||||
<div class="modal-body" tabindex="0">
|
||||
<div id="markdown-instructions">
|
||||
<table class="table table-striped table-condensed table-rounded table-bordered help-table">
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<div class="overlay-modal hide" id="search-operators" tabindex="-1" role="dialog"
|
||||
aria-label="{{ _('Search operators') }}" aria-hidden="true">
|
||||
aria-label="{{ _('Search operators') }}">
|
||||
<div class="modal-body" tabindex="0">
|
||||
<table class="table table-striped table-condensed table-rounded table-bordered help-table">
|
||||
<thead>
|
||||
|
|
Loading…
Reference in New Issue