Completed
Push — master ( 3c046e...e5698b )
by Stephanie
02:30
created
css/custom_theme.css.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 }
10 10
 
11 11
 if ( ! isset( $frm_style ) ) {
12
-    $frm_style = new FrmStyle();
12
+	$frm_style = new FrmStyle();
13 13
 }
14 14
 
15 15
 $styles = $frm_style->get_all();
Please login to merge, or discard this patch.
css/_single_theme.css.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
 	background-color:<?php echo esc_html( $bg_color . $important ); ?>;
327 327
 <?php
328 328
 if ( ! empty( $important ) ) {
329
-    echo esc_html( 'background-image:none' . $important . ';' );
329
+	echo esc_html( 'background-image:none' . $important . ';' );
330 330
 }
331 331
 ?>
332 332
     border-color: <?php echo esc_html( $border_color . $important ) ?>;
@@ -603,7 +603,7 @@  discard block
 block discarded – undo
603 603
 	max-width:<?php echo esc_html( $submit_height ) ?>;
604 604
 }
605 605
 <?php
606
-    }
606
+	}
607 607
 }
608 608
 ?>
609 609
 
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -123,11 +123,11 @@  discard block
 block discarded – undo
123 123
 }
124 124
 
125 125
 .<?php echo esc_html( $style_class ) ?> .frm_icon_font.frm_minus_icon:before{
126
-	content:"\e<?php echo esc_html( isset( $minus_icons[ $repeat_icon ] ) ? $minus_icons[ $repeat_icon ]['-'] : $minus_icons[1]['-'] ) ?>";
126
+	content:"\e<?php echo esc_html( isset( $minus_icons[$repeat_icon] ) ? $minus_icons[$repeat_icon]['-'] : $minus_icons[1]['-'] ) ?>";
127 127
 }
128 128
 
129 129
 .<?php echo esc_html( $style_class ) ?> .frm_icon_font.frm_plus_icon:before{
130
-	content:"\e<?php echo esc_html( isset( $minus_icons[ $repeat_icon ] ) ? $minus_icons[ $repeat_icon ]['+'] : $minus_icons[1]['+'] ) ?>";
130
+	content:"\e<?php echo esc_html( isset( $minus_icons[$repeat_icon] ) ? $minus_icons[$repeat_icon]['+'] : $minus_icons[1]['+'] ) ?>";
131 131
 }
132 132
 
133 133
 .<?php echo esc_html( $style_class ) ?> .frm_icon_font.frm_minus_icon:before,
@@ -136,12 +136,12 @@  discard block
 block discarded – undo
136 136
 }
137 137
 
138 138
 .<?php echo esc_html( $style_class ) ?> .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{
139
-	content:"\e<?php echo esc_html( isset( $arrow_icons[ $collapse_icon ] ) ? $arrow_icons[ $collapse_icon ]['-'] : $arrow_icons[1]['-'] ) ?>";
139
+	content:"\e<?php echo esc_html( isset( $arrow_icons[$collapse_icon] ) ? $arrow_icons[$collapse_icon]['-'] : $arrow_icons[1]['-'] ) ?>";
140 140
 	color:<?php echo esc_html( $section_color . $important ) ?>;
141 141
 }
142 142
 
143 143
 .<?php echo esc_html( $style_class ) ?> .frm_trigger .frm_icon_font.frm_arrow_icon:before{
144
-	content:"\e<?php echo esc_html( isset( $arrow_icons[ $collapse_icon ] ) ? $arrow_icons[ $collapse_icon ]['+'] : $arrow_icons[1]['+'] ) ?>";
144
+	content:"\e<?php echo esc_html( isset( $arrow_icons[$collapse_icon] ) ? $arrow_icons[$collapse_icon]['+'] : $arrow_icons[1]['+'] ) ?>";
145 145
 	color:<?php echo esc_html( $section_color . $important ) ?>;
146 146
 }
147 147
 
Please login to merge, or discard this patch.