mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
adb7828003
refs #11863 * 🐛 Gave various buttons accessible labels Hidden span elements are not rendered to assistive technologies, so duplicate the text in an aria-label on the button element. * 🐛 Fixed various accessibility issues in the editor * Made menus menus and menu item menuitems. * Added labels to buttons where there were only hidden spans, or no text at all. * Made separators show up for screen readers.
70 lines
2.6 KiB
Handlebars
70 lines
2.6 KiB
Handlebars
<KgActionBar @class="relative" @instantClose={{true}} @isVisible={{this.showToolbar}}>
|
|
<li class="ma0 lh-solid">
|
|
<button
|
|
type="button"
|
|
title="Bold"
|
|
class="dib dim-lite link h9 w9 nudge-top--1"
|
|
{{action "toggleMarkup" "strong"}}
|
|
>
|
|
{{svg-jar "koenig/kg-bold" class=(concat (if this.activeMarkupTagNames.isStrong "fill-blue-l2" "fill-white") " w4 h4")}}
|
|
</button>
|
|
</li>
|
|
<li class="ma0 lh-solid">
|
|
<button
|
|
type="button"
|
|
title="Italic"
|
|
class="dib dim-lite link h9 w9 nudge-top--1"
|
|
{{action "toggleMarkup" "em"}}
|
|
>
|
|
{{svg-jar "koenig/kg-italic" class=(concat (if (or this.activeMarkupTagNames.isEm this.activeMarkupTagNames.isI) "fill-blue-l2" "fill-white") " w4 h4")}}
|
|
</button>
|
|
</li>
|
|
{{#unless basicOnly}}
|
|
<li class="ma0 lh-solid">
|
|
<button
|
|
type="button"
|
|
title="Heading One"
|
|
class="dib dim-lite link h9 w9 nudge-top--1"
|
|
{{action "toggleHeaderSection" "h2"}}
|
|
>
|
|
{{svg-jar "koenig/kg-heading-1" class=(concat (if this.activeSectionTagNames.isH2 "fill-blue-l2" "fill-white") " w4 h4")}}
|
|
</button>
|
|
</li>
|
|
<li class="ma0 lh-solid">
|
|
<button
|
|
type="button"
|
|
title="Heading Two"
|
|
class="dib dim-lite link h9 w9 nudge-top--1"
|
|
{{action "toggleHeaderSection" "h3"}}
|
|
>
|
|
{{svg-jar "koenig/kg-heading-2" class=(concat (if this.activeSectionTagNames.isH3 "fill-blue-l2" "fill-white") " w4 h4")}}
|
|
</button>
|
|
</li>
|
|
{{/unless}}
|
|
|
|
<li class="ma0 lh-solid kg-action-bar-divider bg-darkgrey-l2 h5" role="separator"></li>
|
|
|
|
{{#unless basicOnly}}
|
|
<li class="ma0 lh-solid">
|
|
<button
|
|
type="button"
|
|
title="Quote"
|
|
class="dib dim-lite link h9 w9 nudge-top--1"
|
|
{{action "toggleSection" "blockquote"}}
|
|
>
|
|
{{svg-jar "koenig/kg-quote" class=(concat (if this.activeSectionTagNames.isBlockquote "fill-blue-l2" "fill-white") " w4 h4")}}
|
|
</button>
|
|
</li>
|
|
{{/unless}}
|
|
<li class="ma0 lh-solid">
|
|
<button
|
|
type="button"
|
|
title="Link"
|
|
class="dib dim-lite link h9 w9 nudge-top--1"
|
|
{{action "editLink"}}
|
|
>
|
|
{{svg-jar "koenig/kg-link" class=(concat (if this.activeMarkupTagNames.isA "fill-blue-l2" "fill-white") " w4 h4")}}
|
|
</button>
|
|
</li>
|
|
</KgActionBar>
|