0.4.1 • Published 3 months ago

postcss-overflow-clip v0.4.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

PostCSS Overflow Clip

PostCSS plugin that adds overflow: clip whenever overflow: hidden is used.

If you want fallbacks for overflow: clip, please use https://www.npmjs.com/package/postcss-overflow-fallbacks

.foo {
    overflow-x: clip;
}

.bar {
    overflow: auto hidden;
    overflow-block: hidden;
}

becomes

.foo {
    overflow-x: clip;
}

.bar {
    overflow: auto hidden;
    overflow: auto clip;
    overflow-block: hidden;
    overflow-block: clip;
}

With preserve: false:

.foo {
    overflow-x: clip;
}

.bar {
    overflow: auto hidden;
    overflow-block: hidden;
}

becomes

.foo {
    overflow-x: clip;
}

.bar {
    overflow: auto clip;
    overflow-block: clip;
}

Usage

Step 1: Install plugin:

npm install --save-dev postcss postcss-overflow-clip

Step 2: Check you project for existed PostCSS config: postcss.config.js in the project root, "postcss" section in package.json or postcss in bundle config.

If you do not use PostCSS, add it according to official docs and set this plugin in settings.

Step 3: Add the plugin to plugins list:

module.exports = {
  plugins: [
+   require('postcss-overflow-clip'),
  ]
}

Options

preserve (default: true) Fully replace hidden with clip without any fallback.

0.4.1

3 months ago

0.4.0

3 months ago

0.3.2

3 months ago

0.3.1

3 months ago

0.3.0

4 months ago

0.2.9

5 months ago

0.2.7

8 months ago

0.2.6

10 months ago

0.2.5

11 months ago

0.2.4

11 months ago

0.2.3

1 year ago

0.2.2

1 year ago

0.2.1

2 years ago

0.2.0

2 years ago

0.0.0

3 years ago