From d84f726da4f55434de853202961310d153f35739 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 22 Dec 2014 17:02:29 -0800 Subject: IE11 & current Firefox are still affected. Refs #11623 --- less/tables.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'less/tables.less') diff --git a/less/tables.less b/less/tables.less index ba24498a3..3c801aedb 100644 --- a/less/tables.less +++ b/less/tables.less @@ -133,7 +133,7 @@ th { // Reset default table behavior table col[class*="col-"] { - position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623) + position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623) float: none; display: table-column; } @@ -141,7 +141,7 @@ table { td, th { &[class*="col-"] { - position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623) + position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623) float: none; display: table-cell; } -- cgit v1.2.3 From 0c8cb3f2dca3aa2dafec5762092fcf728dd2f962 Mon Sep 17 00:00:00 2001 From: Lee Penkman Date: Tue, 13 Jan 2015 14:18:52 +1300 Subject: Fix table-striped to work with bootstraps tooltips on rows --- less/tables.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/tables.less') diff --git a/less/tables.less b/less/tables.less index 3c801aedb..2242c0368 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; } } -- cgit v1.2.3