Ghost/ghost/admin/lib/koenig-editor/addon/components/koenig-snippet-input-labs.hbs
Kevin Ansfield 77fa802c73 Added snippet input labs component
refs https://github.com/TryGhost/Team/issues/973

- preparation for swapping the text field input for a power-select input behind the `snippetReplacements` labs flag
2021-08-16 10:52:50 +01:00

10 lines
452 B
Handlebars

<div class="kg-input-bar absolute z-999" style={{this.style}} {{did-insert this.registerAndPositionElement}} ...attributes>
<input
placeholder="Snippet name"
value={{this.name}}
class="kg-link-input pa2 pr6 mih-100 ba br3 shadow-2 f8 lh-heading tracked-2 outline-0 b--green h10 nudge-top--8"
{{on "input" this.nameInput}}
{{on "keydown" this.nameKeydown}}
{{did-insert this.focusInput}}
/>
</div>