Opened 9 years ago
Closed 9 years ago
#3041 closed defect (bug) (fixed)
Multiple time same media in the main.css
| Reported by: | sagarprajapati | Owned by: | coffee2code |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| 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.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Attached patch. Check it.