Ghost/ghost/admin/app/components/koenig-image-editor.hbs
Sanne de Vries 03113313ce
🎨 Updated editor toolbar and action button designs (#20405)
REF https://linear.app/tryghost/issue/MOM-238

- Updated feature image action button styles
- Aligned button and tooltip styles with the rest of the editor
- Updated `koenig-lexical` version to pull in new toolbar design
2024-06-25 10:26:30 +00:00

16 lines
421 B
Handlebars

{{#if this.isEditorEnabled}}
<GhUploader
@onComplete={{this.onUploadComplete}}
as |uploader|
>
<button
type="button"
class="{{if @className @className "image-action image-edit"}}"
data-tooltip="Edit"
{{on "click" (fn this.handleClick uploader)}}
>
{{svg-jar "koenig/kg-wand"}}
</button>
</GhUploader>
{{/if}}