Socket
Book a DemoInstallSign in
Socket

cssimportant-loader

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

cssimportant-loader

Webpack Css Loader to add !important to all styles

0.4.0
latest
Source
npmnpm
Version published
Weekly downloads
1.2K
1.65%
Maintainers
1
Weekly downloads
 
Created
Source

cssimportant-loader

npm version

Webpack CSS Loader to add !important to all styles.

While using !important is typically frowned upon there are times when it can be useful. When building widgets that will be embedded directly into third party websites (no iframe) the CSS rules in the host site may be unpredictable and cause CSS bleeding. Cleanslate CSS is an aggressive CSS reset that can be used for this exact situation, however to use it you need to add !important to all of your styles to properly override it's resets with your own styles.

This Webpack loader will add !important to all your styles so you can easily use Cleanslate, without having to manually add important everywhere.

Install

npm install cssimportant-loader --save-dev

Usage

webpack.config.js

module.exports = {
  module: {
    rules: [
      {
        test: /\.css$/,
        use: [ 'style-loader', 'css-loader', 'cssimportant-loader' ]
      }
    ]
  }
}

in your application

import css from 'file.css';

Example

given this CSS:

.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #EFEFEF;
}

will return this CSS:

.modal-bg {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  height: 100% !important;
  width: 100% !important;
  background: #EFEFEF !important;
}

Running Tests

npm run test

Keywords

Webpack

FAQs

Package last updated on 31 Jan 2017

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.