From be508e043c2a5f53b352066a1628693adfa7755e Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 15 Dec 2013 18:13:50 -0800 Subject: copyediting --- less/panels.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/panels.less') diff --git a/less/panels.less b/less/panels.less index 1b72cebd1..eefaf2e87 100644 --- a/less/panels.less +++ b/less/panels.less @@ -120,7 +120,7 @@ } } -// Within heading, strip any `h*` tag of it's default margins for spacing. +// Within heading, strip any `h*` tag of its default margins for spacing. .panel-title { margin-top: 0; margin-bottom: 0; -- cgit v1.2.3 From 637b20f6d584913815a60f0429b8e76c3bd10375 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 15 Dec 2013 20:38:06 -0800 Subject: minor refactoring of 4ee93c9f8529cfeef56d4178b91e1ddcb0bff09c --- less/panels.less | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'less/panels.less') diff --git a/less/panels.less b/less/panels.less index eefaf2e87..ef8786867 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); + } } } } -- cgit v1.2.3