winter/modules/backend/layouts/_custom_styles.htm
Samuel Georges ef290df3af Custom CSS classes for styling elements
Define allowed tags, allowed empty, do not wrap, remove tags
Refs #2005
2016-05-24 05:33:32 +10:00

15 lines
339 B
HTML

<?php
use Backend\Models\BrandSettings;
use Backend\Models\EditorSetting;
?>
<?php if (BrandSettings::isConfigured()): ?>
<style>
<?= BrandSettings::renderCss() ?>
</style>
<?php endif ?>
<?php if (EditorSetting::isConfigured()): ?>
<style>
<?= EditorSetting::renderCss() ?>
</style>
<?php endif ?>