matype / stylefmt

stylefmt is a tool that automatically formats stylesheets.
Other
2.1k stars 89 forks source link

Partial fix https://github.com/morishitter/stylefmt/issues/86 #319

Closed ghost closed 7 years ago

ghost commented 7 years ago

Now when css contain new lines in decl value, stylefmt only format and collaps spaces, but keep new lines

Example:

.test {
  font: 'italic small-caps bold 12px arial, sans-serif',14px;

  background: red,
   green , yellow;
  background-color:
    rgba(0, 0, 0, .4),

       rgba(0, 0, 0, 0);
}

And there result is:

.test {
  font: 'italic small-caps bold 12px arial, sans-serif',14px;
  background: red,
    green, yellow;
  background-color:
    rgba(0, 0, 0, .4),
    rgba(0, 0, 0, 0);
}