43 lines
1.3 KiB
PHP
43 lines
1.3 KiB
PHP
<?php
|
|
if ( !defined( 'WPINC' ) ) {
|
|
die;
|
|
}
|
|
?>
|
|
|
|
<?php
|
|
require_once 'color-definitions.php';
|
|
global $colors;
|
|
?>
|
|
|
|
<style>
|
|
|
|
:root {
|
|
--minimalistflex-header: <?php
|
|
$header_textcolor = get_header_textcolor();
|
|
if ( preg_match( '/#/', $header_textcolor ) ) {
|
|
echo $header_textcolor;
|
|
} else {
|
|
echo '#' . $header_textcolor;
|
|
}
|
|
?>;
|
|
<?php $color_keys = array_keys( $colors ); ?>
|
|
<?php foreach( $color_keys as $color_key ): ?>
|
|
--minimalistflex-<?php echo $color_key; ?>: <?php echo esc_html( get_theme_mod( 'minimalistflex_color_' . $color_key, $colors[$color_key] ) ); ?>;
|
|
<?php endforeach; ?>
|
|
--minimalistflex-max-height: <?php
|
|
if ( get_theme_mod( 'minimalistflex_interface_thumbnail_height', 'flexible' ) === 'fixed' ) {
|
|
echo esc_html( get_theme_mod( 'minimalistflex_interface_thumbnail_height_px', 300 ) ) . 'px;';
|
|
} else {
|
|
echo esc_html( 'auto;' );
|
|
}
|
|
?>
|
|
<?php if ( get_theme_mod( 'minimalistflex_color_disable_shadow', 'no' ) === 'yes' ): ?>
|
|
--minimalistflex-shadow: transparent;
|
|
--minimalistflex-shadow-light: transparent;
|
|
<?php else: ?>
|
|
--minimalistflex-shadow: rgba(0, 0, 0, 0.19);
|
|
--minimalistflex-shadow-light: rgba(200, 200, 200, 0.19);
|
|
<?php endif; ?>
|
|
}
|
|
|
|
</style>
|