mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
57 lines
2.3 KiB
Handlebars
57 lines
2.3 KiB
Handlebars
{{#if this.icon}}
|
|
<div class="sticky" style="top: {{this.iconTop}}px; margin-bottom: {{this.iconTop}}px">
|
|
{{svg-jar this.icon class=this.iconClass}}
|
|
</div>
|
|
<div style="margin-top: -{{this.iconTop}}px"></div>
|
|
{{/if}}
|
|
|
|
{{yield (hash
|
|
CaptionInput=(component "koenig-caption-input"
|
|
captureInput=this.isSelected
|
|
addParagraphAfterCard=this.addParagraphAfterCard
|
|
moveCursorToPrevSection=this.moveCursorToPrevSection
|
|
moveCursorToNextSection=this.moveCursorToNextSection
|
|
)
|
|
AltInput=(component "koenig-alt-input"
|
|
addParagraphAfterCard=this.addParagraphAfterCard
|
|
moveCursorToPrevSection=this.moveCursorToPrevSection
|
|
moveCursorToNextSection=this.moveCursorToNextSection
|
|
)
|
|
)}}
|
|
|
|
{{#if (or this.toolbar (and this.saveAsSnippet (not this.isEditing)))}}
|
|
<KgActionBar @class="absolute" @style={{this.toolbarStyle}} @isVisible={{this.shouldShowToolbar}} @instantClose={{this.koenigUi.inputHasFocus}}>
|
|
{{#each this.toolbar.items as |item|}}
|
|
{{#if item.divider}}
|
|
<li class="ma0 kg-action-bar-divider bg-darkgrey-d2 h5" role="separator"></li>
|
|
{{else}}
|
|
<li class="ma0 lh-solid">
|
|
<button
|
|
type="button"
|
|
title={{item.title}}
|
|
class="dib dim-lite link h9 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}}
|
|
|
|
{{#if (and this.saveAsSnippet (not this.isEditing))}}
|
|
{{#if this.toolbar.items}}
|
|
<li class="ma0 lh-solid kg-action-bar-divider bg-darkgrey-l2 h5" role="separator"></li>
|
|
{{/if}}
|
|
<li class="ma0 lh-solid">
|
|
<button
|
|
type="button"
|
|
title="Create snippet"
|
|
class="dib dim-lite link h9 w9 nudge-top--1"
|
|
{{on "click" this.saveAsSnippet}}
|
|
>
|
|
{{svg-jar "koenig/kg-snippet" class="w4 h4"}}
|
|
</button>
|
|
</li>
|
|
{{/if}}
|
|
</KgActionBar>
|
|
{{/if}} |