Completed
Push — develop ( e1c74c...783e35 )
by Aristeides
02:25 queued 33s
created
field/class-kirki-field-gradient.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -77,25 +77,25 @@
 block discarded – undo
77 77
 		foreach ( array( 'start', 'end' ) as $context ) {
78 78
 
79 79
 			// Make sure value is array.
80
-			if ( ! isset( $value[ $context ] ) ) {
81
-				$value[ $context ] = array();
80
+			if ( ! isset( $value[$context] ) ) {
81
+				$value[$context] = array();
82 82
 			}
83 83
 
84 84
 			// Make sure color is defined.
85
-			if ( ! isset( $value[ $context ]['color'] ) ) {
86
-				$value[ $context ]['color'] = '';
85
+			if ( ! isset( $value[$context]['color'] ) ) {
86
+				$value[$context]['color'] = '';
87 87
 			}
88 88
 			// Sanitize colors.
89
-			$color_obj = ariColor::newColor( $value[ $context ]['color'] );
90
-			$value[ $context ]['color'] = $color_obj->toCSS( $color_obj->mode );
89
+			$color_obj = ariColor::newColor( $value[$context]['color'] );
90
+			$value[$context]['color'] = $color_obj->toCSS( $color_obj->mode );
91 91
 
92 92
 			// Make sure position is defined.
93
-			if ( ! isset( $value[ $context ]['position'] ) ) {
94
-				$value[ $context ]['position'] = 0;
93
+			if ( ! isset( $value[$context]['position'] ) ) {
94
+				$value[$context]['position'] = 0;
95 95
 			};
96 96
 			// Sanitize positions.
97
-			$value[ $context ]['position'] = (int) $value[ $context ]['position'];
98
-			$value[ $context ]['position'] = max( min( $value[ $context ]['position'], 100 ), 0 );
97
+			$value[$context]['position'] = (int) $value[$context]['position'];
98
+			$value[$context]['position'] = max( min( $value[$context]['position'], 100 ), 0 );
99 99
 		}
100 100
 
101 101
 		// Make siure angle exists.
Please login to merge, or discard this patch.
modules/css/field/class-kirki-output-field-gradient.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,14 +38,14 @@
 block discarded – undo
38 38
 
39 39
 		$output['media_query'] = ( isset( $output['media_query'] ) ) ? $output['media_query'] : 'global';
40 40
 
41
-		$this->styles[ $output['media_query'] ][ $output['element'] ]['background'] = $value['start']['color'];
41
+		$this->styles[$output['media_query']][$output['element']]['background'] = $value['start']['color'];
42 42
 		switch ( $value['mode'] ) {
43 43
 
44 44
 			case 'linear':
45
-				$this->styles[ $output['media_query'] ][ $output['element'] ]['background'] = 'linear-gradient(' . intval( $value['angle'] ) . 'deg, ' . $value['start']['color'] . ' ' . $value['start']['position'] . '%,' . $value['end']['color'] . ' ' . $value['end']['position'] . '%)';
45
+				$this->styles[$output['media_query']][$output['element']]['background'] = 'linear-gradient(' . intval( $value['angle'] ) . 'deg, ' . $value['start']['color'] . ' ' . $value['start']['position'] . '%,' . $value['end']['color'] . ' ' . $value['end']['position'] . '%)';
46 46
 				break;
47 47
 			case 'radial':
48
-				$this->styles[ $output['media_query'] ][ $output['element'] ]['background'] = 'radial-gradient(ellipse at center,' . $value['start']['color'] . ' ' . $value['start']['position'] . '%,' . $value['end']['color'] . ' ' . $value['end']['position'] . '%)';
48
+				$this->styles[$output['media_query']][$output['element']]['background'] = 'radial-gradient(ellipse at center,' . $value['start']['color'] . ' ' . $value['start']['position'] . '%,' . $value['end']['color'] . ' ' . $value['end']['position'] . '%)';
49 49
 				break;
50 50
 		}
51 51
 	}
Please login to merge, or discard this patch.