Is there a simple way to remove the tr:hover style from twitter bootstrap such that I can still use their table styling without getting the row highlight on hover?
Override these rules:
.table tbody tr:hover td, .table tbody tr:hover th { background-color: #f5f5f5; }
Using this:
.table tbody tr:hover td, .table tbody tr:hover th { background-color: transparent; }