Skip to content

Instantly share code, notes, and snippets.

@rjurney
Created February 9, 2012 05:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rjurney/1777551 to your computer and use it in GitHub Desktop.
Save rjurney/1777551 to your computer and use it in GitHub Desktop.
Bootstrap won't change colors of buttons to the ones in the docs :(
<div class="nav nav-pills">
<% @data.each do |d| -%>
<a style="margin: 3px;" class="btn btn-primary btn-large" href="/sent_distributions/<%= d['to'] -%>"><%= d['to'] -%></a>
<% end -%>
</div>
Result: grey buttons, but they should be blue :(
@tomdz
Copy link

tomdz commented Feb 9, 2012

Use <ul>/<li> instead:

<ul class="nav nav-pills">
  <% @data.each do |d| -%>
    <li><a style="margin: 3px;" href="/sent_distributions/<%= d['to'] -%>"><%= d['to'] -%></a></li>
  <% end -%>
</ul>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment