2013-08-22 82 views
0

框架:Ruby on Rails。Zurb基金會中的按鈕自定義

我插入此代碼到:foundation_and_overrides.scss

.button-facebook { 
    $bg: #000; 
    @include button($bg); 
} 

它給我這個錯誤:

Sass::SyntaxError at/Cannot add a number with units (0.0625em) to a color (#f1f1f1).

如何自定義ZURB的基金會$ BG變量?

回答

1

我假設這個問題是關於Zurb基金會4.

根據Zurb基金會4號文件, button()混入6個參數, 和按鈕的顏色是第二個參數。因此,你可以指定按鈕顏色如下:

@import "foundation/components/buttons"; 
.button-facebook{ 
    $bg: #000; 
    @include button($button-sml, $bg, false, false, false, false); 
} 

第一argment是按鈕的填充,可以使用$button-tny$button-sml$button-med$button-lrgemCalc(NNNpx),或什麼的。

看到Zurb基金會4號文件的更多詳細信息:

http://foundation.zurb.com/docs/components/buttons.html