我想知道为什么我不能使用 LESS 在 twitter bootstrap 中设置变量。我在 Rails 上使用 ruby,它有一个 bootstrap_and_overrides.css.less 文件。它有以下语句
// Your custom LESS stylesheets goes here
//
// Since bootstrap was imported above you have access to its mixins which
// you may use and inherit here
//
// If you'd like to override bootstrap's own variables, you can do so here as well
// See http://twitter.github.com/bootstrap/less.html for their names and documentation
//
// Example:
// @linkColor: #ff0000;
所以我的理解是我可以在这里设置我的变量。所以我设置
@black: #333;
然后尝试在我的 application.css 调用@black
文件中使用它,但它不起作用?即不渲染#333
。
我理解错了吗?我所有的变量和css样式都在引导程序和覆盖文件中吗?
任何建议表示赞赏