File "css.php"
Full Path: /home/aiclgcwq/photonindustriespvt.com/wp-content/themes/woodmart/inc/integrations/gutenberg/src/components/controls/margin/css.php
File size: 1.93 KB
MIME-type: text/x-php
Charset: utf-8
<?php
use XTS\Gutenberg\Block_CSS;
if ( ! function_exists( 'wd_get_block_margin_css' ) ) {
function wd_get_block_margin_css( $selector, $attributes, $attr_prefix ) {
$block_css = new Block_CSS( $attributes );
foreach ( array( 'global', 'tablet', 'mobile' ) as $device ) {
$device_name = 'global' !== $device ? ucfirst( $device ) : '';
if (
isset( $attributes[ $attr_prefix . 'Top' . $device_name ] ) && '' !== $attributes[ $attr_prefix . 'Top' . $device_name ]
&& isset( $attributes[ $attr_prefix . 'Right' . $device_name ] ) && '' !== $attributes[ $attr_prefix . 'Right' . $device_name ]
&& isset( $attributes[ $attr_prefix . 'Bottom' . $device_name ] ) && '' !== $attributes[ $attr_prefix . 'Bottom' . $device_name ]
&& isset( $attributes[ $attr_prefix . 'Left' . $device_name ] ) && '' !== $attributes[ $attr_prefix . 'Left' . $device_name ]
) {
$block_css->add_to_selector(
$selector,
'margin:' . $block_css->get_value_from_sides( $attr_prefix, $device ) . ';',
$device
);
} else {
$block_css->add_css_rules(
$selector,
array(
array(
'attr_name' => $attr_prefix . 'Top' . $device_name,
'template' => 'margin-top: {{value}}' . $block_css->get_units_for_attribute( $attr_prefix, $device ) . ';',
),
array(
'attr_name' => $attr_prefix . 'Right' . $device_name,
'template' => 'margin-right: {{value}}' . $block_css->get_units_for_attribute( $attr_prefix, $device ) . ';',
),
array(
'attr_name' => $attr_prefix . 'Bottom' . $device_name,
'template' => 'margin-bottom: {{value}}' . $block_css->get_units_for_attribute( $attr_prefix, $device ) . ';',
),
array(
'attr_name' => $attr_prefix . 'Left' . $device_name,
'template' => 'margin-left: {{value}}' . $block_css->get_units_for_attribute( $attr_prefix, $device ) . ';',
),
),
$device
);
}
}
return $block_css->get_css();
}
}