Make WordPress Core

Opened 13 years ago

Closed 13 years ago

#18657 closed defect (bug) (fixed)

.postbox .hndle in backend needs border-radius

Reported by: jick's profile Jick Owned by: azaozz's profile azaozz
Milestone: 3.3 Priority: normal
Severity: trivial Version: 3.3
Component: Administration Keywords:
Focuses: Cc:

Description

.postbox div's in the backend have border-radius: 3px but the .postbox .hndle h3's do not. This results in a slight visual problem. The background of the .postbox .hndle h3's spill outside of the radius of the parent .postbox div's.

I have attached a screenshot comparison. It's not easy to see on the default grey scheme but it seems more apparent on the blue scheme. You should be able to test for yourself.

More specifically, I think the .postbox .hndle h3's need this:

.postbox .hndle {
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	-khtml-border-top-left-radius: 3px;
	-khtml-border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

I would have attached a patch but I'm not sure of the current state of the admin CSS. Like, I'm not sure exactly where this code goes.

Attachments (1)

screenshot.png (10.3 KB) - added by Jick 13 years ago.
Comparison

Download all attachments as: .zip

Change History (3)

@Jick
13 years ago

Comparison

#1 @azaozz
13 years ago

  • Milestone changed from Awaiting Review to 3.3

#2 @azaozz
13 years ago

  • Owner set to azaozz
  • Resolution set to fixed
  • Status changed from new to closed

In [18773]:

Add border radius to .postbox .hndle, props Jick, fixes #18657

Note: See TracTickets for help on using tickets.