Skip to:
Content

bbPress.org

Opened 6 weeks ago

Last modified 5 weeks ago

#3629 new defect (bug)

Item per page filter section not displayed properly on Ticket Listing Page

Reported by: nikunj8866's profile nikunj8866 Owned by:
Milestone: bbPress.org Priority: normal
Severity: normal Version:
Component: Site - bbPress.org Keywords:
Cc:

Description

The "Items per page" filter section is not displayed properly on the Ticket Listing page.

Steps to reproduce:

  1. Go to bbPressTrac.
  2. Click on the View Tickets tab.
  3. Click on any report link (e.g., Active Tickets).
  4. Observe that the Items per page filter section UI is not displayed properly. It should be aligned correctly.

Expected behavior:

The Items per page filter section should be displayed properly and aligned correctly for better user experience.

Actual behavior:

The UI of the Items per page filter section is misaligned or not displayed as expected.

Attachments (1)

bbress-tickets-listing-filter-ui-issue.png (21.1 KB) - added by nikunj8866 6 weeks ago.

Download all attachments as: .zip

Change History (3)

#2 @mideastjim
5 weeks ago

The user identified a UI misalignment in the "Items per page" filter section within bbPress Trac. Their proposed CSS changes aim to correct the layout by adjusting margins, alignment, and element positioning. Here's a breakdown of the key adjustments:

Css Code:

table.listing th.desc a:after {
	padding-right: 4px;
	background: none;
	border: none;
	text-align: right;
}

Margin Realignment
Changed margin: -20px 0 2px 10px; → margin: -20px 10px 2px 0;

Shifts the component to the right by applying a right margin instead of a left margin.

Right Alignment
Added text-align: right;

Ensures child elements (like the dropdown/label) align to the container's right edge.

Float Removal
Replaced float: right; with display: inline;

Avoids float-related layout issues (e.g., container collapse) while keeping elements inline.

Padding Adjustment
Removed padding-right: 4px;

Prevents unnecessary spacing on the right, allowing tighter alignment.


Result: These changes collectively right-align the filter section properly. The adjustments address margin directionality, use text alignment for child elements, and simplify layout handling by avoiding floats. This should resolve the reported misalignment issue.

Look After fixed:
[https://private-user-images.githubusercontent.com/24288574/429447509-fa450951-3042-47a1-9871-2ae394b9b664.png
]

Last edited 5 weeks ago by mideastjim (previous) (diff)
Note: See TracTickets for help on using tickets.