2014-03-25 69 views
0

使用bootstrap-sass gem,但無法在我的視圖中顯示glyphicons。Rails 4:Bootstrap-sass和glyphicons

的Gemfile

gem 'bootstrap-sass', '2.3.2.0' 
gem 'sass-rails', '>= 4.0.0' 

CSS文件

@import "bootstrap"; 

查看

<i class="glyphicon glyphicon-indent-right"></i> 

回答

0

自舉2.3+需要<i class="icon-indent-right"></i>

檢查official guide

+0

爾加!我google搜索引導API,它不同於你鏈接的那個。 /手腕 – user2402831

3

嘗試使用

CSS文件

@import "bootstrap-sprockets"; //this allow the gliphicon to work 
@import "bootstrap"; 

這個工作與我的Gemfile

gem 'bootstrap-sass', '3.2.0.1' 
gem 'sass-rails', '~> 4.0.0'