File: /sites/nuofama.com/wp-content/themes/blocksy/inc/options/single-elements/structure-design.php
<?php
if (! isset($prefix)) {
$prefix = '';
} else {
$prefix = $prefix . '_';
}
if (! isset($options_conditions)) {
$options_conditions = [];
}
if (! isset($has_background)) {
$has_background = true;
}
$options = [
[
$has_background ? [
$prefix . 'background' => [
'label' => __('Page Background', 'blocksy'),
'type' => 'ct-background',
'design' => 'block:right',
'responsive' => true,
'sync' => 'live',
'divider' => 'bottom',
'value' => blocksy_background_default_value([
'backgroundColor' => [
'default' => [
'color' => Blocksy_Css_Injector::get_skip_rule_keyword(),
],
],
]),
'desc' => sprintf(
// translators: placeholder here means the actual URL.
__( 'Please note, by default this option is inherited from Colors ➝ %sSite Background%s.', 'blocksy' ),
sprintf(
'<a data-trigger-section="color" href="%s">',
admin_url('/customize.php?autofocus[section]=color')
),
'</a>'
),
],
] : []
],
blocksy_rand_md5() => [
'type' => 'ct-condition',
'condition' => array_merge([
$prefix . 'content_style' => '~boxed'
], $options_conditions),
'options' => [
$prefix . 'content_background' => [
'label' => __( 'Content Area Background', 'blocksy' ),
'type' => 'ct-background',
'design' => 'block:right',
'responsive' => true,
'sync' => 'live',
'value' => blocksy_background_default_value([
'backgroundColor' => [
'default' => [
'color' => 'var(--paletteColor8)',
],
],
])
],
$prefix . 'content_boxed_shadow' => [
'label' => __( 'Content Area Shadow', 'blocksy' ),
'type' => 'ct-box-shadow',
'responsive' => true,
'divider' => 'top',
'sync' => 'live',
'value' => blocksy_box_shadow_value([
'enable' => true,
'h_offset' => 0,
'v_offset' => 12,
'blur' => 18,
'spread' => -6,
'inset' => false,
'color' => [
'color' => 'rgba(34, 56, 101, 0.04)',
],
])
],
$prefix . 'content_boxed_border' => [
'label' => __( 'Content Area Border', 'blocksy' ),
'type' => 'ct-border',
'design' => 'block',
'sync' => 'live',
'divider' => 'top',
'responsive' => true,
'value' => [
'width' => 1,
'style' => 'none',
'color' => [
'color' => 'rgba(44,62,80,0.2)',
],
]
],
$prefix . 'content_boxed_radius' => [
'label' => __( 'Content Area Border Radius', 'blocksy' ),
'type' => 'ct-spacing',
'divider' => 'top',
'value' => blocksy_spacing_value([
'linked' => true,
'top' => '3px',
'left' => '3px',
'right' => '3px',
'bottom' => '3px',
]),
'responsive' => true,
'sync' => 'live',
],
$prefix . 'boxed_content_spacing' => [
'label' => __( 'Content Area Padding', 'blocksy' ),
'type' => 'ct-spacing',
'divider' => 'top',
'value' => [
'desktop' => blocksy_spacing_value([
'linked' => true,
'top' => '40px',
'left' => '40px',
'right' => '40px',
'bottom' => '40px',
]),
'tablet' => blocksy_spacing_value([
'linked' => true,
'top' => '35px',
'left' => '35px',
'right' => '35px',
'bottom' => '35px',
]),
'mobile'=> blocksy_spacing_value([
'linked' => true,
'top' => '20px',
'left' => '20px',
'right' => '20px',
'bottom' => '20px',
]),
],
'responsive' => true,
'sync' => 'live',
],
],
],
];