[wp-meta] [Making WordPress.org] #3041: Multiple time same media in the main.css
Making WordPress.org
noreply at wordpress.org
Sat Aug 12 06:49:10 UTC 2017
#3041: Multiple time same media in the main.css
----------------------------+-----------------
Reporter: sagarprajapati | Owner:
Type: defect | Status: new
Priority: normal | Milestone:
Component: Developer Hub | Keywords:
----------------------------+-----------------
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;
}
}
}}}
--
Ticket URL: <https://meta.trac.wordpress.org/ticket/3041>
Making WordPress.org <https://meta.trac.wordpress.org/>
Making WordPress.org
More information about the wp-meta
mailing list