direct-fuel-injection / bbGrid

Grid system on Backbone.js and Bootstrap, sure jQuery :)
http://direct-fuel-injection.github.com/bbGrid
138 stars 59 forks source link

Changing Selected Row background and font color #37

Closed AlainBeauvais closed 10 years ago

AlainBeauvais commented 10 years ago

How do I change the background and font color of a selected row with CSS?

This here is for mouse over only: .bbGrid-grid tbody tr.bbGrid-row:hover td{ background-color:#e21a2c; color:#FFF; }

direct-fuel-injection commented 10 years ago

Try to write more special CSS for class warning:

.bbGrid-grid tbody tr.warning td {
    background-color:#e21a2c;
    color:#FFF;
}
AlainBeauvais commented 10 years ago

Thank you. This CSS class works perfectly.