Ghost/ghost/admin/app/templates/application.hbs
Kevin Ansfield 35ac6abd6a Added CTA button display when not in edit mode
refs https://github.com/TryGhost/Team/issues/927

- button should be visible when not editing if both text and url are set
- added container for the content section so other links aren't clickable
- added tooltip to button so button url can be checked without having to go into edit mode
2021-07-26 21:17:10 +01:00

69 lines
2.3 KiB
Handlebars

<GhApp>
<GhSkipLink @anchor=".gh-main">Skip to main content</GhSkipLink>
<GhAlerts />
<div class="gh-viewport {{if this.ui.showMobileMenu 'mobile-menu-expanded'}}">
{{#if this.showNavMenu}}
<GhNavMenu />
{{/if}}
<main class="gh-main {{this.ui.mainClass}} {{if (and (feature "membersFiltering") (or (eq this.router.currentURL "/members") (eq this.router.currentURL "/members/import"))) "gh-main-fullwidth"}}" role="main">
{{outlet}}
{{#if this.showBilling}}
<GhBillingModal @billingWindowOpen={{this.billing.billingWindowOpen}} />
{{/if}}
</main>
<GhNotifications />
<GhContentCover />
<GhMobileNavBar />
<GhWhatsNew />
</div>{{!gh-viewport}}
{{#if this.customViews.showFormModal}}
<GhFullscreenModal
@modal="custom-view-form"
@close={{this.customViews.toggleFormModal}}
@modifier="action narrow"
/>
{{/if}}
{{#if this.settings.accentColor}}
<style>
:root {
--accent-color: {{this.settings.accentColor}};
--adjusted-accent-color: {{this.ui.adjustedAccentColor}};
--text-color-for-adjusted-accent-background: {{this.ui.textColorForAdjustedAccentBackground}};
}
.koenig-editor__editor a:not([class]) {
color: var(--adjusted-accent-color);
}
.koenig-editor__editor blockquote {
border-left: 0.25rem solid var(--adjusted-accent-color);
}
.email-cta-button-text-input,
.gh-btn-accent {
color: var(--text-color-for-adjusted-accent-background);
background-color: var(--adjusted-accent-color)
}
.email-cta-button-text-input:hover,
.gh-btn-accent:hover {
color: {{hex-adjust this.ui.textColorForAdjustedAccentBackground l=-15}};
background-color: {{hex-adjust this.settings.accentColor l=-15}}
}
.email-cta-button-text-input::placeholder {
{{!-- TODO: saturation adjustment for white/black doesn't work --}}
color: {{hex-adjust this.ui.textColorForAdjustedAccentBackground s=-15}}
}
</style>
{{/if}}
</GhApp>
<EmberLoadRemover />