Default colors

This commit is contained in:
Mike Jolley
2024-04-08 12:55:56 +01:00
committed by Rostislav Wolný
parent 3ec36064ab
commit ab893062ae

View File

@@ -49,9 +49,9 @@ class Renderer {
$width = $layout['contentSize']; $width = $layout['contentSize'];
$paddingTop = $themeStyles['spacing']['padding']['top'] ?? '0px'; $paddingTop = $themeStyles['spacing']['padding']['top'] ?? '0px';
$paddingBottom = $themeStyles['spacing']['padding']['bottom'] ?? '0px'; $paddingBottom = $themeStyles['spacing']['padding']['bottom'] ?? '0px';
$contentBackground = $themeStyles['color']['background']['content']; $contentBackground = $themeStyles['color']['background']['content'] ?? 'inherit';
$layoutBackground = $themeStyles['color']['background']['layout']; $layoutBackground = $themeStyles['color']['background']['layout'] ?? 'inherit';
$contentFontFamily = $themeStyles['typography']['fontFamily']; $contentFontFamily = $themeStyles['typography']['fontFamily'] ?? 'inherit';
$logoHtml = $this->servicesChecker->isPremiumPluginActive() ? '' : '<img src="' . esc_attr($this->cdnAssetUrl->generateCdnUrl('email-editor/logo-footer.png')) . '" alt="MailPoet" style="margin: 24px auto; display: block;" />'; $logoHtml = $this->servicesChecker->isPremiumPluginActive() ? '' : '<img src="' . esc_attr($this->cdnAssetUrl->generateCdnUrl('email-editor/logo-footer.png')) . '" alt="MailPoet" style="margin: 24px auto; display: block;" />';
$templateStyles = file_get_contents(dirname(__FILE__) . '/' . self::TEMPLATE_STYLES_FILE); $templateStyles = file_get_contents(dirname(__FILE__) . '/' . self::TEMPLATE_STYLES_FILE);