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

Compass > 0.13.alpha.4 screws up Transitions #1446

Open pyronaur opened 10 years ago

pyronaur commented 10 years ago

Sass:

.js__trans
    +transition(transform 400ms cubic-bezier(.01,.99,.62,.91), opacity 300ms cubic-bezier(.01,.99,.62,.91))

Compass 0.13.alpha.4: ( as I expect it to be )

.js__trans {
  -webkit-transition: -webkit-transform 400ms cubic-bezier(0.01, 0.99, 0.62, 0.91), opacity 300ms cubic-bezier(0.01, 0.99, 0.62, 0.91);
  -moz-transition: -moz-transform 400ms cubic-bezier(0.01, 0.99, 0.62, 0.91), opacity 300ms cubic-bezier(0.01, 0.99, 0.62, 0.91);
  -o-transition: -o-transform 400ms cubic-bezier(0.01, 0.99, 0.62, 0.91), opacity 300ms cubic-bezier(0.01, 0.99, 0.62, 0.91);
  transition: transform 400ms cubic-bezier(0.01, 0.99, 0.62, 0.91), opacity 300ms cubic-bezier(0.01, 0.99, 0.62, 0.91); }

Compass 0.13.alpha.10

.js__trans {
  -moz-transition: -moz-transform 400ms cubic-bezier(0.01, 0.99, 0.62, 0.91) opacity 300ms cubic-bezier(0.01, 0.99, 0.62, 0.91);
  -o-transition: -o-transform 400ms cubic-bezier(0.01, 0.99, 0.62, 0.91) opacity 300ms cubic-bezier(0.01, 0.99, 0.62, 0.91);
  -webkit-transition: -webkit-transform 400ms cubic-bezier(0.01, 0.99, 0.62, 0.91) opacity 300ms cubic-bezier(0.01, 0.99, 0.62, 0.91);
  transition: transform 400ms cubic-bezier(0.01, 0.99, 0.62, 0.91) opacity 300ms cubic-bezier(0.01, 0.99, 0.62, 0.91); }
Anahkiasen commented 10 years ago

...I don't see any difference, what's wrong with the current one ? EDIT: Oh wait, the missing comma between the transitions, got it.

eikaramba commented 10 years ago

Yes i can confirm this(was actually searching if someone else has the problem). Multiple transitions cannot be seperated by commas, or more accurate, compass removes the commas.

scottdavis commented 10 years ago

@chriseppstein can we close this now that its merged?

vorlox commented 10 years ago

I have the same bug atm :(

mh-nichts commented 9 years ago

I experience the same problem : missing comma between mutiple transitions (compass 1.0.0.alpha.13). Is there any manipulation/update I should do to have the fix ? Thanks in advance.

cimmanon commented 9 years ago

@mh-nichts If you're still having problems, you need to make sure you're using the most recent version of Compass. The most recent stable version is 1.0.3, and the most recent edge version is 1.1.0.alpha.3.

mh-nichts commented 9 years ago

thank you, it's now solved with the new version.