Ghost/ghost/admin/app/templates/application.hbs

64 lines
1.8 KiB
Handlebars
Raw Normal View History

<GhApp>
<GhSkipLink @anchor=".gh-main">Skip to main content</GhSkipLink>
2015-05-20 18:37:06 +03:00
<GhAlerts />
2015-05-20 18:37:06 +03:00
<div class="gh-viewport {{if this.ui.showMobileMenu 'mobile-menu-expanded'}}">
{{#if this.showNavMenu}}
<GhNavMenu />
{{/if}}
<main class="gh-main {{this.ui.mainClass}}" role="main">
{{outlet}}
{{#if this.showBilling}}
<GhBillingModal @billingWindowOpen={{this.billing.billingWindowOpen}} />
{{/if}}
</main>
2015-05-20 18:37:06 +03:00
<GhNotifications />
<GhContentCover />
2015-05-21 20:03:24 +03:00
<GhMobileNavBar />
</div>{{!gh-viewport}}
{{#if this.customViews.showFormModal}}
<GhFullscreenModal
@modal="custom-view-form"
@close={{this.customViews.toggleFormModal}}
@modifier="action narrow"
/>
{{/if}}
2021-03-04 12:12:25 +03:00
{{#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);
}
.gh-btn-accent {
color: var(--text-color-for-adjusted-accent-background);
background-color: var(--adjusted-accent-color)
}
.gh-btn-accent:hover {
color: {{hex-contrast this.ui.adjustedAccentColor}};
background-color: {{hex-adjust this.ui.adjustedAccentColor l=-15}}
}
2021-03-04 12:12:25 +03:00
</style>
{{/if}}
</GhApp>
<EmberLoadRemover />