Opened 12 years ago
Closed 12 years ago
#30075 closed defect (bug) (duplicate)
Plugins Details Pushed Down, too many 9's in padding
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Severity: | normal | Version: | 4.0 |
| Component: | Plugins | Keywords: | |
| Focuses: | ui | Cc: |
Description (last modified by )
(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 (6)
This ticket was mentioned in IRC in #wordpress-dev by AMEEKER. View the logs.
12 years ago
#3
@
12 years ago
- Description modified (diff)
- Focuses ui added
Hi Angie,
Can you tell us what browser and operating system you're getting seeing this issue in?
#4
@
12 years ago
I'm using Win 8, Chrome 38.0 (the latest version), but I see it also on IE 11, and FF 26.
Note: See
TracTickets for help on using
tickets.
So I think it might be related to the notice that a plugin has not been tested with the latest version of WP. Taking out the clear: both at
.wrap div.error, .wrap div.updated { /* clear: both; */ }gets rid of it, too.
Robin Cornett helped me figure that out.