vaadin / sass-compiler

A Java Sass compiler implementation
53 stars 26 forks source link

Sass compiler handles adjust-hue() incorrectly #218

Open vaadin-bot opened 10 years ago

vaadin-bot commented 10 years ago

Originally by @hesara


Extracted from #12757:

The following scss does not compile correctly:

.foo {
c1: adjust-hue(hsl(10,20,30),10);
c2: hsl(10,20,30);
c3: adjust-hue(hsl(10,20,30),-10);
c4: adjust-hue(#5c423d,10);
}

The expected output produced by sass-lang:

.foo {
  c1: #5c473d;
  c2: #5c423d;
  c3: #5c3d3d;
  c4: #5c473d;
}

Imported from https://dev.vaadin.com/ issue #13982

vaadin-bot commented 9 years ago

Originally by @Legioth


Hi, this ticket has been in the accepted state without any updates for a long time. Is someone still working on this?

If not, then please select "no longer working on this" in the Actions box below so that anyone else interested in investigating can know there's nobody else working on it.