Re: T5 / Grid / Striping + Marking rows with red background ....

2011-01-20 Thread Thiago H. de Paula Figueiredo
On Thu, 20 Jan 2011 11:53:41 -0200, Gunnar Eketrapp gunnar.eketr...@gmail.com wrote: Hi! Hi! I have used rowClass to mark bad rows in one of my grids applied the following css .invalid { background-color: #FBE3E4; } It works but only for the rows with white background How

Re: T5 / Grid / Striping + Marking rows with red background ....

2011-01-20 Thread Gunnar Eketrapp
Aha ! Thanks for the info ... Then it must be the Blueprint CSS framework that does this ... but striped they are ... I added a beautiful picture and I hope that is not against the list rules .-) /Gunnar 2011/1/20 Thiago H. de Paula Figueiredo thiag...@gmail.com On Thu, 20 Jan 2011 11:53:41

Re: T5 / Grid / Striping + Marking rows with red background ....

2011-01-20 Thread Gunnar Eketrapp
I found a solution ... 1down voteaccepted You need a more specific selector to override... BP is pretty general though so that shouldnt be an issue for example: table.no-zebra tbody tr:nth-child(even) td, table.no-zebra tbody tr.even td { background: transparent; } you can replace