[wp-trac] [WordPress Trac] #30075: Plugins Details Pushed Down, too many 9's in padding

WordPress Trac noreply at wordpress.org
Wed Oct 22 19:33:16 UTC 2014


#30075: Plugins Details Pushed Down, too many 9's in padding
--------------------------+-----------------------------
 Reporter:  AMEEKER       |      Owner:
     Type:  defect (bug)  |     Status:  new
 Priority:  normal        |  Milestone:  Awaiting Review
Component:  Plugins       |    Version:  4.0
 Severity:  normal        |   Keywords:
  Focuses:                |
--------------------------+-----------------------------
 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).

--
Ticket URL: <https://core.trac.wordpress.org/ticket/30075>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform


More information about the wp-trac mailing list