Changeset 41595
- Timestamp:
- 09/25/2017 09:45:57 PM (7 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/common.css
r41586 r41595 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, -
trunk/src/wp-admin/plugin-editor.php
r41586 r41595 322 322 continue; 323 323 } 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>324 ?> 325 <li class="<?php echo esc_attr( $file === $plugin_file ? '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> -
trunk/src/wp-admin/theme-editor.php
r41586 r41595 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
Note: See TracChangeset
for help on using the changeset viewer.