0.1.1 • Published 8 years ago

postcss-matter v0.1.1

Weekly downloads
8
License
MIT
Repository
github
Last release
8 years ago

postcss-matter

npm version Build Status XO code style


Install

npm i postcss-matter

Usage

Define matters using the @matter atrule.
Then use they.

@matter {
  common {
    -webkit-tap-highlight-color: #fff;
  }

  default-a {
    matter: common;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
  }
}

@matter namespace {
  default-input {
    box-sizing: border-box;
    border: 1px solid #333;
  }
}

a.that {
  matter: default-a;
}

a.this {
  matter: default-a;
}

.input {
  matter: namespace-default-input;
}

.btn {
  matter: default-button;
}

.btn--small {
  matter: default-button;
  font-size: .85em;
}

@matter {
  default-button {
    padding: .5em 1em;
    background: #e42829;
  }
}

Transform

const fs = require('fs');
const postcss = require('postcss');
const matter = require('postcss-matter'):
const beautify = require('cssbeautify');

const css = fs.readFileSync('./sample.css', 'utf-8');

postcss([matter])
  .process(css)
  .then(result => console.log(beautify(result.css, {indent: '  '})));

Output

like this.

a.that,
a.this {
  -webkit-tap-highlight-color: #fff;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.input {
  box-sizing: border-box;
  border: 1px solid #333;
}

.btn {
  padding: .5em 1em;
  background: #e42829;
}

.btn--small {
  padding: .5em 1em;
  background: #e42829;
  font-size: .85em;
}

Syntax

AtRule

@matter <namespace-name> {
  <matter-name> {
    declaration;
    ...
  }
  (<matter-name> {...})
  (<matter-name> {...})
}

Declaration

<selector> {
  matter: <defined matter-name>;
}

Options

  • isolateLength
    For example,

    @matter {
      that {
        color: #000;
        font-size: 15px;
        line-height: 1.7;
      }
    }
    .a {
      matter: that;
    }
    .b {
      matter: that;
    }

    That's now isolateLength: 3, you will get this.

    .a,
    .b {
      color: #000;
      font-size: 15px;
      line-height: 1.7
    }

    When that's isolateLength: 4, get it.

    .a {
      color: #000;
      font-size: 15px;
      line-height: 1.7;
    }
    
    .b {
      color: #000;
      font-size: 15px;
      line-height: 1.7;
    }

    3 by default.

Run to example

1 Clone this

git clone git@github.com:totora0155/postcss-matter.git

2 Change directory

cd postcss-matter

3 Install modules

npm install

4 Run to script

cd examples && node postcss.js

Change log

versionlog
0.1.1Change output. result.warn -> console.log
0.1.0Use a matter from a matter
0.0.4Bugfix for filter
0.0.3Bugfix when a matter unused
0.0.2Fix bug
0.0.1Release!
0.1.1

8 years ago

0.1.0

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago