$default, 'tablet' => $default, 'mobile' => $default ), $column_selector, 'align-items', '', $row, $section_id ); // Inner Layout. $default = Botiga_Header_Footer_Builder::get_row_column_default_customizer_value( $row, $i, 'inner_layout' ); $css .= Botiga_Header_Footer_Builder::get_responsive_css( $section_id . '_inner_layout', array( 'desktop' => $default, 'tablet' => $default, 'mobile' => $default ), $column_selector, 'flex-direction', '', $row, $section_id ); // Horizontal Alignment. $default = Botiga_Header_Footer_Builder::get_row_column_default_customizer_value( $row, $i, 'horizontal_alignment' ); $css .= Botiga_Header_Footer_Builder::get_responsive_css( $section_id . '_horizontal_alignment', array( 'desktop' => $default, 'tablet' => $default, 'mobile' => $default ), $column_selector, 'justify-content', '', $row, $section_id ); // Elements Spacing. $css .= Botiga_Header_Footer_Builder::get_responsive_css( $section_id . '_elements_spacing', array( 'desktop' => '25', 'tablet' => '25', 'mobile' => '25' ), "$column_selector .bhfb-builder-item + .bhfb-builder-item", is_rtl() ? 'margin-right' : 'margin-left', 'px', $row, $section_id ); // Padding $css .= Botiga_Custom_CSS::get_responsive_dimensions_css( $section_id . '_padding', array( 'desktop' => '{ "unit": "px", "linked": false, "top": "", "right": "", "bottom": "", "left": "" }', 'tablet' => '{ "unit": "px", "linked": false, "top": "", "right": "", "bottom": "", "left": "" }', 'mobile' => '{ "unit": "px", "linked": false, "top": "", "right": "", "bottom": "", "left": "" }', ), $column_selector, 'padding' ); // Margin $css .= Botiga_Custom_CSS::get_responsive_dimensions_css( $section_id . '_margin', array( 'desktop' => '{ "unit": "px", "linked": false, "top": "", "right": "", "bottom": "", "left": "" }', 'tablet' => '{ "unit": "px", "linked": false, "top": "", "right": "", "bottom": "", "left": "" }', 'mobile' => '{ "unit": "px", "linked": false, "top": "", "right": "", "bottom": "", "left": "" }', ), $column_selector, 'margin' ); } } // @codingStandardsIgnoreEnd WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound