Gary Pendergast d144826fa7
UX: Use DPageHeader on the Email Style page (#30784)
Update the header of the admin Email Style page to be more consistent with the rest of the admin UI.

The HTML/CSS tabs have also been updated, which required an extra check being added to the NavItem component.
2025-01-15 16:53:45 +11:00

18 lines
407 B
Handlebars

<AceEditor
@content={{this.editorContents}}
@onChange={{fn (mut this.editorContents)}}
@mode={{this.currentEditorMode}}
@editorId={{this.editorId}}
@save={{@save}}
/>
<div class="admin-footer">
<div class="buttons">
<DButton
@action={{this.reset}}
@disabled={{this.resetDisabled}}
@label="admin.customize.email_style.reset"
class="btn-default"
/>
</div>
</div>