| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.2/wp-content/themes/blocksy/static/js/customizer/sync/variables/single/ |
Upload File : |
import {
applyPrefixFor,
handleResponsiveSwitch,
getPrefixFor,
} from '../../helpers'
import { typographyOption } from '../../variables/typography'
import { makeVariablesWithCondition } from '../../helpers/variables-with-conditions'
let prefix = getPrefixFor()
export const getSingleShareBoxVariables = () =>
prefix === 'single_page'
? {}
: {
...typographyOption({
id: `${prefix}_share_box_title_font`,
selector: applyPrefixFor('.ct-share-box .ct-module-title', prefix),
}),
[`${prefix}_share_box_title_color`]: {
selector: applyPrefixFor('.ct-share-box .ct-module-title', prefix),
variable: 'theme-heading-color',
type: 'color:default',
},
...makeVariablesWithCondition(
`${prefix}_has_share_box`,
{
[`${prefix}_share_box_icon_size`]: {
selector: applyPrefixFor('.ct-share-box', prefix),
variable: 'theme-icon-size',
responsive: true,
unit: '',
},
[`${prefix}_share_box_icons_spacing`]: {
selector: applyPrefixFor('.ct-share-box', prefix),
variable: 'items-spacing',
responsive: true,
unit: '',
},
[`${prefix}_top_share_box_spacing`]: {
selector: applyPrefixFor('.ct-share-box[data-location="top"]', prefix),
variable: 'margin',
responsive: true,
unit: '',
},
[`${prefix}_bottom_share_box_spacing`]: {
selector: applyPrefixFor('.ct-share-box[data-location="bottom"]', prefix),
variable: 'margin',
responsive: true,
unit: '',
},
},
() => true
),
...makeVariablesWithCondition(
[`${prefix}_has_share_box`, `${prefix}_share_box_type`],
{
[`${prefix}_share_items_icon_color`]: [
{
selector: applyPrefixFor('.ct-share-box[data-type="type-1"]', prefix),
variable: 'theme-icon-color',
type: 'color:default',
},
{
selector: applyPrefixFor('.ct-share-box[data-type="type-1"]', prefix),
variable: 'theme-icon-hover-color',
type: 'color:hover',
},
],
[`${prefix}_share_items_border`]: {
selector: applyPrefixFor('.ct-share-box[data-type="type-1"]', prefix),
variable: 'theme-border',
type: 'border',
},
[`${prefix}_share_items_icon`]: [
{
selector: applyPrefixFor('.ct-share-box[data-type="type-2"]', prefix),
variable: 'theme-icon-color',
type: 'color:default',
},
{
selector: applyPrefixFor('.ct-share-box[data-type="type-2"]', prefix),
variable: 'theme-icon-hover-color',
type: 'color:hover',
},
],
[`${prefix}_share_box_alignment`]: [
{
selector: applyPrefixFor('.ct-share-box[data-type="type-2"]', prefix),
variable: 'horizontal-alignment',
responsive: true,
unit: '',
},
],
[`${prefix}_share_items_background`]: [
{
selector: applyPrefixFor('.ct-share-box[data-type="type-2"]', prefix),
variable: 'background-color',
type: 'color:default',
},
{
selector: applyPrefixFor('.ct-share-box[data-type="type-2"]', prefix),
variable: 'background-hover-color',
type: 'color:hover',
},
],
},
(values) => {
let share_box_type = values[`${prefix}_share_box_type`]
let has_share_box = values[`${prefix}_has_share_box`]
if (has_share_box !== 'yes') {
return false
}
if (share_box_type !== 'type-1') {
// return false
}
return true
}
),
}