Ticket #6264 (closed defect: fixed)

Opened 8 months ago

Last modified 8 months ago

Alternate highlighting doesn't extend all way down a list of posts

Reported by: johnhennmacc Assigned to: anonymous
Priority: normal Milestone: 2.5
Component: Administration Version: 2.5
Severity: normal Keywords:
Cc:

Description

20 posts at a time are now listed on the Manage Posts page rather than 16 as before and The result is that the alternation of row background colours only extends part way down the table (a darker background makes it more obvious).

One way to fix it is to change line 27 in wp-admin/edit-post-rows from the following:

$class = ( $i_post > 15 'alternate' == $class) ? : 'alternate';

to:

$class = ( $i_post > 19 'alternate' == $class) ? : 'alternate';

Attachments

6264.diff (2.8 kB) - added by mdawaffe on 03/17/08 22:59:09.

Change History

03/17/08 22:17:47 changed by ryan

This is left over from the continuous editing feature that no longer applies. I'll change to query 15 posts and get rid of the no longer needed add-post AJAX action.

03/17/08 22:18:33 changed by ryan

  • status changed from new to closed.
  • resolution set to fixed.

(In [7352]) Display 15 posts. Remove no longer needed add-post AJAX action. Props johnhennmacc. fixes #6264

03/17/08 22:58:57 changed by mdawaffe

  • status changed from closed to reopened.
  • resolution deleted.

6264.diff removes some other remnants of the old infinite posts feature.

03/17/08 22:59:09 changed by mdawaffe

  • attachment 6264.diff added.

03/17/08 23:02:13 changed by ryan

  • status changed from reopened to closed.
  • resolution set to fixed.

(In [7359]) Remove remnants of infinite posts features. Props mdawaffe. fixes #6264