I have a relatively vanilla Rails application with the bootstrap-sass gem providing Twitter Bootstrap awesomeness.
Problem is with my buttons. I'm getting blue text and underlined text on hover and not sure why or how to get rid of it. I'm wondering if it's because these are link tags and not submit tags?!? Regardless, how to make them appear as true buttons?
I've removed everything from my stylesheets except @import "bootstrap";
They should appear like this.
Any ideas? Here's the view code but it buttons appear the same way in other views...grouped and on their own.
%table.table.table-hover
%thead
%tr
%th Title
%th Filename
%th
%tbody
- @reports.each do |report|
%tr
%td= report.title
%td= report.filename
%td
.btn-group
%button.btn= link_to 'Show', report
%button.btn= link_to 'Edit', edit_report_path(report)
%button.btn= link_to 'Destroy', report, method: :delete, data: { confirm: 'Are you sure?' }