Opened 2 months ago
Last modified 8 days ago
#7919 new defect (bug)
Pull Requests (0) Section Formatting Issue on Meta Trac
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | Trac | Keywords: | needs-testing has-screenshots has-patch |
Cc: |
Description
The "Pull Requests (0)" section on the Meta Trac ticket page is not displaying properly. The formatting appears misaligned or unclear, making it difficult to distinguish elements. The section should be structured more clearly to improve usability.
Steps to Reproduce
- Go to the WordPress Meta Trac ticket page.
- Scroll down to the Pull Requests (0) section.
- Observe that the text and layout are not properly formatted.
Improved CSS for Better Formatting
Your current CSS is applying styles to the last <div>
inside <li>
, ensuring it has white-space: nowrap;
and padding-right: 0;
. However, if the formatting is still not correct, you might need additional adjustments.
Try the following CSS improvements:
#github-prs ul.pull-requests li div:last-of-type { white-space: normal; padding-right: 0; }
Thank you...
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
Meta Trac ticket: https://meta.trac.wordpress.org/ticket/7919
This PR fixes the width issue in the Pull Request section when no pull requests are attached.
Before Fix:

After Fix:
