From 0c8cb3f2dca3aa2dafec5762092fcf728dd2f962 Mon Sep 17 00:00:00 2001 From: Lee Penkman Date: Tue, 13 Jan 2015 14:18:52 +1300 Subject: [PATCH] Fix table-striped to work with bootstraps tooltips on rows --- less/tables.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/tables.less b/less/tables.less index 3c801aedbb..2242c03686 100644 --- a/less/tables.less +++ b/less/tables.less @@ -111,7 +111,7 @@ th { // Default zebra-stripe styles (alternating gray and transparent backgrounds) .table-striped { - > tbody > tr:nth-child(odd) { + > tbody > tr:nth-of-type(odd) { background-color: @table-bg-accent; } }