mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
661b35ba51
no issue - add vertical drop position indicator handling to `koenig-drag-drop-handler` service - fixed issues with nested drag-and-drop containers - register card drag/drop handler in `koenig-editor` - add drag icon creation
33 lines
1.4 KiB
Handlebars
33 lines
1.4 KiB
Handlebars
{{#if icon}}
|
|
{{#sticky-element top=iconTop bottom=36}}
|
|
{{svg-jar icon class=iconClass}}
|
|
{{/sticky-element}}
|
|
{{/if}}
|
|
|
|
{{yield (hash captionInput=(component "koenig-caption-input"
|
|
captureInput=isSelected
|
|
addParagraphAfterCard=addParagraphAfterCard
|
|
moveCursorToPrevSection=moveCursorToPrevSection
|
|
moveCursorToNextSection=moveCursorToNextSection
|
|
))}}
|
|
|
|
{{#if toolbar}}
|
|
<ul data-toolbar="true" class="kg-action-bar bg-darkgrey-d1 inline-flex pa0 ma0 pl1 pr1 nl1 list br3 shadow-2 items-center absolute white sans-serif f8 fw6 tracked-2 anim-fast-bezier z-999 {{if shouldShowToolbar "" "o-0 pop-down"}}" style={{toolbarStyle}}>
|
|
{{#each toolbar.items as |item|}}
|
|
{{#if item.divider}}
|
|
<li class="ma0 kg-action-bar-divider bg-darkgrey-d2 h5"></li>
|
|
{{else}}
|
|
<li class="ma0 lh-solid">
|
|
<button
|
|
type="button"
|
|
title={{item.title}}
|
|
class="dib dim-lite link h10 w9 nudge-top--1 justify-center {{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>
|
|
{{/if}}
|
|
{{/each}}
|
|
</ul>
|
|
{{/if}} |