Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

stylecow-plugin-fixes

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stylecow-plugin-fixes

Stylecow plugin to fix automatically some css issues.

  • 2.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

stylecow plugin fixer

Stylecow plugin to fix automatically some browser issues:

  • Normalizes calc() function
  • Fix the old syntax of 'clip: rect()' in ie < 8
  • Fix the double margin bug in ie6 on float block elements
  • Adds support for min-height in ie<8
  • Adds support for opacity in ie<9
  • Adds support for ::after, ::before, ::first-line, ::first-letter in ie<9
  • Adds support for vmin in ie9
  • Adds support for display:inline-block in ie < 8
  • Adds support for break-before, break-after, break-inside in webkit
  • etc...

You write:

.foo {
    clip: rect(1, 2, 3, 4);
    min-height: 50px;
    width: 23vmin;
}

And stylecow converts to:

.foo {
    clip: rect(1, 2, 3, 4);
    *clip: rect(1 2 3 4);
    _height: 50px;
    min-height: 50px;
    width: 23vm;
    width: 23vmin;
}

FAQs

Package last updated on 27 Nov 2014

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