zmoazeni / csscss

A CSS redundancy analyzer that analyzes redundancy.
http://zmoazeni.github.io/csscss/
MIT License
2.92k stars 151 forks source link

csscss splits shorthand rules into separate rules #77

Closed timeinfeldt closed 11 years ago

timeinfeldt commented 11 years ago

Hi,

when parsing:

border: 1px solid $grey5;

Csscss throws a notice like:

... share x rules
  - border-bottom: 1px solid #cccccc
  - border-left-style: solid
  - border-left-width: 1px
  - border-right-style: solid
  - border-right-width: 1px
  - border-top-style: solid
  - border-top-width: 1px

This happens for .css and .scss files.

zmoazeni commented 11 years ago

See #74