dxpr_theme-5.0.1/features/sooper-custom-css/custom-css-theme-settings-css.inc
features/sooper-custom-css/custom-css-theme-settings-css.inc
<?php
/**
* @file
* Custom css settings css styles.
*/
/**
* Generate custom css theme css styles.
*
* @param string $theme
* Theme machine name.
* @param string $css
* Generated css styles string.
* @param array $palette
* Theme palette array.
*/
function custom_css_theme_settings_css($theme, &$css, array $palette) {
if (theme_get_setting('custom_css_site', $theme)) {
$css .= "/* Custom CSS */\n";
$css .= trim(theme_get_setting('custom_css_site', $theme));
$css .= "\n\n";
}
}
