Opened 8 years ago
Closed 7 years ago
#3041 closed defect (bug) (fixed)
Multiple time same media in the main.css
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | Developer Hub | Keywords: | has-patch |
Cc: |
Description
In the https://developer.wordpress.org/wp-content/themes/pub/wporg-developer/stylesheets/main.css style file, there is multiple time same media tag.
@media (min-width: 571px) { .single-command .btn-group > a:first-child { right: -6px; border-radius: 3px 0 0 3px; } } @media (min-width: 571px) { .single-command .btn-group > a:last-child { border-radius: 0 3px 3px 0; } }
After remove multiple @media:
@media (min-width: 571px) { .single-command .btn-group > a:first-child { right: -6px; border-radius: 3px 0 0 3px; } .single-command .btn-group > a:last-child { border-radius: 0 3px 3px 0; } }
Attachments (2)
Change History (5)
Note: See
TracTickets for help on using
tickets.
Attached patch. Check it.