diff --git src/wp-admin/css/common.css src/wp-admin/css/common.css
index 8224b4345d..f989f518f8 100644
|
|
|
img { |
| 3058 | 3058 | #templateside ul ul { |
| 3059 | 3059 | padding-left: 12px; |
| 3060 | 3060 | } |
| | 3061 | #templateside > ul > li > ul[role=group] { |
| | 3062 | padding-left: 0; |
| | 3063 | } |
| 3061 | 3064 | |
| 3062 | 3065 | /* |
| 3063 | 3066 | * Styles for Theme and Plugin editors. |
diff --git src/wp-admin/plugin-editor.php src/wp-admin/plugin-editor.php
index 07de92ca09..e462da995a 100644
|
|
|
if ( 'POST' === $_SERVER['REQUEST_METHOD'] ) { |
| 242 | 242 | } |
| 243 | 243 | ?> |
| 244 | 244 | <ul role="tree" aria-labelledby="plugin-files-label"> |
| 245 | | <li role="treeitem" tabindex="-1" aria-expanded="true" |
| 246 | | aria-level="1" |
| 247 | | aria-posinset="1" |
| 248 | | aria-setsize="1"> |
| 249 | | <ul role="group" style="padding-left: 0;"> |
| | 245 | <li role="treeitem" tabindex="-1" aria-expanded="true" aria-level="1" aria-posinset="1" aria-setsize="1"> |
| | 246 | <ul role="group"> |
| 250 | 247 | <?php wp_print_plugin_file_tree( wp_make_plugin_file_tree( $plugin_editable_files ) ); ?> |
| 251 | 248 | </ul> |
| 252 | 249 | </ul> |
diff --git src/wp-admin/theme-editor.php src/wp-admin/theme-editor.php
index 0487e2d660..25042bb5cb 100644
|
|
|
if ( $theme->errors() ) |
| 229 | 229 | endif; |
| 230 | 230 | ?> |
| 231 | 231 | <ul role="tree" aria-labelledby="theme-files-label"> |
| 232 | | <li role="treeitem" tabindex="-1" aria-expanded="true" |
| 233 | | aria-level="1" |
| 234 | | aria-posinset="1" |
| 235 | | aria-setsize="1"> |
| 236 | | <ul role="group" style="padding-left: 0;"> |
| | 232 | <li role="treeitem" tabindex="-1" aria-expanded="true" aria-level="1" aria-posinset="1" aria-setsize="1"> |
| | 233 | <ul role="group"> |
| 237 | 234 | <?php wp_print_theme_file_tree( wp_make_theme_file_tree( $allowed_files ) ); ?> |
| 238 | 235 | </ul> |
| 239 | 236 | </li> |