Make WordPress Core

Opened 12 years ago

Closed 12 years ago

Last modified 12 years ago

#28049 closed defect (bug) (duplicate)

Audio Playlist Caption not respecting width - fix included

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

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
12 years ago

  • Milestone Awaiting Review
  • Resolutionduplicate
  • Status newclosed

Duplicate of #27923.

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

#2 @SergeyBiryukov
12 years ago

  • Component GeneralMedia
Note: See TracTickets for help on using tickets.