Opened 8 years ago
Closed 8 years ago
#2319 closed defect (bug) (worksforme)
Scroll bar visible on plugin authors list
Reported by: | 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
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)
Note: See
TracTickets for help on using
tickets.
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.