From 71974e2f4d2d42ebb13e357245e60b4b961a3bfa Mon Sep 17 00:00:00 2001
From: Andrei Railean <andrei@siter.com.au>
Date: Wed, 25 Jun 2014 14:01:34 +1000
Subject: [PATCH] assign background to row of .table-striped

if background is not set on row, striping doesn't work properly in responsive tables where row and cells are set to  display: block.
---
 less/tables.less | 1 +
 1 file changed, 1 insertion(+)

diff --git a/less/tables.less b/less/tables.less
index 2e1ef337b7..e5347362e8 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -106,6 +106,7 @@ th {
 
 .table-striped {
   > tbody > tr:nth-child(odd) {
+    background-color: @table-bg-accent;
     > td,
     > th {
       background-color: @table-bg-accent;
-- 
GitLab