Make WordPress Core

Opened 9 years ago

Last modified 9 years ago

#30075 closed defect (bug)

Plugins Details Pushed Down, too many 9's in padding — at Initial Version

Reported by: ameeker's profile AMEEKER Owned by:
Milestone: Priority: normal
Severity: normal Version: 4.0
Component: Plugins Keywords:
Focuses: ui Cc:

Description

http://www.clipular.com/c/5101928486797312.png?k=1Phv3thYmoc5FMeWjKXbe0tSUQQ (Clicked on plugin name or More Details)

When I am on the Plugins screen and click on any plugin's name or more details, the screen which opens shows the content pushed way far down - below even the content of the sidebar.

I think

#plugin-information .fyi {
display: block;
float: right;
position: relative;
top: 0;
right: 0;
padding: 16px 16px 99999px;
margin-bottom: -99930px;
width: 217px;
border-left: 1px solid #ddd;
background: #f3f3f3;
color: #666;
}

should be

#plugin-information .fyi {
display: block;
float: right;
position: relative;
top: 0;
right: 0;
padding: 16px 16px 9999px;
margin-bottom: -99930px;
width: 217px;
border-left: 1px solid #ddd;
background: #f3f3f3;
color: #666;
}

(the padding having an extra 9 in the first, only four in the second).

Change History (0)

Note: See TracTickets for help on using tickets.