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/widgets.php

    r36368 r36422  
    456456    $split = ceil( $sidebars_count / 2 );
    457457} else {
    458     $single_sidebar_class = ' class="single-sidebar"';
     458    $single_sidebar_class = ' single-sidebar';
    459459}
    460460
    461461?>
    462462<div class="widget-liquid-right">
    463 <div id="widgets-right"<?php echo $single_sidebar_class; ?>>
     463<div id="widgets-right" class="wp-clearfix<?php echo $single_sidebar_class; ?>">
    464464<div class="sidebars-column-1">
    465465<?php
Note: See TracChangeset for help on using the changeset viewer.