Opened 9 years ago
Closed 5 years ago
#37582 closed defect (bug) (invalid)
long page title issue in drop down list setting>reading page
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 4.5.3 |
Component: | Administration | Keywords: | has-screenshots needs-patch |
Focuses: | ui, administration | Cc: |
Description
it breaks the limit of dropdown select box in Settings > Reading Settings page, if there is long page title .
Attachments (3)
Change History (7)
#4
@
5 years ago
- Component changed from General to Administration
- Resolution set to invalid
- Status changed from new to closed
It looks like in the latest version of WP (5.5 at the time of this comment), a really long page title will cause a wide dropdown menu, but it's limited to the width of the window and is abbreviated with an ellipsis. The select element is also limited with a max-width: 25rem
.
I'm going to close this one out because I can't reproduce the original issue. If someone is still able to reproduce, feel free to reopen this with more details to reproduce.
Note: See
TracTickets for help on using
tickets.
This can be handled with the following code:
select { width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
Not sure where/how to implement, would this be limited to
select
?