我想知道爲什麼我不能使用LESS在twitter bootstrap中設置變量。我在使用bootstrap_and_overrides.css.less文件的rails上使用ruby。它有以下聲明Twitter Bootstrap LESS css
// 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樣式都在bootstrap和override文件中嗎?
任何意見讚賞