Make WordPress Core

Opened 17 years ago

Closed 17 years ago

#6164 closed enhancement (fixed)

Extend Clickable Area For Expanding/Collapsing Post Options

Reported by: ryanfitzer's profile ryanfitzer Owned by:
Milestone: 2.5 Priority: low
Severity: minor Version: 2.5
Component: Administration Keywords:
Focuses: Cc:

Description

The current implementation for expanding/contracting post options/advanced options gives the user a very small target. Allowing the user to click the entire h3 would be more user friendly.

Since I'm not sure how create a patch, the suggested code changes are below:

File: postbox.js line 2 changed to:

jQuery('.postbox h3').click( function() { jQuery(jQuery(this).parent().get(0)).toggleClass('closed'); save_postboxes_state(page); } );

File: wp-admin.css add rule under the rule on line 896:

.postbox h3 {
cursor:pointer;
}

Change History (2)

#1 @ffemtcj
17 years ago

  • Milestone changed from 2.5 to 2.6

#2 @ryan
17 years ago

  • Milestone changed from 2.6 to 2.5
  • Resolution set to fixed
  • Status changed from new to closed

Actually, this got fixed in another ticket. Let's just mark this one as fixed.

Note: See TracTickets for help on using tickets.