diff options
| author | Chris Rebert <[email protected]> | 2013-12-15 20:38:06 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-12-15 20:56:23 -0800 |
| commit | 637b20f6d584913815a60f0429b8e76c3bd10375 (patch) | |
| tree | f3f549ddae9a851b354c7dc5600caa7f008dc95e | |
| parent | 75db35507322ad02ded7fe32a2e74dcf3f4c58cf (diff) | |
| download | bootstrap-637b20f6d584913815a60f0429b8e76c3bd10375.tar.xz bootstrap-637b20f6d584913815a60f0429b8e76c3bd10375.zip | |
minor refactoring of 4ee93c9f8529cfeef56d4178b91e1ddcb0bff09c
| -rw-r--r-- | less/panels.less | 20 |
1 files changed, 11 insertions, 9 deletions
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); + } } } } |
