Make WordPress Core

Opened 11 years ago

Closed 11 years ago

Last modified 11 years ago

#28049 closed defect (bug) (duplicate)

Audio Playlist Caption not respecting width - fix included

Reported by: stevenjaycohen's profile stevenjaycohen Owned by:
Milestone: Priority: normal
Severity: normal Version: 3.9
Component: Media Keywords:
Focuses: Cc:

Description

The new Audio Playlist does not respect its text-overflow declaration because it is missing a declaration (see below).

CSS included in v3.9:

.wp-playlist-caption {
 max-width: 88%;
 overflow: hidden;
 text-overflow: ellipsis;
 white-space: nowrap;
 font-size: 14px;
 line-height: 1.5;
}

Please add the following:

.wp-playlist-caption {
	display: inline-block;
}

Change History (2)

#1 @wonderboymusic
11 years ago

  • Milestone Awaiting Review deleted
  • Resolution set to duplicate
  • Status changed from new to closed

Duplicate of #27923.

Thanks for the report! Already fixed in trunk with [28172], [28174]. Will go out with 3.9.1

#2 @SergeyBiryukov
11 years ago

  • Component changed from General to Media
Note: See TracTickets for help on using tickets.