0

I have two .scss documents with the following sample code:

tables.scss:

@mixin ftable {
    table {
    font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
    font-size: 12px;
    margin: 45px;
    width: 480px;
    text-align: left;
    border-collapse: collapse;
    }
}

page.scss:

#projects-listing {
    @include ftable;
}

They are required in this order from application.scss:

 *= require ./tables
 *= require_tree ./partials

where the partials directory contains my page.scss file.

When I load the page, i'm getting an undefined mixin ftable exception.

4

1 に答える 1

1

Sass ミックスイン (コンパスを含む) を使用する場合@importは、マニフェスト スタイル関数ではなく、sass 関数を使用する必要がありrequireます。

代わりにこれを試してくださいapplication.css.scss:

@import 'tables'
@import 'page'
@import 'any other files you have'

順序は重要です。Mixin を使用するファイルの前に、Mixin を含むファイルを最初にインポートする必要があります。

于 2012-06-25T12:46:08.067 に答える