【发布时间】:2014-02-25 08:44:31
【问题描述】:
我在我的网站上丢失了我的 Glyphicons,它们正在被空盒子取代。我已经看到了 Bootstrap 3 和 Glyphicons 的很多问题,但是到目前为止我发现的修复都没有帮助我。我最近升级到 gem 'bootstrap-sass', '~> 3.1.0.0'。我认为我的语法是正确的。是否有可能需要更改的 Glyphicons 路径?
这是我放置 Glyphicons 的三个地方:
<input type="text" class="form-control" placeholder="Search" name="search" id="search">
<div class="input-group-btn">
<button class="btn btn-default" type="submit"><i class="glyphicon glyphicon-search"></i></button>
</div>
<%= link_to pin, method: :delete, data: { confirm: 'Are you sure?' } do %>
<span class="glyphicon glyphicon-trash"></span>
Delete
<% end %>
<%= link_to root_path do %>
<span class="glyphicon glyphicon-home"></span>
<% end %>
【问题讨论】:
标签: ruby-on-rails-4 twitter-bootstrap-3 glyphicons