Make WordPress Core

Opened 5 years ago

Closed 4 years ago

#46454 closed defect (bug) (invalid)

Credits page: Some are overflowing from the content area

Reported by: ishitaka's profile ishitaka Owned by:
Milestone: Priority: normal
Severity: normal Version: 5.1
Component: Help/About Keywords: has-patch
Focuses: Cc:

Description

In Japanese Environment Chrome Browser, Credits page (credits.php) Core Contributors and External Libraries are overflowing from the content area.
I think that CSS needs.

p.wp-credits-list {
	word-break: break-word;
}

Attachments (1)

46454.diff (289 bytes) - added by mukesh27 5 years ago.
Patch.

Download all attachments as: .zip

Change History (7)

#1 @mukesh27
5 years ago

  • Keywords has-patch added

@ishitaka, Use the more compatible word-break: break-all;

@mukesh27
5 years ago

Patch.

#2 @williampatton
5 years ago

#46466 was marked as a duplicate.

#3 @junonet
5 years ago

I thought too.
However, in that way commas will come to the beginning of the sentence.
I think this way is better.

  .about-wrap p.wp-credits-list a{
      white-space: nowrap;
      display: inline-block;
  }

#4 @ishitaka
5 years ago

I think that word-break: break-word; is good except in Japanese.
I think that it is good to apply only Japanese.

.about-wrap p.wp-credits-list a:lang(ja) {
	display: inline-block;
}

#5 @ishitaka
4 years ago

  • Keywords close added

Chrome 76 is fine. Seems fixed.

#6 @desrosj
4 years ago

  • Keywords close removed
  • Milestone Awaiting Review deleted
  • Resolution set to invalid
  • Status changed from new to closed

Since it seems that an update to Chrome fixed this, I am going to close it out. @ishitaka if this comes back up for you, feel free to reopen.

Note: See TracTickets for help on using tickets.