Skip to:
Content

BuddyPress.org

Changeset 10289


Ignore:
Timestamp:
10/20/2015 05:04:19 PM (8 years ago)
Author:
r-a-y
Message:

bp-legacy: Do not use overflow: hidden for #item-header DIV.

Fixes a potential issue with truncated content. To be extra safe, we're
clearing the #item-header DIV after it is rendered with the :after CSS
property.

Fixes #6672.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-legacy/css/buddypress.css

    r10254 r10289  
    11751175}
    11761176#buddypress div#item-header {
    1177     overflow: hidden;
    11781177    position: relative;
     1178}
     1179#buddypress #item-header:after {
     1180    clear: both;
     1181    content: "";
     1182    display: table;
    11791183}
    11801184#buddypress div#item-header div#item-header-content {
Note: See TracChangeset for help on using the changeset viewer.