Compass / compass

Compass is no longer actively maintained. Compass is a Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain.
http://compass-style.org
Other
6.72k stars 1.18k forks source link

multiple transitions are missing "," in between #1450

Open JoernBerkefeld opened 10 years ago

JoernBerkefeld commented 10 years ago

seen in 0.13.alpha.10:

@include transition(opacity 0.5s ease, visibility 0.5s);

should output: transition: opacity 0.5s ease, visibility 0.5s; instead it outputs: transition: opacity 0.5s ease visibility 0.5s;

--> without the comma!

I omited the prefixed versions here but the problem is the same for those

JoernBerkefeld commented 10 years ago

ok, found the error:

replace $transitions-without-delays: (); $transitions-with-delays: ();

with $transitions-without-delays: comma-list(); $transitions-with-delays: comma-list(); in http://beta.compass-style.org/reference/compass/css3/transition/#mixin-transition

eikaramba commented 10 years ago

seems to be the same as https://github.com/chriseppstein/compass/issues/1446, so thx for finding a possible solution. will try it out and see in how far this also fixes issue 1446

Update: Great, seems to work. Just update the compass-0.13.alpha.10\frameworks\compass\stylesheets\compass\css3_transition.scss and change lines 126&127 like described above