From 463343af63344dbbc3db04f40b0b804baa919b7e Mon Sep 17 00:00:00 2001
From: Chris Rebert <code@rebertia.com>
Date: Wed, 6 Nov 2013 18:38:27 -0800
Subject: [PATCH] more nesting in table.less

---
 less/tables.less | 20 ++++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)

diff --git a/less/tables.less b/less/tables.less
index 55d5aa0e18..4c4284cb1d 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -152,14 +152,18 @@ table {
 // Exact selectors below required to override `.table-striped` and prevent
 // inheritance to nested tables.
 
-.table > thead > tr,
-.table > tbody > tr,
-.table > tfoot > tr {
-  > td.active,
-  > th.active,
-  &.active > td,
-  &.active > th  {
-    background-color: @table-bg-active;
+.table {
+  > thead,
+  > tbody,
+  > tfoot {
+    > tr {
+      > td.active,
+      > th.active,
+      &.active > td,
+      &.active > th  {
+        background-color: @table-bg-active;
+      }
+    }
   }
 }
 
-- 
GitLab