diff --git src/js/_enqueues/admin/xfn.js src/js/_enqueues/admin/xfn.js
index 61605a3..b4e0e6f 100644
|
|
|
jQuery( document ).ready( function( $ ) { |
| 171 | 171 | var summaryMessage = strings.noDataFound; |
| 172 | 172 | var classes = 'notice-success'; |
| 173 | 173 | |
| 174 | | setActionState( $action, 'remove-personal-data-idle' ); |
| | 174 | setActionState( $action, 'remove-personal-data-success' ); |
| 175 | 175 | |
| 176 | 176 | if ( false === hasRemoved ) { |
| 177 | 177 | if ( false === hasRetained ) { |
diff --git src/wp-admin/css/forms.css src/wp-admin/css/forms.css
index 31f62c2..d9a6792 100644
|
|
|
table.form-table td .updated p { |
| 1113 | 1113 | box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); |
| 1114 | 1114 | } |
| 1115 | 1115 | |
| | 1116 | .privacy_requests .row-actions { |
| | 1117 | color: #72777C; |
| | 1118 | } |
| | 1119 | |
| 1116 | 1120 | .privacy_requests tbody .has-request-results th { |
| 1117 | 1121 | box-shadow: none; |
| 1118 | 1122 | } |
diff --git src/wp-admin/includes/user.php src/wp-admin/includes/user.php
index fa868d9..ed807ff 100644
|
|
|
class WP_Privacy_Data_Removal_Requests_Table extends WP_Privacy_Requests_Table { |
| 1549 | 1549 | |
| 1550 | 1550 | $remove_data_markup .= '<span class="remove-personal-data-idle"><button type="button" class="button-link remove-personal-data-handle">' . __( 'Force Erase Personal Data' ) . '</button></span>' . |
| 1551 | 1551 | '<span style="display:none" class="remove-personal-data-processing" >' . __( 'Erasing Data...' ) . '</span>' . |
| | 1552 | '<span style="display:none" class="remove-personal-data-success">' . __( 'Erase completed.' ) . '</span>' . |
| 1552 | 1553 | '<span style="display:none" class="remove-personal-data-failed">' . __( 'Force Erase has failed.' ) . ' <button type="button" class="button-link remove-personal-data-handle">' . __( 'Retry' ) . '</button></span>'; |
| 1553 | 1554 | |
| 1554 | 1555 | $remove_data_markup .= '</div>'; |
| … |
… |
class WP_Privacy_Data_Removal_Requests_Table extends WP_Privacy_Requests_Table { |
| 1592 | 1593 | ?> |
| 1593 | 1594 | <span class="remove-personal-data-idle"><button type="button" class="button remove-personal-data-handle"><?php _e( 'Erase Personal Data' ); ?></button></span> |
| 1594 | 1595 | <span style="display:none" class="remove-personal-data-processing button updating-message" ><?php _e( 'Erasing Data...' ); ?></span> |
| | 1596 | <span style="display:none" class="remove-personal-data-success success-message" ><?php _e( 'Erase completed.' ); ?></span> |
| 1595 | 1597 | <span style="display:none" class="remove-personal-data-failed"><?php _e( 'Erasing Data has failed.' ); ?> <button type="button" class="button remove-personal-data-handle"><?php _e( 'Retry' ); ?></button></span> |
| 1596 | 1598 | <?php |
| 1597 | 1599 | |