New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

style-bridge

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

style-bridge

Javascript based CSS library

  • 1.0.13
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

style-bridge

NPM Version Build Status

Basic Usage

import StyleBridge from 'style-bridge';

const bridge = new StyleBridge('my-stylesheet-selector', {
    desktop: [null],
    tablet: ['screen and (max-width: 991px)'],
    ...
});

To use StyleBrige, you will primarily use the StyleBridge constructor. Pass the constructor a selector expression and an object consisting of the media-queries that you want to have parsed.

Nothing hapens until the parse method will be called. This let's the you decide when to (re-)parse the document or when.

new StyleBridge(..., { ... }).parse();

Interacting with selectors

Settings a css property
bridge.select('.my-element', 'desktop').set('background-color', 'red');
Remove a property
bridge.select('.my-element', 'desktop').remove('background-color');
Removing all properties
brige.select('.my-element').remove();

Exporting to object

bridge.toObject();
// {
//     mediaqueries: {
//         desktop: '',
//         tablet: 'screen and (max-width: 991px)'
//     },
//     rules: {
//         desktop: {
//             body: {
//                 'background-color': 'red',
//                 'margin-top': '0px'
//             },
//         },
//         tablet: { ... }
//     }
// }

Contributing

Have a bug? Please create an issue here on GitHub that conforms with our contributing guidelines. You can also browse the Help Wanted tag in our issue tracker to find things to do.

Security

If you discover a security vulnerability within this package, please send an e-mail directly to the Centagon Developers at developers@centagon.com. All security vulnerabilities will be promptly addressed.

License

This package is available under the MIT license.

Copyright (c) 2018 Centagon, B.V.

Keywords

FAQs

Package last updated on 17 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc