Detalhes do pacote

postcss-short

jonathantneal24.5kCC0-1.0depreciado5.0.0

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

Use advanced shorthand properties in CSS

postcss, css, postcss-plugin, shorthands

readme (leia-me)

PostCSS Short PostCSS

NPM Version Build Status Support Chat

PostCSS Short lets you use advanced shorthand properties in CSS.

PostCSS Short has been featured in Smashing Magazine. I hope all of these shorthands are useful and clear to first-time lookers. I hope they improve the readability of your stylesheets and save you development time along the way. Thank you so much for your support.

Features

Size

Declare width and height together with size.

/* before */

.icon {
  size: 48px;
}

/* after */

.icon {
  width: 48px;
  height: 48px;
}

Margin and Padding

Avoid clobbering previous margin or padding values with a skip token.

/* before */

.frame {
  margin: * auto;
}

/* after */

.frame {
  margin-right: auto;
  margin-left: auto;
}

Position

Declare top, right, bottom, and left values in position. Just like before, omit sides with a skip token.

/* before */

.banner {
  position: fixed 0 0 *;
}

/* after */

.banner {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

Color

Declare color and background-color together.

/* before */

.canvas {
  color: #abccfc #212231;
}

/* after */

.canvas {
  color: #abccfc;
  background-color: #212231;
}

Overflow

Declare individual x and y values in overflow. Omit sides with a skip token.

/* before */

.scrollable {
  overflow: * auto;
}

/* after */

.scrollable {
  overflow-y: auto;
}

Border

Omit sides within border- properties and fully define individual values on the border property.

/* before */

.container {
  border: 1px 2px / * / #343434;
}

.container--variation {
  border-width: * * 3px;
}

/* after */

.container {
  border-width: 1px 2px;
  border-color: #343434;
}

.container--variation {
  border-bottom-width: 3px;
}

Border Radius

Declare border-radius properties using the clockwise syntax.

/* before */

.container {
  border-bottom-radius: 10px;
}

/* after */

.container {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

Font Size

Declare font-size and line-height together.

/* before */

.heading {
  font-size: 1.25em / 2;
}

/* after */

.heading {
  font-size: 1.25em;
  line-height: 2;
}

Font Weight

Declare font-weight with common names.

/* before */

p {
  font-weight: light;
}

/* after */

p {
  font-weight: 300;
}

Usage

Add PostCSS Short to your project:

npm install postcss-short --save-dev

Use PostCSS Short to process your CSS:

const postcssShort = require('postcss-short');

postcssShort.process(YOUR_CSS /*, processOptions, pluginOptions */);

Or use it as a PostCSS plugin:

const postcss = require('postcss');
const postcssShort = require('postcss-short');

postcss([
  postcssShort(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);

PostCSS Short runs in all Node environments, with special instructions for:

Node PostCSS CLI Webpack Create React App Gulp Grunt

Plugins

PostCSS Short is powered by the following plugins:

Some of these plugins have more features than are described here.

Options

features

Each plugin’s options may be configured by targeting the plugin’s namespace. Any plugin may be disabled by setting the plugin’s options as false.

postcssShort({
  features: {
    'font-size': {
      prefix: 'x'
    },
    'position': false
  }
});

prefix

The prefix option defines a prefix required by properties being transformed. Wrapping dashes are automatically applied, so that x would transform -x-border.

postcssShort({ prefix: 'x' });
.example-1 {
  -x-border-color: blue blue *;
  -x-color: * #fafafa;
}

/* becomes */

.example-1 {
  border-top-color: blue;
  border-right-color: blue;
  border-left-color: blue;
  background-color: #fafafa;
}

skip

The skip option defines the skip token used to ignore portions of the shorthand.

postcssShort({ skip: '-' });
.example-1 {
  border-color: blue blue -;
  color: - #fafafa;
}

/* becomes */

.example-1 {
  border-top-color: blue;
  border-right-color: blue;
  border-left-color: blue;
  background-color: #fafafa;
}

changelog (log de mudanças)

Changes to PostCSS Short

5.0.0 (October 10, 2018)

  • Added: Support for PostCSS 7, Node 6
  • Added: Support for prefix and skip option
  • Changed: Features are controlled via features option

4.1.0 (May 28, 2017)

  • Added: PostCSS Overflow

4.0.0 (May 25, 2017)

  • Added: Support for PostCSS 6, Node 4
  • Removed: echint and jscs devDependencies
  • Updated: 2 spaces in Markdown
  • Updated: dependencies

3.0.3 (January 2, 2017)

  • Added: Runkit example

3.0.2 (January 2, 2017)

  • Updated: Require all plugins from start
  • Updated: Override plugin#process

3.0.1 (December 14, 2016)

  • Updated: Plugins

3.0.0 (December 6, 2016)

  • Added: A test for a disabled plugin
  • Updated: Only use plugins on demand
  • Updated: boilerplate conventions (Node v6.9.1 LTS)

2.0.1 (October 5, 2016)

Updated: postcss-short-border-radius package

2.0.0 (October 3, 2016)

Added: Use shorthand border-radius properties Updated: Shorthand font property divider is now / Updated: Documentation, and Tests

1.4.0 (December 8, 2015)

Added: Use shorthand data attributes [-name] Added: Use common font-weight names Updated: Documentation, and Tests

1.3.1 (September 30, 2015)

Updated: Documentation

1.3.0 (September 30, 2015)

Added: Short Border 1.0.0 Updated: Improved how options are assigned

1.2.0 (September 30, 2015)

Added: Short Color 1.0.0 Updated: Short Font-Size 1.0.1 (patch) Updated: PostCSS 5.0.8 (patch) Updated: Documentation

1.1.1 (September 22, 2015)

Updated: Documentation

1.1.0 (September 22, 2015)

  • Updated: Shorthand Text plugin

1.0.1 (September 22, 2015)

  • Updated: Documentation

1.0.0 (September 21, 2015)

  • Changed: Refactored as plugin pack
  • Changed: Switched to PostCSS 5 API

0.3.0 (July 3, 2015)

  • Added: .process method
  • Added: text-spacing shorthand
  • Added: Tests
  • Added: Documentation

0.2.2 (July 3, 2015)

  • Added: Code commenting
  • Changed: Tests

0.2.1 (July 3, 2015)

  • Added: Tests
  • Added: Support for CSS var values
  • Changed: Code refactoring
  • Removed: Unused CSS naming libraries

0.2.0 (June 29, 2015)

  • Added: Allowance or denial of individual properties from being processed.
  • Added: Prefixing of individual properties.
  • Removed: Pseudo-classes. Now use postcss-pseudo-class-enter

0.1.0 (May 27, 2015)

  • Added: Initial release