mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
ea0be6a4d8
refs https://github.com/TryGhost/Ghost/issues/9505 - ensure we disable `pointer-events` on context menus when hidden so that hidden menus do not interact with the mouse - add z-index to context menus so that they sit on top of any editor content - add `relative` positioning to the html card content so the click overlay div doesn't expand outside of the content area
21 lines
868 B
Handlebars
21 lines
868 B
Handlebars
{{#if icon}}{{svg-jar icon class=iconClass}}{{/if}}
|
|
|
|
{{yield}}
|
|
|
|
{{#if toolbar}}
|
|
<ul data-toolbar="true" class="kg-action-bar bg-lgr-darkgrey inline-flex pa0 ma0 list br3 shadow-2 items-center absolute white sans-serif f8 fw6 tracked-2 anim-fast-bezier z-999 {{if showToolbar "" "o-0 drop-down"}}" style={{toolbarStyle}}>
|
|
{{#each toolbar.items as |item|}}
|
|
<li class="ma0">
|
|
<button
|
|
type="button"
|
|
title={{item.title}}
|
|
class="dib dim-lite pa3 pt2 pb2 link {{item.buttonClass}}"
|
|
onmousedown={{action item.action}}
|
|
>
|
|
{{#if item.icon}}{{svg-jar item.icon class=(concat item.iconClass (if item.text " mr2") " w4 h4")}} {{/if}}{{item.text}}
|
|
</button>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
{{/if}}
|