2

这就是我的app.scss 的样子:

@import "variables";
@import "bootstrap";
@import "animate/animate";
@import "font-awesome/font-awesome";
@import "style";

这就是我的目录结构的样子。

Resources
    └── assets
        ├── js
        └── sass
            ├── animate
            │   ├── animations
            │   │   ├── attention-seekers
            │   │   ├── zoom-enter
            │   │   └── zoom-exit
            │   └── helpers
            ├── bootstrap
            ├── _bootstrap-compass.scss
            ├── _bootstrap-mincer.scss
            ├── _bootstrap-sprockets.scss
            ├── _bootstrap.scss
            └── bootstrap
                ├── _alerts.scss
                ├── _badges.scss
                ├── _breadcrumbs.scss
                ├── _type.scss
                ├── _utilities.scss
                ├── _variables.scss
                ├── _wells.scss
                └── mixins
                    ├── _alerts.scss
                    ├── _background-variant.scss
                    ├── _text-emphasis.scss
                    ├── _text-overflow.scss
                    └── _vendor-prefixes.scss

我的问题是:我如何“覆盖”Bootstrap 以便使用我的$brandColor

4

1 回答 1

3

我不知道你的引导目录结构是什么,但你可以这样做:

$icon-font-path: "packages/fonts/bootstrap/";

@import 'packages/stylesheets/bootstrap/variables';

$brandColor : red;

@import "packages/stylesheets/bootstrap";

@import "packages/stylesheets/bootstrap/theme";

当然,您应该为此使用正确的路径。

以防万一 - 它不是 L5 和 Elixir 的完整解决方案,但我将这种方法用于 L4

编辑

试试这个(未测试):

@import "bootstrap/variables";

$brandColor: red;

@import "bootstrap";
于 2015-02-19T23:03:59.030 回答