Skip to content

masaakim/postcss-important

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

postcss-important Build Status

PostCSS plugin for annotations based !important

Installation

$ npm install postcss-important

Example

// Dependencies
var fs = require('fs')
var postcss = require('postcss')
var important = require('postcss-important')

// CSS to be processed
var css = fs.readFileSync('input.css', 'utf-8')

// Process CSS
var output = postcss()
  .use(important(css))
  .process(css)
  .css

Using this input.css:

.foo {
  /* @important */
  font-size: 12px !important;
  color: red;
}

.bar {
  /*
   * @important color, padding
   */
  color: red;
  font-size: 12px;
  padding: 10px;
}

You will get:

.foo {
  /* @important */
  font-size: 12px !important;
  color: red !important;
}

.bar {
  /*
   * @important color, padding
   */
  color: red !important;
  font-size: 12px;
  padding: 10px !important;
}

License

The MIT License (MIT)

Copyright (c) 2014 Masaaki Morishita

About

PostCSS plugin for annotations based `!important`

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published