Changeset 59859
- Timestamp:
- 02/22/2025 12:10:50 PM (2 weeks ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/site-health.css
r57270 r59859 167 167 } 168 168 169 .widefat.health-check-table th { 170 font-size: 13px; 171 } 172 169 173 .health-check-table td:first-child { 170 174 width: 30%; … … 338 342 } 339 343 344 .health-check-table th, 340 345 .health-check-table td { 341 346 box-sizing: border-box; … … 345 350 } 346 351 352 .widefat.health-check-table th, 347 353 .health-check-table td:first-child { 348 354 width: 100%; -
trunk/src/wp-admin/site-health-info.php
r58299 r59859 109 109 110 110 ?> 111 <table class="widefat striped health-check-table" role="presentation">111 <table class="widefat striped health-check-table"> 112 112 <tbody> 113 113 <?php … … 127 127 128 128 if ( in_array( $field_name, $sizes_fields, true ) ) { 129 printf( '<tr><t d>%s</td><td class="%s">%s</td></tr>', esc_html( $field['label'] ), esc_attr( $field_name ), $values );129 printf( '<tr><th scope="row">%s</th><td class="%s">%s</td></tr>', esc_html( $field['label'] ), esc_attr( $field_name ), $values ); 130 130 } else { 131 printf( '<tr><t d>%s</td><td>%s</td></tr>', esc_html( $field['label'] ), $values );131 printf( '<tr><th scope="row">%s</th><td>%s</td></tr>', esc_html( $field['label'] ), $values ); 132 132 } 133 133 }
Note: See TracChangeset
for help on using the changeset viewer.