[wp-trac] [WordPress Trac] #47673: Plugin overview More Details is broken

WordPress Trac noreply at wordpress.org
Wed Jul 10 13:10:23 UTC 2019


#47673: Plugin overview More Details is broken
--------------------------+-----------------------------
 Reporter:  remzicavdar   |      Owner:  (none)
     Type:  defect (bug)  |     Status:  new
 Priority:  normal        |  Milestone:  Awaiting Review
Component:  General       |    Version:  5.2.2
 Severity:  normal        |   Keywords:
  Focuses:                |
--------------------------+-----------------------------
 If you click on the link More Details on a plugin the styling is weird.
 The left content section is way down (this happens in every tab, in the
 installed plugins overview and in the Add Plugins overview).

 It seems like there is something wrong with:
 {{{
 <div id="section-holder" class="wrap"></div>
 }}}

 I have a quick fix, if I comment out clear both this seems to be fixed.
 Could someone verify this?

 {{{
 @media screen and (max-width: 782px)
 .wrap {
     /* clear: both; */
 }
 }}}

 Proposed fix:

 {{{
 #plugin-information-content::after {
     clear: both;
 }
 }}}

 Or

 {{{
 #section-holder::after {
     clear: both;
 }
 }}}

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


More information about the wp-trac mailing list