Ticket #31604: highlight-test.diff
File highlight-test.diff, 1.6 KB (added by , 8 years ago) |
---|
-
wp-admin/css/common.css
1461 1461 margin: 5px 0 15px; 1462 1462 } 1463 1463 1464 .wrap #templateside .notice{ 1465 display: block; 1466 padding: 1px 12px; 1467 font-weight: 600; 1468 text-decoration: none; 1469 } 1470 1464 1471 /* Update icon. */ 1465 1472 .update-message p:before, 1466 1473 .updating-message p:before, -
wp-admin/plugin-editor.php
322 322 continue; 323 323 } 324 324 ?> 325 <li<?php echo $file == $plugin_file ? ' class=" highlight"' : ''; ?>><a href="plugin-editor.php?file=<?php echo urlencode( $plugin_file ) ?>&plugin=<?php echo urlencode( $plugin ) ?>"><?php echo esc_html( $plugin_file ); ?></a></li>325 <li<?php echo $file == $plugin_file ? ' class="notice notice-info"' : ''; ?>><a href="plugin-editor.php?file=<?php echo urlencode( $plugin_file ) ?>&plugin=<?php echo urlencode( $plugin ) ?>"><?php echo esc_html( $plugin_file ); ?></a></li> 326 326 <?php endforeach; ?> 327 327 </ul> 328 328 </div> -
wp-admin/theme-editor.php
283 283 } 284 284 285 285 if ( $absolute_filename === $file ) { 286 $file_description = '<span class=" highlight">' . $file_description . '</span>';286 $file_description = '<span class="notice notice-info">' . $file_description . '</span>'; 287 287 } 288 288 289 289 $previous_file_type = $file_type;