From: Lee Penkman Date: Tue, 13 Jan 2015 01:18:52 +0000 (+1300) Subject: Fix table-striped to work with bootstraps tooltips on rows X-Git-Tag: v3.3.2~5^2~3^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c8cb3f2dca3aa2dafec5762092fcf728dd2f962;p=thirdparty%2Fbootstrap.git Fix table-striped to work with bootstraps tooltips on rows --- 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; } }