diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
index 9da493c94c..3803e2586d 100644
a
|
b
|
img { |
3290 | 3290 | display: none; |
3291 | 3291 | } |
3292 | 3292 | |
| 3293 | #theme-plugin-editor-selector { |
| 3294 | font-weight: 600; |
| 3295 | } |
3293 | 3296 | |
3294 | 3297 | #theme-plugin-editor-label { |
3295 | 3298 | display: inline-block; |
diff --git a/src/wp-admin/plugin-editor.php b/src/wp-admin/plugin-editor.php
index 7467ace6aa..a5be77d035 100644
a
|
b
|
$content = esc_textarea( $content ); |
216 | 216 | </div> |
217 | 217 | <div class="alignright"> |
218 | 218 | <form action="plugin-editor.php" method="get"> |
219 | | <strong><label for="plugin"><?php _e( 'Select plugin to edit:' ); ?> </label></strong> |
| 219 | <label for="plugin" id="theme-plugin-editor-selector"><?php _e( 'Select plugin to edit:' ); ?> </label> |
220 | 220 | <select name="plugin" id="plugin"> |
221 | 221 | <?php |
222 | 222 | foreach ( $plugins as $plugin_key => $a_plugin ) { |
diff --git a/src/wp-admin/theme-editor.php b/src/wp-admin/theme-editor.php
index 3cf24cc77e..c162ce4c14 100644
a
|
b
|
if ( $file_description !== $file_show ) { |
222 | 222 | </div> |
223 | 223 | <div class="alignright"> |
224 | 224 | <form action="theme-editor.php" method="get"> |
225 | | <strong><label for="theme"><?php _e( 'Select theme to edit:' ); ?> </label></strong> |
| 225 | <label for="theme" id="theme-plugin-editor-selector"><?php _e( 'Select theme to edit:' ); ?> </label> |
226 | 226 | <select name="theme" id="theme"> |
227 | 227 | <?php |
228 | 228 | foreach ( wp_get_themes( array( 'errors' => null ) ) as $a_stylesheet => $a_theme ) { |