Making WordPress.org

Opened 8 years ago

Closed 8 years ago

#2319 closed defect (bug) (worksforme)

Scroll bar visible on plugin authors list

Reported by: xavortm's profile xavortm Owned by:
Milestone: Priority: normal
Component: Plugin Directory Keywords: has-screenshots needs-patch
Cc:

Description

Seen currently on https://wordpress.org/plugins/akismet/
Using Chrome Version 54.0.2840.98 (64-bit) on MBP 2015 running MacOS Sierra

Screenshot:
http://i.imgur.com/pK14ulV.png

Happens because of overflow: auto:
(inline styling in index:331)

div.plugin-contributor {
    overflow: auto;
    margin: 2px 0;
}

Changing overflow to hidden solves the problem or alternating it instead to:

min-height: 3em;
overflow: auto;

note - I noticed that this happens when you zoom out to something like 80%, it's how I view all sites in general. If this is not a problem maybe the ticket can be closed, though I believe the css there can be improved.

Change History (1)

#1 @coffee2code
8 years ago

  • Component changed from General to Plugin Directory
  • Resolution set to worksforme
  • Status changed from new to closed

Thanks for the report!

Since this ticket was made, the Plugin Directory theme was revamped and open sourced. This "Authors" widget is no longer present in this fashion and as such this is no longer an issue.

Note: See TracTickets for help on using tickets.