2011-05-13 1 views
1

새 프로젝트를 설정하고 나침반을 사용하여 청사진 스타일 시트를 생성했습니다. 이제 내 화면에 다음 코드가 있습니다.레일상의 루비에서 작업 할 때 나침반의 청사진과 쉿 소리가 나기

body.bp { 
    @include blueprint-typography(true); 
    @include blueprint-utilities; 
    @include blueprint-debug; 
    @include blueprint-interaction; 

    $font-color: #C6C6C6; 
} 

내 문서의 글꼴은 변경되지 않습니다. 단지 color:#C6C6C6; 만 사용하면 문제가 없습니다. 내가

답변

4

$ 글꼴 색 여기에 놓치고은 변수가 아닌 색상 사양 자체가, 그래서 결과는 아래와 같습니다 :

$font-color: #C6C6C6; 

body.bp { 
    @include blueprint-typography(true); 
    @include blueprint-utilities; 
    @include blueprint-debug; 
    @include blueprint-interaction; 

    color: $font-color; 
} 
+0

D' 오! 감사... –