form-01--form-container.php
3 years ago
form-02--form-fields.php
3 years ago
form-03--input.php
5 months ago
form-04--select2.php
5 months ago
form-05--select2-dropdown.php
3 years ago
form-06--timepicker-dropdown.php
3 years ago
form-07--radio.php
5 months ago
form-08--checkbox.php
5 months ago
form-09--calendar.php
3 years ago
form-10--submit.php
5 months ago
form-11--options-container.php
3 years ago
form-12--options-title.php
5 months ago
form-13--gdpr.php
5 months ago
form-14--error-message.php
5 months ago
form-15--success-message.php
2 years ago
form-16--recaptcha.php
5 months ago
general-01--module-container.php
3 years ago
general-02--main-layout.php
1 month ago
general-03--layout-header.php
3 years ago
general-04--layout-content.php
3 years ago
general-05--layout-footer.php
3 years ago
general-06--image-size.php
5 months ago
general-07--image-fitting.php
3 years ago
general-08--image-position.php
5 months ago
general-09--content-wrapper.php
3 years ago
general-10--title.php
5 months ago
general-11--subtitle.php
5 months ago
general-12--content.php
5 months ago
general-13--cta-container.php
3 years ago
general-14--cta-button.php
5 months ago
general-15--cta-alignment.php
3 years ago
general-16--nsa-link.php
5 months ago
general-17--close-button.php
3 years ago
general-18--popup-mask.php
3 years ago
general-19--cta-helper-text.php
5 months ago
module-size-embed.php
5 months ago
module-size-popup.php
5 months ago
module-size-slidein.php
3 years ago
general-03--layout-header.php
112 lines
| 1 | <?php |
| 2 | /** |
| 3 | * "Layout Header" settings. |
| 4 | * |
| 5 | * @package Hustle |
| 6 | * @since 4.3.0 |
| 7 | */ |
| 8 | |
| 9 | $component = '.hustle-layout .hustle-layout-header'; |
| 10 | |
| 11 | // SETTINGS: Padding. |
| 12 | $padding_top = ( '' !== $advanced['layout_header_padding_top'] ) ? $advanced['layout_header_padding_top'] . $advanced['layout_header_padding_unit'] : '0'; |
| 13 | $padding_right = ( '' !== $advanced['layout_header_padding_right'] ) ? $advanced['layout_header_padding_right'] . $advanced['layout_header_padding_unit'] : '0'; |
| 14 | $padding_bottom = ( '' !== $advanced['layout_header_padding_bottom'] ) ? $advanced['layout_header_padding_bottom'] . $advanced['layout_header_padding_unit'] : '0'; |
| 15 | $padding_left = ( '' !== $advanced['layout_header_padding_left'] ) ? $advanced['layout_header_padding_left'] . $advanced['layout_header_padding_unit'] : '0'; |
| 16 | |
| 17 | $padding = $padding_top . ' ' . $padding_right . ' ' . $padding_bottom . ' ' . $padding_left; |
| 18 | |
| 19 | $mobile_padding_top = ( '' !== $advanced['layout_header_padding_top_mobile'] ) ? $advanced['layout_header_padding_top_mobile'] . $advanced['layout_header_padding_unit_mobile'] : $padding_top; |
| 20 | $mobile_padding_right = ( '' !== $advanced['layout_header_padding_right_mobile'] ) ? $advanced['layout_header_padding_right_mobile'] . $advanced['layout_header_padding_unit_mobile'] : $padding_right; |
| 21 | $mobile_padding_bottom = ( '' !== $advanced['layout_header_padding_bottom_mobile'] ) ? $advanced['layout_header_padding_bottom_mobile'] . $advanced['layout_header_padding_unit_mobile'] : $padding_bottom; |
| 22 | $mobile_padding_left = ( '' !== $advanced['layout_header_padding_left_mobile'] ) ? $advanced['layout_header_padding_left_mobile'] . $advanced['layout_header_padding_unit_mobile'] : $padding_left; |
| 23 | |
| 24 | $mobile_padding = ( ! $is_mobile_enabled || ( $is_mobile_enabled && $default_advanced ) ) ? $padding : $mobile_padding_top . ' ' . $mobile_padding_right . ' ' . $mobile_padding_bottom . ' ' . $mobile_padding_left; |
| 25 | |
| 26 | // SETTINGS: Border. |
| 27 | $border_top = ( '' !== $advanced['layout_header_border_top'] ) ? $advanced['layout_header_border_top'] . $advanced['layout_header_border_unit'] : '0'; |
| 28 | $border_right = ( '' !== $advanced['layout_header_border_right'] ) ? $advanced['layout_header_border_right'] . $advanced['layout_header_border_unit'] : '0'; |
| 29 | $border_bottom = ( '' !== $advanced['layout_header_border_bottom'] ) ? $advanced['layout_header_border_bottom'] . $advanced['layout_header_border_unit'] : '0'; |
| 30 | $border_left = ( '' !== $advanced['layout_header_border_left'] ) ? $advanced['layout_header_border_left'] . $advanced['layout_header_border_unit'] : '0'; |
| 31 | |
| 32 | $border_width = $border_top . ' ' . $border_right . ' ' . $border_bottom . ' ' . $border_left; |
| 33 | $border_style = $advanced['layout_header_border_type']; |
| 34 | $border_color = $colors['layout_header_border']; |
| 35 | |
| 36 | $mobile_border_top = ( '' !== $advanced['layout_header_border_top_mobile'] ) ? $advanced['layout_header_border_top_mobile'] . $advanced['layout_header_border_unit_mobile'] : $border_top; |
| 37 | $mobile_border_right = ( '' !== $advanced['layout_header_border_right_mobile'] ) ? $advanced['layout_header_border_right_mobile'] . $advanced['layout_header_border_unit_mobile'] : $border_right; |
| 38 | $mobile_border_bottom = ( '' !== $advanced['layout_header_border_bottom_mobile'] ) ? $advanced['layout_header_border_bottom_mobile'] . $advanced['layout_header_border_unit_mobile'] : $border_bottom; |
| 39 | $mobile_border_left = ( '' !== $advanced['layout_header_border_left_mobile'] ) ? $advanced['layout_header_border_left_mobile'] . $advanced['layout_header_border_unit_mobile'] : $border_left; |
| 40 | |
| 41 | $mobile_border_width = ( ! $is_mobile_enabled || ( $is_mobile_enabled && $default_advanced ) ) ? $border_width : $mobile_border_top . ' ' . $mobile_border_right . ' ' . $mobile_border_bottom . ' ' . $mobile_border_left; |
| 42 | $mobile_border_style = ( ! $is_mobile_enabled || ( $is_mobile_enabled && $default_advanced ) ) ? $border_style : $advanced['layout_header_border_type_mobile']; |
| 43 | |
| 44 | // SETTINGS: Border Radius. |
| 45 | $radius_topleft = ( '' !== $advanced['layout_header_radius_top_left'] ) ? $advanced['layout_header_radius_top_left'] . $advanced['layout_header_radius_unit'] : '0'; |
| 46 | $radius_topright = ( '' !== $advanced['layout_header_radius_top_right'] ) ? $advanced['layout_header_radius_top_right'] . $advanced['layout_header_radius_unit'] : '0'; |
| 47 | $radius_bottomright = ( '' !== $advanced['layout_header_radius_bottom_right'] ) ? $advanced['layout_header_radius_bottom_right'] . $advanced['layout_header_radius_unit'] : '0'; |
| 48 | $radius_bottomleft = ( '' !== $advanced['layout_header_radius_bottom_left'] ) ? $advanced['layout_header_radius_bottom_left'] . $advanced['layout_header_radius_unit'] : '0'; |
| 49 | |
| 50 | $border_radius = $radius_topleft . ' ' . $radius_topright . ' ' . $radius_bottomright . ' ' . $radius_bottomleft; |
| 51 | |
| 52 | $mobile_radius_topleft = ( '' !== $advanced['layout_header_radius_top_left_mobile'] ) ? $advanced['layout_header_radius_top_left_mobile'] . $advanced['layout_header_radius_unit_mobile'] : $radius_topleft; |
| 53 | $mobile_radius_topright = ( '' !== $advanced['layout_header_radius_top_right_mobile'] ) ? $advanced['layout_header_radius_top_right_mobile'] . $advanced['layout_header_radius_unit_mobile'] : $radius_topright; |
| 54 | $mobile_radius_bottomright = ( '' !== $advanced['layout_header_radius_bottom_right_mobile'] ) ? $advanced['layout_header_radius_bottom_right_mobile'] . $advanced['layout_header_radius_unit_mobile'] : $radius_bottomright; |
| 55 | $mobile_radius_bottomleft = ( '' !== $advanced['layout_header_radius_bottom_left_mobile'] ) ? $advanced['layout_header_radius_bottom_left_mobile'] . $advanced['layout_header_radius_unit_mobile'] : $radius_bottomleft; |
| 56 | |
| 57 | $mobile_border_radius = ( ! $is_mobile_enabled || ( $is_mobile_enabled && $default_advanced ) ) ? $border_radius : $mobile_radius_topleft . ' ' . $mobile_radius_topright . ' ' . $mobile_radius_bottomright . ' ' . $mobile_radius_bottomleft; |
| 58 | |
| 59 | // SETTINGS: Box Shadow. |
| 60 | $shadow_offset_x = ( '' !== $advanced['layout_header_drop_shadow_x'] ) ? $advanced['layout_header_drop_shadow_x'] . $advanced['layout_header_drop_shadow_unit'] : '0'; |
| 61 | $shadow_offset_y = ( '' !== $advanced['layout_header_drop_shadow_y'] ) ? $advanced['layout_header_drop_shadow_y'] . $advanced['layout_header_drop_shadow_unit'] : '0'; |
| 62 | $shadow_blur = ( '' !== $advanced['layout_header_drop_shadow_blur'] ) ? $advanced['layout_header_drop_shadow_blur'] . $advanced['layout_header_drop_shadow_unit'] : '0'; |
| 63 | $shadow_spread = ( '' !== $advanced['layout_header_drop_shadow_spread'] ) ? $advanced['layout_header_drop_shadow_spread'] . $advanced['layout_header_drop_shadow_unit'] : '0'; |
| 64 | $shadow_color = $colors['layout_header_drop_shadow']; |
| 65 | |
| 66 | $box_shadow = $shadow_offset_x . ' ' . $shadow_offset_y . ' ' . $shadow_blur . ' ' . $shadow_spread . ' ' . $shadow_color; |
| 67 | |
| 68 | $mobile_shadow_offset_x = ( '' !== $advanced['layout_header_drop_shadow_x_mobile'] ) ? $advanced['layout_header_drop_shadow_x_mobile'] . $advanced['layout_header_drop_shadow_unit_mobile'] : $shadow_offset_x; |
| 69 | $mobile_shadow_offset_y = ( '' !== $advanced['layout_header_drop_shadow_y_mobile'] ) ? $advanced['layout_header_drop_shadow_y_mobile'] . $advanced['layout_header_drop_shadow_unit_mobile'] : $shadow_offset_y; |
| 70 | $mobile_shadow_blur = ( '' !== $advanced['layout_header_drop_shadow_blur_mobile'] ) ? $advanced['layout_header_drop_shadow_blur_mobile'] . $advanced['layout_header_drop_shadow_unit_mobile'] : $shadow_blur; |
| 71 | $mobile_shadow_spread = ( '' !== $advanced['layout_header_drop_shadow_spread_mobile'] ) ? $advanced['layout_header_drop_shadow_spread_mobile'] . $advanced['layout_header_drop_shadow_unit_mobile'] : $shadow_spread; |
| 72 | |
| 73 | $mobile_box_shadow = ( ! $is_mobile_enabled || ( $is_mobile_enabled && $default_advanced ) ) ? $box_shadow : $mobile_shadow_offset_x . ' ' . $mobile_shadow_offset_y . ' ' . $mobile_shadow_blur . ' ' . $mobile_shadow_spread . ' ' . $shadow_color; |
| 74 | |
| 75 | // SETTINGS: Colors. |
| 76 | $background_color = $colors['layout_header_bg']; |
| 77 | |
| 78 | // ================================================== |
| 79 | // Check if is not informational compact layout. |
| 80 | if ( ! $is_optin && 'simple' !== $layout_info ) { |
| 81 | |
| 82 | $style .= ' '; |
| 83 | |
| 84 | // Mobile styles. |
| 85 | $style .= $prefix_mobile . $component . ' {'; |
| 86 | $style .= 'padding: ' . $mobile_padding . ';'; |
| 87 | $style .= 'border-width: ' . $mobile_border_width . ';'; |
| 88 | $style .= 'border-style: ' . $mobile_border_style . ';'; |
| 89 | $style .= ( ! $is_vanilla ) ? 'border-color: ' . $border_color . ';' : ''; |
| 90 | $style .= 'border-radius: ' . $mobile_border_radius . ';'; |
| 91 | $style .= ( ! $is_vanilla ) ? 'background-color: ' . $background_color . ';' : ''; |
| 92 | $style .= ( ! $is_vanilla ) ? '-moz-box-shadow: ' . $mobile_box_shadow . ';' : ''; |
| 93 | $style .= ( ! $is_vanilla ) ? '-webkit-box-shadow: ' . $mobile_box_shadow . ';' : ''; |
| 94 | $style .= ( ! $is_vanilla ) ? 'box-shadow: ' . $mobile_box_shadow . ';' : ''; |
| 95 | $style .= '}'; |
| 96 | |
| 97 | // Desktop styles. |
| 98 | if ( $is_mobile_enabled ) { |
| 99 | $style .= $breakpoint . ' {'; |
| 100 | $style .= $prefix_desktop . $component . ' {'; |
| 101 | $style .= 'padding: ' . $padding . ';'; |
| 102 | $style .= 'border-width: ' . $border_width . ';'; |
| 103 | $style .= 'border-style: ' . $border_style . ';'; |
| 104 | $style .= 'border-radius: ' . $border_radius . ';'; |
| 105 | $style .= ( ! $is_vanilla ) ? '-moz-box-shadow: ' . $box_shadow . ';' : ''; |
| 106 | $style .= ( ! $is_vanilla ) ? '-webkit-box-shadow: ' . $box_shadow . ';' : ''; |
| 107 | $style .= ( ! $is_vanilla ) ? 'box-shadow: ' . $box_shadow . ';' : ''; |
| 108 | $style .= '}'; |
| 109 | $style .= '}'; |
| 110 | } |
| 111 | } |
| 112 |