insert-rule
Insert rules into a stylesheet programatically with a simple API
Last updated 11 years ago by bevacqua .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install insert-rule 
SYNC missed versions from official npm registry.

insert-rule

Insert rules into a stylesheet programatically with a simple API

Install

Using Bower

bower install -S insert-rule

Using npm

npm install -S insert-rule

insertRule(selector, styles)

Applies the styles to the selector. The selector can be any CSS selector. That includes :after and :before, too. Styles can either be plain text or an object. Keys in camelCase get converted into css-case.

Example
insertRule('body:after', 'font-weight: bold;');
insertRule('body:after', {
  content: '"Ha-ha!"',
  display: 'block',
  fontSize: '16px'
});

You can also remove all of the previously inserted rules.

insertRule.clear()

Only those inserted by the insert-rule module will be affected.

insertRule.remove(selector)

Removes style rules that were created using exactly the provided selector.

insertRule.context(name)

You can create a "context" that's self-contained, where rules will be added to a different style element. In this case, clear() removes all of the rules in the given context, and .remove(selector) only removes those rules matching the selector from the current context.

var foo = insertRule.context('foo');
var bar = insertRule.context('bar');
foo('#foo', 'color:#f00');
bar.remove('#foo'); // nothing happens
foo.remove('#foo'); // rule gets removed!

This separation of concerns is most useful when using insert-rule in "small-module" type environments.

Example
insertRule.clear();

License

MIT

Current Tags

  • 2.1.0                                ...           latest (11 years ago)

6 Versions

  • 2.1.0                                ...           11 years ago
  • 2.0.0                                ...           12 years ago
  • 1.3.4                                ...           12 years ago
  • 1.3.3                                ...           12 years ago
  • 1.3.0                                ...           12 years ago
  • 1.0.0                                ...           12 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (0)
None
Dev Dependencies (13)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |