Make WordPress Core

Opened 7 years ago

Closed 7 years ago

#46454 closed defect (bug) (invalid)

Credits page: Some are overflowing from the content area

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

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 7 years ago.
Patch.

Download all attachments as: .zip

Change History (7)

#1 @mukesh27
7 years ago

  • Keywords has-patch added

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

@mukesh27
7 years ago

Patch.

#2 @williampatton
7 years ago

#46466 was marked as a duplicate.

#3 @junonet
7 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
7 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
7 years ago

  • Keywords close added

Chrome 76 is fine. Seems fixed.

#6 @desrosj
7 years ago

  • Keywords close removed
  • Milestone Awaiting Review
  • Resolutioninvalid
  • Status newclosed

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.