403Webshell
Server IP : 38.190.208.107  /  Your IP : 216.73.217.61
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 : www ( 1000)
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.4/wp-content/themes/woodmart/inc/integrations/gutenberg/src/blocks/title/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /www/wwwroot/wp.4/wp-content/themes/woodmart/inc/integrations/gutenberg/src/blocks/title/css.php
<?php
use XTS\Gutenberg\Block_CSS;

$mark_selector = $block_selector . ' .wd-highlight';
$block_css     = new Block_CSS( $attrs );

$block_css->add_css_rules(
	$block_selector,
	array(
		array(
			'attr_name' => 'colorCode',
			'template'  => 'color: {{value}};',
		),
		array(
			'attr_name' => 'colorVariable',
			'template'  => 'color: var({{value}});',
		),

		array(
			'attr_name' => 'activeBorderColorCode',
			'template'  => '--wd-title-brd-color-act: {{value}};',
		),
		array(
			'attr_name' => 'activeBorderColorVariable',
			'template'  => '--wd-title-brd-color-act: var({{value}});',
		),
		array(
			'attr_name' => 'textAlign',
			'template'  => '--wd-align: var(--wd-{{value}});',
		),
	)
);

$block_css->add_css_rules(
	$block_selector_hover,
	array(
		array(
			'attr_name' => 'colorHoverCode',
			'template'  => 'color: {{value}};',
		),
		array(
			'attr_name' => 'colorHoverVariable',
			'template'  => 'color: var({{value}});',
		),
	)
);

$block_css->add_css_rules(
	$block_selector_parent_hover,
	array(
		array(
			'attr_name' => 'colorParentHoverCode',
			'template'  => 'color: {{value}};',
		),
		array(
			'attr_name' => 'colorParentHoverVariable',
			'template'  => 'color: var({{value}});',
		),
	)
);

$block_css->add_css_rules(
	$block_selector . '> img, ' . $block_selector . '> picture img, ' . $block_selector . ' > span img',
	array(
		array(
			'attr_name' => 'inlineImageWidth',
			'template'  => 'width: {{value}}px !important;',
		),
	)
);

$block_css->add_css_rules(
	$block_selector,
	array(
		array(
			'attr_name' => 'textAlignTablet',
			'template'  => '--wd-align: var(--wd-{{value}});',
		),
	),
	'tablet'
);

$block_css->add_css_rules(
	$block_selector . '> img, ' . $block_selector . '> picture img, ' . $block_selector . ' > span img',
	array(
		array(
			'attr_name' => 'inlineImageWidthTablet',
			'template'  => 'width: {{value}}px !important;',
		),
	),
	'tablet'
);

$block_css->add_css_rules(
	$block_selector,
	array(
		array(
			'attr_name' => 'textAlignMobile',
			'template'  => '--wd-align: var(--wd-{{value}});',
		),
	),
	'mobile'
);

$block_css->add_css_rules(
	$block_selector . '> img, ' . $block_selector . '> picture img, ' . $block_selector . ' > span img',
	array(
		array(
			'attr_name' => 'inlineImageWidthMobile',
			'template'  => 'width: {{value}}px !important;',
		),
	),
	'mobile'
);

$block_css->add_css_rules(
	$mark_selector,
	array(
		array(
			'attr_name' => 'markColorCode',
			'template'  => 'color: {{value}};',
		),
		array(
			'attr_name' => 'markColorVariable',
			'template'  => 'color: var({{value}});',
		),
	)
);

if ( ! empty( $attrs['gradientEnable'] ) ) {
	$gradient_position = ! empty( $attrs['gradientPosition'] ) ? $attrs['gradientPosition'] : 'center center';

	if ( ! empty( $attrs['gradient'] ) && false !== strpos( $attrs['gradient'], 'radial-gradient' ) ) {
		$gradient = str_replace( 'radial-gradient(', 'radial-gradient(at ' . $gradient_position . ',', $attrs['gradient'] );

		$block_css->add_to_selector(
			$mark_selector,
			'background-image: ' . $gradient . ';',
		);
	} else {
		$block_css->add_css_rules(
			$mark_selector,
			array(
				array(
					'attr_name' => 'gradient',
					'template'  => 'background-image: {{value}};',
				),
			)
		);
	}

	if ( ! empty( $attrs['gradientTablet'] ) && false !== strpos( $attrs['gradientTablet'], 'radial-gradient' ) ) {
		$gradient_position = ! empty( $attrs['gradientPositionTablet'] ) ? $attrs['gradientPositionTablet'] : $gradient_position;

		$gradient = str_replace( 'radial-gradient(', 'radial-gradient(at ' . $gradient_position . ',', $attrs['gradientTablet'] );

		$block_css->add_to_selector(
			$mark_selector,
			'background-image: ' . $gradient . ';',
			'tablet'
		);
	} else {
		$block_css->add_css_rules(
			$mark_selector,
			array(
				array(
					'attr_name' => 'gradientTablet',
					'template'  => 'background-image: {{value}};',
				),
			),
			'tablet'
		);
	}

	if ( ! empty( $attrs['gradientMobile'] ) && false !== strpos( $attrs['gradientMobile'], 'radial-gradient' ) ) {
		$gradient_position = ! empty( $attrs['gradientPositionMobile'] ) ? $attrs['gradientPositionMobile'] : $gradient_position;

		$gradient = str_replace( 'radial-gradient(', 'radial-gradient(at ' . $gradient_position . ',', $attrs['gradientMobile'] );

		$block_css->add_to_selector(
			$mark_selector,
			'background-image: ' . $gradient . ';',
			'mobile'
		);
	} else {
		$block_css->add_css_rules(
			$mark_selector,
			array(
				array(
					'attr_name' => 'gradientMobile',
					'template'  => 'background-image: {{value}};',
				),
			),
			'mobile'
		);
	}

	if ( ! empty( $attrs['gradient'] ) ) {
		$block_css->add_to_selector(
			$mark_selector,
			'-webkit-background-clip: text;',
		);

		$block_css->add_to_selector(
			$mark_selector,
			'background-clip: text;',
		);

		$block_css->add_to_selector(
			$mark_selector,
			'-webkit-text-fill-color: transparent;',
		);
	}

	if ( ! empty( $attrs['gradientTablet'] ) ) {
		$block_css->add_to_selector(
			$mark_selector,
			'-webkit-background-clip: text;',
			'tablet'
		);

		$block_css->add_to_selector(
			$mark_selector,
			'background-clip: text;',
			'tablet'
		);

		$block_css->add_to_selector(
			$mark_selector,
			'-webkit-text-fill-color: transparent;',
			'tablet'
		);
	}

	if ( ! empty( $attrs['gradientMobile'] ) ) {
		$block_css->add_to_selector(
			$mark_selector,
			'-webkit-background-clip: text;',
			'mobile'
		);

		$block_css->add_to_selector(
			$mark_selector,
			'background-clip: text;',
			'mobile'
		);

		$block_css->add_to_selector(
			$mark_selector,
			'-webkit-text-fill-color: transparent;',
			'mobile'
		);
	}
}

$block_css->merge_with( wd_get_block_typography_css( $block_selector, $attrs, 'tp' ) );
$block_css->merge_with( wd_get_block_typography_css( $mark_selector, $attrs, 'mark' ) );
$block_css->merge_with(
	wd_get_block_advanced_css(
		array(
			'selector'              => $block_selector,
			'selector_hover'        => $block_selector_hover,
			'selector_parent_hover' => $block_selector_parent_hover,
		),
		$attrs
	)
);

return $block_css->get_css_for_devices();

Youez - 2016 - github.com/yon3zu
LinuXploit