File Editor: Move inline to external style to fix extra padding in RTL page direction.
Props afercia. Fixes #42221. Built from https://develop.svn.wordpress.org/trunk@41865 git-svn-id: http://core.svn.wordpress.org/trunk@41699 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
191beede5e
commit
ad8c9f0170
|
@ -3058,6 +3058,9 @@ img {
|
|||
#templateside ul ul {
|
||||
padding-right: 12px;
|
||||
}
|
||||
#templateside > ul > li > ul[role=group] {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Styles for Theme and Plugin editors.
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,9 @@ img {
|
|||
#templateside ul ul {
|
||||
padding-left: 12px;
|
||||
}
|
||||
#templateside > ul > li > ul[role=group] {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Styles for Theme and Plugin editors.
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -242,11 +242,8 @@ if ( 'POST' === $_SERVER['REQUEST_METHOD'] ) {
|
|||
}
|
||||
?>
|
||||
<ul role="tree" aria-labelledby="plugin-files-label">
|
||||
<li role="treeitem" tabindex="-1" aria-expanded="true"
|
||||
aria-level="1"
|
||||
aria-posinset="1"
|
||||
aria-setsize="1">
|
||||
<ul role="group" style="padding-left: 0;">
|
||||
<li role="treeitem" tabindex="-1" aria-expanded="true" aria-level="1" aria-posinset="1" aria-setsize="1">
|
||||
<ul role="group">
|
||||
<?php wp_print_plugin_file_tree( wp_make_plugin_file_tree( $plugin_editable_files ) ); ?>
|
||||
</ul>
|
||||
</ul>
|
||||
|
|
|
@ -229,11 +229,8 @@ if ( $theme->errors() )
|
|||
endif;
|
||||
?>
|
||||
<ul role="tree" aria-labelledby="theme-files-label">
|
||||
<li role="treeitem" tabindex="-1" aria-expanded="true"
|
||||
aria-level="1"
|
||||
aria-posinset="1"
|
||||
aria-setsize="1">
|
||||
<ul role="group" style="padding-left: 0;">
|
||||
<li role="treeitem" tabindex="-1" aria-expanded="true" aria-level="1" aria-posinset="1" aria-setsize="1">
|
||||
<ul role="group">
|
||||
<?php wp_print_theme_file_tree( wp_make_theme_file_tree( $allowed_files ) ); ?>
|
||||
</ul>
|
||||
</li>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.9-beta2-41864';
|
||||
$wp_version = '4.9-beta2-41865';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue