Ticket #31604: highlight-test3.diff
File highlight-test3.diff, 1.8 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 margin: 0; 1467 padding: 5px 12px; 1468 font-weight: 600; 1469 text-decoration: none; 1470 } 1471 1472 .wrap #templateside span.notice{ 1473 margin-left: -12px; 1474 } 1475 1476 #templateside li.notice a{ 1477 padding: 0; 1478 } 1479 1464 1480 /* Update icon. */ 1465 1481 .update-message p:before, 1466 1482 .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;