Make WordPress Core


Ignore:
Timestamp:
01/30/2016 01:45:37 PM (9 years ago)
Author:
afercia
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-posts-list-table.php

    r36334 r36422  
    14061406    ?>
    14071407
    1408             <div class="inline-edit-group">
     1408            <div class="inline-edit-group wp-clearfix">
    14091409                <label class="alignleft">
    14101410                    <span class="title"><?php _e( 'Password' ); ?></span>
     
    15381538        if ( $bulk ) : ?>
    15391539
    1540             <div class="inline-edit-group">
     1540            <div class="inline-edit-group wp-clearfix">
    15411541        <?php if ( post_type_supports( $screen->post_type, 'comments' ) ) : ?>
    15421542            <label class="alignleft">
     
    15621562    <?php else : // $bulk ?>
    15631563
    1564             <div class="inline-edit-group">
     1564            <div class="inline-edit-group wp-clearfix">
    15651565            <?php if ( post_type_supports( $screen->post_type, 'comments' ) ) : ?>
    15661566                <label class="alignleft">
     
    15791579    endif; // post_type_supports comments or pings ?>
    15801580
    1581             <div class="inline-edit-group">
     1581            <div class="inline-edit-group wp-clearfix">
    15821582                <label class="inline-edit-status alignleft">
    15831583                    <span class="title"><?php _e( 'Status' ); ?></span>
Note: See TracChangeset for help on using the changeset viewer.