0.0.1 • Published 8 years ago

postcss-media-queries-drop-redundant v0.0.1

Weekly downloads
2
License
MIT
Repository
-
Last release
8 years ago

PostCSS Media Queries drop redundant

PostCSS plugin to delete redundant media query declarations

/* Input example */
@media (min-width: 300px) {
    .foo {
        color: red;
    }
}

@media (min-width: 500px) {
    .foo {
        color: red;
        padding: 10px;
    }
}

@media (max-width: 1200px) {
    .foo {
        color: blue;
        height: 100px;
    }
}

@media (max-width: 900px) {
    .foo {
        color: red;
        height: 100px;
    }
}
/* Output example */
@media (min-width: 300px) {
    .foo {
        color: red;
    }
}

@media (min-width: 500px) {
    .foo {
        padding: 10px;
    }
}

@media (max-width: 1200px) {
    .foo {
        color: blue;
        height: 100px;
    }
}

@media (max-width: 900px) {
    .foo {
        color: red;
    }
}

Usage

var mqdr = require('postcss-media-queries-drop-redundant');
postcss([mqdr])

See PostCSS docs for examples for your environment.