Opened 7 years ago
Closed 6 years ago
#46454 closed defect (bug) (invalid)
Credits page: Some are overflowing from the content area
| Reported by: |
|
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)
Change History (7)
#3
@
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;
}
Note: See
TracTickets for help on using
tickets.
@ishitaka, Use the more compatible
word-break: break-all;