Opened 7 years ago
Closed 7 years ago
#2774 closed defect (bug) (fixed)
Plugin Details page tag section messup.
Reported by: | mp518 | Owned by: | Otto42 |
---|---|---|---|
Milestone: | Plugin Directory v3.0 | Priority: | normal |
Component: | Plugin Directory | Keywords: | has-patch |
Cc: |
Description (last modified by )
When user go plugin details page then if tag name string is like "banner-management-woocommerce-banner-management" this type that time tag design is messup.
Dif:
pub/wporg-plugins/css/style.css?ver=20170420b
.plugin-meta [rel=tag] { background: #eee; -webkit-border-radius: 2px; border-radius: 2px; color: #000; display: inline-block; font-size: 10.24px; font-size: .64rem; margin: 2px; padding: 3px 6px; position: relative; white-space: nowrap; width: auto; }
to correct below style
.plugin-meta [rel=tag] { background: #eee; -webkit-border-radius: 2px; border-radius: 2px; color: #000; display: inline-block; font-size: 10.24px; font-size: .64rem; margin: 2px; padding: 3px 6px; position: relative; width: auto; }
Attachments (4)
Change History (8)
#2
@
7 years ago
Removing white-space: nowrap
causes long tag names to wrap to several lines, see 2774.PNG.
Another option is to use text-overflow: ellipsis
, see 2774.patch and 2774.after.PNG.
Note: See
TracTickets for help on using
tickets.
Meshup