You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After [36171] remove all the occurrences of the old CSS clearfix.
The old clearfix was applied to very specific items and defined multiple times
across CSS files. Uses the new generic `.wp-clearfix` utility class instead.
See #26396.
git-svn-id: https://develop.svn.wordpress.org/trunk@36422 602fd350-edb4-49c9-b593-d223f7449a82
Copy file name to clipboardExpand all lines: src/wp-admin/customize.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -127,7 +127,7 @@
127
127
</a>
128
128
</div>
129
129
130
-
<div id="widgets-right"><!-- For Widget Customizer, many widgets try to look for instances under div#widgets-right, so we have to add that ID to a container div in the Customizer for compat -->
130
+
<div id="widgets-right" class="wp-clearfix"><!-- For Widget Customizer, many widgets try to look for instances under div#widgets-right, so we have to add that ID to a container div in the Customizer for compat -->
@@ -757,7 +757,7 @@ function wp_nav_menu_max_depth( $classes ) {
757
757
</div><!-- END .major-publishing-actions -->
758
758
</div><!-- END .nav-menu-header -->
759
759
<div id="post-body">
760
-
<div id="post-body-content">
760
+
<div id="post-body-content" class="wp-clearfix">
761
761
<?phpif ( ! $add_new_screen ) : ?>
762
762
<h3><?php_e( 'Menu Structure' ); ?></h3>
763
763
<?php$starter_copy = ( $one_theme_location_no_menus ) ? __( 'Edit your default menu by adding or removing items. Drag each item into the order you prefer. Click Create Menu to save your changes.' ) : __( 'Drag each item into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options.' ); ?>
@@ -822,7 +822,7 @@ function wp_nav_menu_max_depth( $classes ) {
0 commit comments