Skip to content

Commit

Permalink
Merge branch 'epic/onboarding-wizard' into refactor/onboarding-naviga…
Browse files Browse the repository at this point in the history
…tion
  • Loading branch information
pauloiankoski authored Jul 15, 2024
2 parents 11afa2b + 293fa5f commit 1d81bf4
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
10 changes: 10 additions & 0 deletions assets/src/js/admin/onboarding-wizard/app/steps/addons/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,14 @@
text-align: center;
}
}

> p {
color: #4a5568;
font-size: 14px;
font-weight: 400;
line-height: 1.57;
margin: 0;
text-align: center;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,14 @@
text-align: center;
}
}

> p {
color: #4a5568;
font-size: 14px;
font-weight: 400;
line-height: 1.57;
margin: 0;
text-align: center;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -646,6 +646,7 @@ public function get_percentage_complete() {
* @access public
*
* @since 2.1
* @unreleased Use maybe_serialize() for column data (some data are arrays)
*
* @return string|false
*/
Expand All @@ -663,6 +664,7 @@ public function print_csv_rows() {
foreach ( $row as $col_id => $column ) {
// Make sure the column is valid
if ( array_key_exists( $col_id, $cols ) ) {
$column = maybe_serialize( $column );
$row_data .= '"' . $this->escape_csv_cell_data(preg_replace( '/"/', "'", $column )) . '"';
$row_data .= $i == count( $cols ) ? '' : ',';
$i ++;
Expand Down

0 comments on commit 1d81bf4

Please sign in to comment.