2013-12-08 3 views
0

다음 전환 코드가 있습니다. 브라우저가이를 무효가되도록SASS : 나침반이 내 코드를 올바르게 출력하지 못하고 있습니까?

-moz-transition: -moz-transform 0.5s ease-in-out box-shadow 0.5s ease-in-out; 
    -o-transition: -o-transform 0.5s ease-in-out box-shadow 0.5s ease-in-out; 
    -webkit-transition: -webkit-transform 0.5s ease-in-out box-shadow 0.5s ease-in-out; 
    transition: transform 0.5s ease-in-out box-shadow 0.5s ease-in-out; 

내가이 전환 사이에 쉼표를 잃었 :이 CSS로 뱉어됩니다

@include transition(transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out); 

는, 내가 좋아하는 뭔가를 얻을. 내가 잘못 했나요?

답변

0

이것은 컴퍼스 버그 인 것으로 보입니다. https://github.com/chriseppstein/compass/issues/1450

이며 GitHub에서 수정되었습니다.

저는 GitHub를 처음 사용합니다. Compass를 업데이트하려면 어떻게해야합니까?


확인 버전 https://rubygems.org/gems/compass

안정 나침반 나침반 업그레이드 :

gem update compass 

커팅 에지 나침반 :

gem uninstall compass 
gem install compass --pre 
+0

명령 줄에서; 'gem install compass-update' – agconti

+0

@agconti 오류가 있습니다. 유효한 보석 호출 "compass-update"가 없습니다 – Vennsoh

+1

사과드립니다. 시도해보십시오. 'gem update compass' – agconti