|
@@ 822-824 (lines=3) @@
|
| 819 |
|
$submit_button_styles = ''; |
| 820 |
|
$email_field_styles = ''; |
| 821 |
|
|
| 822 |
|
if ( isset( $instance['custom_background_button_color'] ) && 'undefined' !== $instance['custom_background_button_color'] ) { |
| 823 |
|
$submit_button_styles .= 'background: ' . $instance['custom_background_button_color'] . '; '; |
| 824 |
|
} |
| 825 |
|
if ( isset( $instance['custom_text_button_color'] ) && 'undefined' !== $instance['custom_text_button_color'] ) { |
| 826 |
|
$submit_button_styles .= 'color: ' . $instance['custom_text_button_color'] . '; '; |
| 827 |
|
} |
|
@@ 825-827 (lines=3) @@
|
| 822 |
|
if ( isset( $instance['custom_background_button_color'] ) && 'undefined' !== $instance['custom_background_button_color'] ) { |
| 823 |
|
$submit_button_styles .= 'background: ' . $instance['custom_background_button_color'] . '; '; |
| 824 |
|
} |
| 825 |
|
if ( isset( $instance['custom_text_button_color'] ) && 'undefined' !== $instance['custom_text_button_color'] ) { |
| 826 |
|
$submit_button_styles .= 'color: ' . $instance['custom_text_button_color'] . '; '; |
| 827 |
|
} |
| 828 |
|
|
| 829 |
|
if ( isset( $instance['custom_font_size'] ) && 'undefined' !== $instance['custom_font_size'] ) { |
| 830 |
|
$style = 'font-size: ' . $instance['custom_font_size'] . 'px; '; |