Rails,如何通过bower添加bootstrap-theme

时间:2016-12-16 07:04:01

标签: ruby-on-rails twitter-bootstrap

我想为我的rails项目使用bootstrap-theme,例如来自bootswatch的主题:http://bootswatch.com/superhero/

目前,引导程序通过Bower集成在我的项目中:

Bowerfile:

asset 'bootstrap-sass-official'

Application.css

 *= require 'bootstrap-sass-official'

Documentation on Bootswatch表示使用引导主题是下载主题并将其替换为现有的bootstrap文件。由于我使用bower来获取引导程序,因此无法替换文件。

使用Bootstrap-Theme需要做什么?

编辑:

我将superhero.css添加到样式表并将其添加到application.css:

 *= require_tree .
 *= require_self
 *= require 'bootstrap-sass-official'
 *= require 'superhero'

1 个答案:

答案 0 :(得分:1)

如果您的主题是自定义引导程序,那么您可以使用bower。您需要从主题下载引导程序文件并输入app/assests/stylesheets 然后在application.css

中调用它
*= require 'bootstrap'