#18657 closed defect (bug) (fixed)

.postbox .hndle in backend needs border-radius

Reported by: Jick Owned by: azaozz
Priority: normal Milestone: 3.3
Component: Administration Version: 3.3
Severity: trivial Keywords:
Cc: Jick

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 21 months ago.
Comparison

Download all attachments as: .zip

Change History (3)

Jick21 months ago

Comparison

  • Milestone changed from Awaiting Review to 3.3
  • 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.