From 637b20f6d584913815a60f0429b8e76c3bd10375 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 15 Dec 2013 20:38:06 -0800 Subject: [PATCH] minor refactoring of 4ee93c9f8529cfeef56d4178b91e1ddcb0bff09c --- less/panels.less | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/less/panels.less b/less/panels.less index eefaf2e871..ef87868672 100644 --- a/less/panels.less +++ b/less/panels.less @@ -95,15 +95,17 @@ border: 0; margin-bottom: 0; } - > .table-striped > tbody > tr:last-child, - > .table-responsive > .table-striped > tbody > tr:last-child { - td:first-child, - th:first-child { - border-bottom-left-radius: (@panel-border-radius - 1); - } - td:last-child, - th:last-child { - border-bottom-left-radius: (@panel-border-radius - 1); + > .table-striped, + > .table-responsive > .table-striped { + > tbody > tr:last-child { + td:first-child, + th:first-child { + border-bottom-left-radius: (@panel-border-radius - 1); + } + td:last-child, + th:last-child { + border-bottom-left-radius: (@panel-border-radius - 1); + } } } }