mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 08:57:10 -06:00
A11Y: add aria-labels to sidebar footer buttons (#29347)
This commit is contained in:
parent
3e7d25db9b
commit
4983fa6df7
@ -53,6 +53,7 @@ export default class SidebarFooter extends Component {
|
|||||||
@icon="plus"
|
@icon="plus"
|
||||||
@action={{this.manageSections}}
|
@action={{this.manageSections}}
|
||||||
@title="sidebar.sections.custom.add"
|
@title="sidebar.sections.custom.add"
|
||||||
|
@ariaLabel="sidebar.sections.custom.add"
|
||||||
class="btn-flat sidebar-footer-actions-button add-section"
|
class="btn-flat sidebar-footer-actions-button add-section"
|
||||||
/>
|
/>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
@ -61,6 +62,11 @@ export default class SidebarFooter extends Component {
|
|||||||
<DButton
|
<DButton
|
||||||
@action={{this.toggleMobileView}}
|
@action={{this.toggleMobileView}}
|
||||||
@title={{if this.site.mobileView "desktop_view" "mobile_view"}}
|
@title={{if this.site.mobileView "desktop_view" "mobile_view"}}
|
||||||
|
@ariaLabel={{if
|
||||||
|
this.site.mobileView
|
||||||
|
"desktop_view"
|
||||||
|
"mobile_view"
|
||||||
|
}}
|
||||||
@icon={{if this.site.mobileView "desktop" "mobile-screen-button"}}
|
@icon={{if this.site.mobileView "desktop" "mobile-screen-button"}}
|
||||||
class="btn-flat sidebar-footer-actions-button sidebar-footer-actions-toggle-mobile-view"
|
class="btn-flat sidebar-footer-actions-button sidebar-footer-actions-toggle-mobile-view"
|
||||||
/>
|
/>
|
||||||
@ -70,6 +76,7 @@ export default class SidebarFooter extends Component {
|
|||||||
<DButton
|
<DButton
|
||||||
@action={{this.showKeyboardShortcuts}}
|
@action={{this.showKeyboardShortcuts}}
|
||||||
@title="keyboard_shortcuts_help.title"
|
@title="keyboard_shortcuts_help.title"
|
||||||
|
@ariaLabel="keyboard_shortcuts_help.title"
|
||||||
@icon="keyboard"
|
@icon="keyboard"
|
||||||
class="btn-flat sidebar-footer-actions-button sidebar-footer-actions-keyboard-shortcuts"
|
class="btn-flat sidebar-footer-actions-button sidebar-footer-actions-keyboard-shortcuts"
|
||||||
/>
|
/>
|
||||||
|
Loading…
Reference in New Issue
Block a user